Author Message

drcrazy

Administrators

Online status

65 posts
Location: MSQ
Occupation: drcrazy
Age: 44

#93   10/12/2011 22:17 GMT      
Ядро занимает около 150Мб. По нынешним меркам - мелочь. Но порядок наводить иногда таки надо.

Запоминаем, а лучше записываем, текущую версию ядра
Code:
user@host:~$ uname -r
3.0.0-14-generic

Смотрим, какие ядра установлены
Code:
user@host:~$ dpkg --list | grep linux-image
rc  linux-image-2.6.38-11-generic  2.6.38-11.50   Linux kernel image for version 2.6.38 on x86/x86_64
ii  linux-image-2.6.38-12-generic  2.6.38-12.51   Linux kernel image for version 2.6.38 on x86/x86_64
rc  linux-image-2.6.38-8-generic   2.6.38-8.42    Linux kernel image for version 2.6.38 on x86/x86_64
ii  linux-image-3.0.0-12-generic   3.0.0-12.20    Linux kernel image for version 3.0.0 on x86/x86_64
ii  linux-image-3.0.0-13-generic   3.0.0-13.22    Linux kernel image for version 3.0.0 on x86/x86_64
ii  linux-image-3.0.0-14-generic   3.0.0-14.23    Linux kernel image for version 3.0.0 on x86/x86_64
ii  linux-image-generic            3.0.0.14.16    Generic Linux kernel image


Удаляем ненужные (все, кроме текущего и linux-image-generic)
Code:
sudo apt-get purge linux-image-x.x.x.x-generic


Если по ходу удаления не отработали скрипты обновления загрузчика, то
Code:
sudo update-grub2
The pleasure of satisfying a savage instinct, undomesticated by the ego, is incomparably much more intense then the one of satisfying a tamed instinct. S.Freud.

drcrazy

Administrators

Online status

65 posts
Location: MSQ
Occupation: drcrazy
Age: 44

#97   25/06/2013 16:54 GMT      
Сразу одной командой и ядра, и заголовки:
Code:
dpkg -l 'linux-*' | sed '/^ii/!d;/'"$(uname -r | sed "s/\(.*\)-\([^0-9]\+\)/\1/")"'/d;s/^[^ ]* [^ ]* \([^ ]*\).*/\1/;/[0-9]/!d' | xargs sudo apt-get purge
The pleasure of satisfying a savage instinct, undomesticated by the ego, is incomparably much more intense then the one of satisfying a tamed instinct. S.Freud.