Ubuntu 14.0.4 generated an error trying to update. Turns out my /boot
partition was full. I ran a command to remove the old kernels, something like this:
dpkg --get-selections|grep 'linux-image*'|awk '{print $1}'|egrep -v "linux-image-$(uname -r)|linux-image-generic" |while read n;do apt-get -y remove $n;done
but I neglected to reboot before doing this and test things, as a result, it cleared /boot
but generated a few errors. I then ran aptitude update/upgrade. Upon rebooting Ubuntu comes up but it's really slow, has no network connectivity, and does not recognize the USB wireless mouse. It looks like various system drivers are now not recognized.
How can I repair this installation? The system will boot but it's obvious the drivers are not there for the network or USB mouse and probably other things. Can I restore the kernel and undo this to some degree?
No comments:
Post a Comment