PDA

View Full Version : [ubuntu] I need to update Linux kernel to latest version using Ubuntu. How?



NS RAO
May 13th, 2009, 11:14 AM
I am trying to update the latest version of Ubuntu Linux to the latest Linux kernel so I can use ndiswrapper. I am unsure how to install the kernel, however. How can I do this so I can get ndiswrapper running under Ubuntu?

chemicalfan
May 13th, 2009, 04:42 PM
There should be instructions with the kernel you've downloaded, but it'll centre around (all under sudo):
./configure
make clean
make
make install

But check the documentation before you proceed!

tarps87
May 13th, 2009, 04:44 PM
This should do both


sudo apt-get update && sudo apt-get upgrade
sudo apt-get install ndiswrapper-common ndiswrapper-utils-1.9

doru001
December 18th, 2011, 06:42 PM
Should not be like this?


sudo apt-get update
sudo apt-get dist-upgrade

ubix
December 18th, 2011, 07:24 PM
Should not be like this?


sudo apt-get update
sudo apt-get dist-upgrade




sudo apt-get update && sudo apt-get dist-upgrade


Both of the above are correct. The last is using AND syntax which means execute both commands if the first one was successful.

oldos2er
December 18th, 2011, 07:25 PM
Closed, necromancy.