packages:remove_kernels
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
packages:remove_kernels [2016/07/04 00:06] – peter | packages: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. | ||
- | |||
- | To determine which kernels can be removed run the following: | ||
- | |||
- | < | ||
- | dpkg --get-selections | grep ' | ||
- | </ | ||
- | |||
- | To delete all these old kernels run the following. | ||
- | |||
- | **NOTE**: | ||
- | |||
- | < | ||
- | dpkg --get-selections | grep ' | ||
- | </ | ||
- | |||
- | |||
- | |||
- | |||
- | ===== Another Method ===== | ||
- | |||
- | Either remove them manually, or use this one liner to automatically remove them all. | ||
- | |||
- | < | ||
- | export KERNEL=" | ||
- | </ | ||
- | |||
- | Here's the command by command explanation: | ||
- | |||
- | < | ||
- | export KERNEL=" | ||
- | </ | ||
- | |||
- | The first portion sets the current kernel number in a variable KERNEL. | ||
- | |||
- | < | ||
- | dpkg --get-selections | ||
- | </ | ||
- | |||
- | The second portion first prints out all available packages. | ||
- | |||
- | |||
- | < | ||
- | grep -E " | ||
- | </ | ||
- | |||
- | The third portion greps for all packages with either linux-header or linux-image in the name. | ||
- | |||
- | |||
- | < | ||
- | grep -iw install | ||
- | </ | ||
- | |||
- | The fourth portion greps out only installed packages. | ||
- | |||
- | |||
- | < | ||
- | sort | ||
- | </ | ||
- | |||
- | The fifth portion sorts the output. | ||
- | |||
- | |||
- | < | ||
- | grep -v " | ||
- | </ | ||
- | |||
- | The sixth portion filters out the current kernel and the LTS kernel package. | ||
- | |||
- | < | ||
- | sed ' | ||
- | </ | ||
- | |||
- | The seventh part strips off the install part. | ||
- | |||
- | < | ||
- | xargs dpkg -P | ||
- | </ | ||
- | |||
- | The last part actually removes the packages. | ||
packages/remove_kernels.1467590784.txt.gz · Last modified: 2020/07/15 09:30 (external edit)