madvinegar
Mon Aug 06, 2012 8:21:38 am
I would do the following.
First boot to your desktop using the 3.2.0-27 kernel (choose that from the grub menu).
As soon as you boot up open terminal and write the following:
This will confirm that you are indeed using kernel 3.2.0-27. Of course, you will not delete this kernel.
Then in terminal write the following:
This will show you all the installed kernels of your system.
Find the one(s) that you want to remove and then in terminal write:
(This should probably be linux-image-3.2.0-29-generic)
Then do
to update your grub entries.
I think there will not be any problem, but you could back-up before doing so, to be on teh safe side.
First boot to your desktop using the 3.2.0-27 kernel (choose that from the grub menu).
As soon as you boot up open terminal and write the following:
- Code:
uname -r
This will confirm that you are indeed using kernel 3.2.0-27. Of course, you will not delete this kernel.
Then in terminal write the following:
- Code:
dpkg --list | grep linux-image
This will show you all the installed kernels of your system.
Find the one(s) that you want to remove and then in terminal write:
- Code:
sudo apt-get purge linux-image-x.x.x.x-generic
(This should probably be linux-image-3.2.0-29-generic)
Then do
- Code:
sudo update-grub2
to update your grub entries.
I think there will not be any problem, but you could back-up before doing so, to be on teh safe side.