User Tools

Site Tools


packages:remove_kernels

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
packages:remove_kernels [2016/07/01 15:11] – created peterpackages:remove_kernels [2019/12/01 12:03] (current) – removed peter
Line 1: Line 1:
-====== Packages - Removed Unused Kernels ====== 
- 
-Ubuntu does not remove kernels when they install a new one, however the /boot partition is usually relatively small.  So after only a few kernel upgrades, you can get **No Space Left On Device** errors when trying to upgrade. Then you can either remove them manually, or use this one liner to automatically remove them all. 
- 
-<code> 
-export KERNEL="$(uname -r | grep -Po '([0-9\.\-]*[0-9])?')"; dpkg --get-selections | grep -E "linux-(header|image).*" | grep -iw install | sort | grep -v "$KERNEL" | grep -v "lts" | sed 's/install//g' | xargs dpkg -P 
-</code> 
- 
-Here's the command by command explanation: 
- 
-<code> 
-export KERNEL="$(uname -r | grep -Po '([0-9\.\-]*[0-9])?')" 
-</code> 
- 
-The first portion sets the current kernel number in a variable KERNEL.  It only takes the number, and greps out any additions like -generic or -server. 
- 
-<code> 
-dpkg --get-selections  
-</code> 
- 
-The second portion first prints out all available packages. 
- 
- 
-<code> 
-grep -E "linux-(header|image).*" 
-</code> 
- 
-The third portion greps for all packages with either linux-header or linux-image in the name. 
- 
- 
-<code> 
-grep -iw install 
-</code> 
- 
-The fourth portion greps out only installed packages. 
- 
- 
-<code> 
-sort 
-</code> 
- 
-The fifth portion sorts the output. 
- 
- 
-<code> 
-grep -v "$KERNEL" | grep -v "lts" 
-</code> 
- 
-The sixth portion filters out the current kernel and the LTS kernel package.  Removing those will cause problems. 
- 
-<code> 
-sed 's/install//g' 
-</code> 
- 
-The seventh part strips off the install part. 
- 
-<code> 
-xargs dpkg -P 
-</code> 
- 
-The last part actually removes the packages.  **xargs** send all the package names to **dpkg**.  Then **dpkg -P** purges the packages.  That means, removing them and removing their configs. 
  
packages/remove_kernels.1467385861.txt.gz · Last modified: 2020/07/15 09:30 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki