Ubuntu: Difference between revisions

From The Incoherency.Net Wiki
Jump to navigation Jump to search
Denis (talk | contribs)
New page: == Fixing the Default Editor == Ubuntu defaults to using nano over Vi. To correct this sacrilegious behavior, use the following command: sudo update-alternatives –config editor
 
Denis (talk | contribs)
No edit summary
Line 4: Line 4:


  sudo update-alternatives –config editor
  sudo update-alternatives –config editor
== Building a Custom Kernel ==
See [http://www.howtoforge.com/kernel_compilation_ubuntu How To Compile A Kernel - The Ubuntu Way] on HowtoForge for complete details.
Summary:
apt-get update
apt-get install linux_source kernel-package libncurses5-dev fakeroot wget bzip2
make-kpkg clean
fakeroot make-kpkg --initrd --append-to-version=-custom kernel_image kernel_headers
=== Installing Modules to an Alternate Path ===
make modules_install INSTALL_MOD_PATH=/home/denis/tmproot/

Revision as of 22:40, 26 February 2008

Fixing the Default Editor

Ubuntu defaults to using nano over Vi. To correct this sacrilegious behavior, use the following command:

sudo update-alternatives –config editor

Building a Custom Kernel

See How To Compile A Kernel - The Ubuntu Way on HowtoForge for complete details.

Summary:

apt-get update
apt-get install linux_source kernel-package libncurses5-dev fakeroot wget bzip2
make-kpkg clean
fakeroot make-kpkg --initrd --append-to-version=-custom kernel_image kernel_headers

Installing Modules to an Alternate Path

make modules_install INSTALL_MOD_PATH=/home/denis/tmproot/