Skip to main content

How to Install Older Kernel in Ubuntu

From http://thanhsiang.org/faqing/node/129
Here is the summary of the steps (replace with your desired kernel versions).
1. Download the working kernel files:

wget http://launchpadlibrarian.net/19976056/linux-image-2.6.27-9-generic_2.6.27-9.19_i386.deb
wget http://launchpadlibrarian.net/19976058/linux-headers-2.6.27-9-generic_2.6.27-9.19_i386.deb
wget http://launchpadlibrarian.net/19976059/linux-headers-2.6.27-9_2.6.27-9.19_all.deb

2. Next, install the three downloaded DEB files with dpkg:
sudo dpkg -i linux-*

3. Reboot your computer.
4. Put your current kernel on hold (otherwise it would be upgraded once again during your next "aptitude update && aptitude safe-upgrade" routine):
sudo aptitude hold linux-image-2.6.27-9-generic linux-headers-2.6.27-9-generic linux-headers-2.6.27-9
Note:
https://launchpad.net/ubuntu/intrepid/+package/linux-image-2.6.27-9-generic
https://launchpad.net/ubuntu/intrepid/i386/linux-headers-2.6.27-9-generic/2.6.27-9.19
https://launchpad.net/ubuntu/intrepid/i386/linux-headers-2.6.27-9/2.6.27-9.19

Comments

  1. thanks for kernel linux install guides in my ubuntu.

    ReplyDelete

Post a Comment

Popular posts from this blog

Black Cursors on Win7/2008 R2 Using rdesktop for Ubuntu 10.04

I recently setup a Win 2008 R2 VM and proceeded to remote connect to it from Ubuntu 10.04. Everything worked perfectly except the mouse cursors were black (and some were corrupt). Solution? Use a newer version of rdesktop that doesn't ship with Ubuntu. There is a handy PPA that can be added using the following command: sudo apt-add-repository ppa:ricolai/ppa sudo apt-get update sudo apt-get install rdesktop [UPDATE] It appears ricolai may have removed the package from his PPA. To remedy the situation, I've uploaded the working binaries for x64. Sorry, I don't have the x86 any longer. More information on the bug can be found here: https://bugs.launchpad.net/ubuntu/+source/rdesktop/+bug/385974?comments=all

Long Time, No Write

It's been a loooong time since I last wrote. The past several years have seen a huge shift in my career and technical objectives. I've gone from working almost exclusively on code to selling software as a technical sales engineer to now managing a team of technical gurus doing sales worldwide. As a result, my time for tinkering has slowed considerably. I do want to update everyone by saying that I am now back to Linux after many years stuck in a Windows world for work. My current employer is focused on open source technology and as such encourages us to use Linux and other open source tools in any way we can. I am now the proud owner of a Dell Laptop that has dual-boot setup for Windows and Ubuntu 18.04. I'll try to write up a post here in the next bit about my experiences so far, but my quick and dirty summary is that you should definitely give it a shot. There are a few hiccups to overcome, but, for the most part, it's been really nice transitioning back. Until ...

Getting the Hauppauge WinTV-HVR-2250 to work in Ubuntu 10.04

Really just posting this for my own reference later, but here's the link and the details: Enter this into your Terminal it is the code for the firmware and to install it Code: wget http://www.steventoth.net/linux/hvr22xx/22xxdrv_27086.zip wget http://www.steventoth.net/linux/hvr22xx/HVR-12x0-14x0-17x0_1_25_25271_WHQL.zip wget http://www.steventoth.net/linux/hvr22xx/extract.sh Code: sh extract.sh;sudo cp *fw /lib/firmware you need to install mercurial and build essential for the next steps Code: sudo apt-get install mercurial libncurses5-dev then we need the driver using this command to fetch Code: hg clone http://kernellabs.com/hg/saa7164-stable/ now change to the directory Code: cd saa7164-stable then run make Code: make CONFIG_DVB_FIREDTV:=n that will take some time, go grab a drink and wait it out, when it completes run this command Code: sudo make install wait for that to complete and reboot from the command line Code: sudo reboot Note that an application like TVtime will not ...