kernel compileCompile kernel : 
  Pindah ke direktori /usr/src/sys/i386/conf
  # cd /usr/src/sys/i386/conf
  Copy file konfigurasi kernel GENERIC
  # cp GENERIC MYKERNEL
  Edit file konfigurasi kernel yang baru (MYKERNEL); LINT bisa digunakan sebagai 
  panduan
  # vi MYKERNEL
  Compile dan install MYKERNEL
  # cd /usr/src/sys/i386/conf
  # /usr/sbin/config MYKERNEL
  # cd ../../compile/MYKERNEL
  # make clean
  # make depend
  # make
  # make install
  Reboot ke multiuser mode
  # reboot 


Cara lain yang lebih praktis untuk compile kernel: 
  Masuk direktori /usr/src
  # cd /usr/src
  Lakukan make
  # make buildkernel KERNCONF=MYKERNEL
  # make installkernel KERNCONF=MYKERNEL
  Reboot ke multiuser mode
  # reboot

    Source: geocities.com/hackermuda/exploits

               ( geocities.com/hackermuda)