how-to-remove-old-linux-kernels-ubuntu

JSON

rev 2  |  foxhop  |  1352585896000  |  JSON

rev 1
rev 2
1616
17Good luck and be careful17Good luck and be careful
tt18 
19list all software installed
20=======================================
21 
22::
23 
24 dpkg --list | less
rev 1  |  foxhop  |  1321294679000  |  JSON

empty
rev 1
tt1how to remove old linux kernels ubuntu
2========================================
3 
4Warning if you remove your running kernel you will be in trouble.
5 
6.. code-block:: bash
7 
8 cd /boot
9 
10 # determine running kernel
11 uname -r
12 
13 # delete old kernels but leave the most recent three as a backup
14 # example: sudo apt-get remove --purge linux-image-x.x.xx-xx-server
15 sudo apt-get remove --purge linux-image-2.6.32-3[012]-server
16 
17Good luck and be careful