Skip to main content

Posts

Showing posts from July, 2007

Kompile Kernel 2.6

Kompilasi Kernel 2.6         Friday, December 26 2003 @ 10:05 PM UTC Contributed by: Kocil LinuxAnda pasti sudah dengar berita hebatnya kernel 2.6. Saya juga,  makanya minggu lalu berjuang mau pasang. Wah, ternyata ada undocumented  requirement. Baca dulu artikel ini biar nggak keblasuk. DOWNLOAD Ada dua :    1. module-init-tools-3.0-pre2.tar.bz2 Masih pre, tapi harus dipakai. Kalau tidak, nanti error saat booting.    2. linux-2.6.0.tar.bz2 KOMPILE MODULE-INIT-UTIL Ini dia yang bikin saya keprosok 3 hari ngak bisa kompile kernel 2.6.Ternyata kita harus pasang dulu module-init-util baru. ## ekstrak source root@borneo :# cd /home/src root@borneo:# tar -xjf /home/ftp/source/module-init-tools-3.0-pre2.tar.bz2 root@borneo:# cd module-init-tools-3.0-pre2/ root@borneo:# less README ## Ikuti saja petunjuk di README root@borneo :# ./configure --prefix=/ root@borneo:# make moveold root@borneo:# make root@borneo:# make install root@borneo:# ....

Lilo configuration

GrUB Configuration GrUB is beginning to supplant LiLO as the bootloader of choice in more recent Linux distributions. It is generally more flexible and a lot more forgiving of system errors. For example, LiLO generally requires that an alternate boot disk is used if the kernel configuration renders the system unbootable Grub allows "on-the-fly" modification of kernel location, boot parameters, kernel to boot, etc.. Once you have copied the bzImage and System.map to /boot, edit the grub configuration file located in /boot/grub/menu.lst. On some distributions /etc/grub.conf is a symbolic link to this file. # Note that you do not have to rerun grub after making changes to this file #boot=/dev/hda default=0 timeout=10 title Red Hat Linux (2.4.20-24.9) root (hd0,1) kernel /boot/vmlinuz-2.4.20-24.9 ro root=LABEL=/ initrd /boot/initrd-2.4.20-24.9.img title Red Hat Linux (2.4.20-20.9) root (hd0,1) kernel /boot/vmlinuz-2.4.20-20.9 ro root=LABEL=/ initrd /...