packages:remove_kernels
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
packages:remove_kernels [2016/07/01 15:11] – created 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. | ||
- | |||
- | < | ||
- | 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.1467385861.txt.gz · Last modified: 2020/07/15 09:30 (external edit)