- Trailer for Highly Anticipated Horror Film THE WITCH
- Theory will make you rethink M. Night Shyamalan's SIGNS
- The Golden Age Begins with Syfy's CHILDHOOD'S END Adaptation [Trailer]
- Watch the Opening of FEAR THE WALKING DEAD!
- Damon Lindelof Slams GAME OF THRONES Haters
- Guilty Pleasures: Five Teen Themed Thrillers
- Guilty Pleasures: Five Teen Themed Thrillers
- Mamoru Oshii's GARM WARS: THE LAST DRUID is Coming!
- Luc Besson's Sci-Fi Epic VALERIAN Casts Clive Owen
- Mamoru Oshii's GARM WARS: THE LAST DRUID is Coming!
- More MAD MAX GIFS
- Re: Mad Max
- Re: Mad Max
- Re: Mad Max
- Re: Mad Max
- MAD MAX Gif
- Mad Max
- Re: Lesson of the Evil (2012)
- Re: Lost Web Site :(
- Re: Lost Web Site :(
- THE CITY OF LOST CHILDREN Finally Hits Blu-ray
- First Look at the Backstreet Boys in Zombie Flick DEAD 7
- Watch the Opening of FEAR THE WALKING DEAD!
- Damon Lindelof Slams GAME OF THRONES Haters
- That Post-Apocalyptic ZORRO Movie Might Still Happen!
- ORION is a Dreamlike Fantasy Take on the Apocalypse [Review]
- AIR Delivers Familiar But Compelling PA Drama [Review]
- Craig DiLouie Recommends: HBO's THE LEFTOVERS
- Watch: PA Short TRANSMISSION From Director Zak Hilditch
- Fantasia 2015: ANTISOCIAL 2 is a Mostly Unnecessary Sequel
- EXTINCTION is Just Another Mediocre Zombie Horror Movie [Review]
- DA SWEET BLOOD OF JESUS is Strange, Nonsensical & Weirdly Watchable [Review]
- ORION is a Dreamlike Fantasy Take on the Apocalypse [Review]
- AIR Delivers Familiar But Compelling PA Drama [Review]
- Craig DiLouie Recommends: HBO's THE LEFTOVERS
- TANGERINE is Delicious Indie Entertainment Without Cheese [Review]
- Arrow Video's CEMETERY WITHOUT CROSSES is only for Euro Western Completists
- Fantasia 2015: ANTISOCIAL 2 is a Mostly Unnecessary Sequel
- EXTINCTION is Just Another Mediocre Zombie Horror Movie [Review]
- Fantasia 2015: CUB is an Uneven Slasher [Review]
- Fantasia 2015: THE DEMOLISHER is a Thought-Provoking Gut-Wrencher
- The Golden Age Begins with Syfy's CHILDHOOD'S END Adaptation [Trailer]
- Why is the Time Loop in TIMELIKE Destroying the World?
- Trailer for THE QUAY BROTHERS Curated by Christopher Nolan
- New HATEFUL EIGHT Trailer Hits Familiar Tarantino Beats
- New STAR WARS: THE FORCE AWAKENS Photos
- Post-Apocalyptic CASSIUS AND CLAY Coming from Creator of Archer!
- AUTUMN HARVEST is Haunting and Beautiful
- Fresh Footage from STAR WARS: THE FORCE AWAKENS [Trailer]
- A Perfect Tease of HBO's WESTWORLD [Trailer]
- Craig DiLouie Recommends: HBO's THE LEFTOVERS
- TANGERINE is Delicious Indie Entertainment Without Cheese [Review]
- DARK TOWER Update: It's Happening, People!
- New Trailer and Poster for Highly Anticipated Horror GOODNIGHT MOMMY
- Arrow Video's CEMETERY WITHOUT CROSSES is only for Euro Western Completists
- Watch: PA Short TRANSMISSION From Director Zak Hilditch
- Fantasia 2015: Meet the Winners of Canada's Genre Fest
- Evil Witches to Bring Down Humanity in CHERRY TREE [Trailer]
- Cannibal Western BONE TOMAHAWK Nabbed by RLJ Entertainment
- PROMETHEUS 2 Could Shoot January 2016
- Nicolas Winding Refn Explores American Exploitation Cinema in New Book "The Act of Seeing"
Jack In
Latest Comments
Latest Forum Posts
PA News
Latest Reviews
Older News
Crew
Marina Antunes
Editor in Chief
Vancouver, British Columbia
Christopher Webster
Managing Editor
Edmonton, Alberta
quietearth
Asst. Managing Editor
Denver, Colorado
Simon Read
UK Correspondent
Edinburgh, Scotland
Rick McGrath
Toronto Correspondent
Toronto, Ontario
Manuel de Layet
France Correspondent
Paris, France
rochefort
Austin Correspondent
Austin, Texas
Daniel Olmos
Corrispondente in Italia
Italy
Griffith Maloney aka Griffith Maloney
New York Correspondent
New York, NY
Stephanie O
Floating Correspondent
Quiet Earth Bunker
Jason Widgington
Montreal Correspondent
Montreal, Quebec
quietearth [General News 09.15.06]
Here's a very dirty how to to build a custom kernel for ubuntu. This does not cover propietary drivers such as nvidia or ati. If you are using any propietary video drivers, you will need to modify your xorg.conf, otherwise X will not work when you boot into the new kernel. More detailed instructions are available at the link on the bottom of this post.
# apt-get install ncurses-dev kernel-package linux-source build-essential
# cd /usr/src
# bzip2 -dc linux-source-2.6.15.tar.bz2 |tar xf -
# cd /usr/src/linux-2.6.15Now lets get our running kernel version and copy over the appropriate config file.
# uname -r
# cp /boot/config-2.6.15-26-386 .configNow let's configure it, run the following and then set and save your options.
# make menuconfigNow lets use make-kpkg to compile the kernel and it will produce an installable .deb for us:
# make-kpkg clean
# make-kpkg --initrd --append-to-version=custom1 kernel_image kernel_headersOne problem I ran into while compiling the kernel source was errors in the prism54 wireless driver code. I had to completely remove support to get the kernel to compile.
Now after this is done compiling we can look in /usr/src and we have the following packages:
kernel-headers-2.6.15.7-ubuntu1custom1_10.00.Custom_i386.deb
kernel-image-2.6.15.7-ubuntu1custom1_10.00.Custom_i386.debAnd we can install with:
# dpkg -i kernel-image-2.6.15.7-ubuntu1custom1_10.00.Custom_i386.debAfter installation, your custom kernel will be at the bottom of the grub's list, so it will not be automatically booted. You will either need to move it to the top of the list in /boot/grub/menu.lst or manually stop autoboot in grub and specify booting your new custom kernel.
To remove the kernel, you will have to boot into another kernel otherwise you might destroy your system.
# dpkg -r kernel-image-2.6.15.7-ubuntu1custom1A more detailed article is available at http://doc.gwos.org/index.php/Kernel_Compilation_Dapper .
Tested under dapper.
Hilden (7 years ago) Reply
As far as i could see, all these options were build into the kernel on my Feisty.
J (7 years ago) Reply
Every distro has their own little best practices for compiling a kernel so thanks for this. Are you sure the kernel package in kernel-source will be patched the same way as the shipped kernel?
quietearth (7 years ago) Reply
If you run dpkg -p [packagename] where packagename is linux-source[...] you will see it's the kernel source with ubuntu patches applied, so yes.
Jim (7 years ago) Reply
Thanks for this page, works great for me. Simple, to the point. Traditional make, make_modules, make modules_install doesnt work anymore. :-( initrd is required now on 2.6 ? Eeeks!
http://www.unihacker.com
ghantoos (6 years ago) Reply
Great post! Straight forward & clear! I like it!
Thanks a lot!
ghantoos
cherry316316 (1 year ago) Reply
i by mistake initially installed kernel in ubuntu using make command and didnt created .deb file. now i want to remove that image of kernel and since i didnt created .deb file, i dont see the header in synaptic. what is the best way i can remove kernel which i installed using make command? thanks

