yes, if you downgrade, you will have another choice with kernel 3.2, for test it.Gonzalo_VC wrote:1) The rest of the system will be OK if I downgrade, right? It would be just the kernel.
3) How can I modify grub 2 configuration? Because I can just make 3.2.0-4 my default
first, preserve this two choices, test 3.2.
later, you will delete or hide the kernel you want
downgrade:
Code: Select all
su
# add wheezy repository
echo 'deb http://http.debian.net/debian wheezy main' > /etc/apt/sources.list.d/99-wheezy.list
apt-get update
#search kernel
apt search linux-image-3.2
#for 64bits:
apt-get install linux-image-3.2.0-4-amd64 linux-headers-3.2.0-4-amd64
#for 32bits PAE
apt-get install linux-image-3.2.0-4-686-pae linux-headers-3.2.0-4-686-pae
#for 32bits
apt-get install linux-image-3.2.0-4-486 linux-headers-3.2.0-4-486
#if you have a nvidia graphic card:
sudo apt-get install --reinstall nvidia-kernel-dkms
#remove wheezy repository
rm /etc/apt/sources.list.d/99-wheezy.list
apt-get update ; apt-get autoclean
#update gru
update-grub
reboot