You first need to select your timezone so that your system knows where it is
located. Look for your timezone in
# ls /usr/share/zoneinfo(Suppose you want to use Europe/Brussels) # cp /usr/share/zoneinfo/Europe/Brussels /etc/localtime(Next set the timezone) # echo "Europe/Brussels" > /etc/timezone
The core around which all distributions are built is the Linux kernel. It is the
layer between the user programs and your system hardware. Gentoo provides its
users several possible kernel sources. A full listing with description is
available at the
For alpha-based systems we have
# emerge gentoo-sources
When you take a look in
# ls -l /usr/src/linux lrwxrwxrwx 1 root root 12 Oct 13 11:04 /usr/src/linux -> linux-
Now it is time to configure and compile your kernel source. You can use
If you want to manually configure your kernel, continue now with
Manually configuring a kernel is often seen as the most difficult procedure a Linux user ever has to perform. Nothing is less true -- after configuring a couple of kernels you don't even remember that it was difficult ;)
However, one thing
Now go to your kernel source directory and execute
# cd /usr/src/linux # make menuconfig
You will be greeted with several configuration sections. We'll first list some options you must activate (otherwise Gentoo will not function, or not function properly without additional tweaks).
First go to
File systems --->
Pseudo Filesystems --->
[*] /proc file system support
[*] Virtual memory file system support (former shm fs)
(Select one or more of the following options as needed by your system)
<*> Reiserfs support
<*> Ext3 journalling file system support
<*> JFS filesystem support
<*> Second extended fs support
<*> XFS filesystem support
If you are using PPPoE to connect to the Internet or you are using a dial-up modem, you will need the following options in the kernel:
Device Drivers --->
Network device support --->
<*> PPP (point-to-point protocol) support
<*> PPP support for async serial ports
<*> PPP support for sync tty ports
The two compression options won't harm but are not definitely needed, neither
does the
If you require it, don't forget to include support in the kernel for your ethernet card.
The following options are recommended as well:
General setup --->
<*> SRM environment through procfs
<*> Configure uac policy via sysctl
Plug and Play configuration --->
<*> Plug and Play support
<M> ISA Plug and Play support
SCSI support --->
SCSI low-level drivers --->
<*> SYM53C8XX Version 2 SCSI support (NEW)
<*> Qlogic ISP SCSI support
Network device support --->
Ethernet (10 or 100 Mbit) --->
<M> DECchip Tulip (dc21x4x) PCI support
<M> Generic DECchip & DIGITAL EtherWORKS PCI/EISA
<M> EtherExpressPro/100 support (eepro100)
<M> EtherExpressPro/100 support (e100)
Ethernet (1000 Mbit) --->
<M> Alteon AceNIC
[*] Omit support for old Tigon I
<M> Broadcom Tigon3
[*] FDDI driver support
<M> Digital DEFEA and DEFPA
<*> PPP support
<*> PPP Deflate compression
Character devices --->
[*] Support for console on serial port
[*] Direct Rendering Manager
File systems --->
<*> Kernel automounter version 4 support
Network File Systems --->
<*> NFS
[*] NFSv3 client
<*> NFS server
[*] NFSv3 server
Partition Types --->
[*] Advanced partition selection
[*] Alpha OSF partition support
Native Language Support
<*> NLS ISO 8859-1
Sound --->
<M> Sound card support
<M> OSS sound modules
[*] Verbose initialisation
[*] Persistent DMA buffers
<M> 100% Sound Blaster compatibles
When you've finished configuring the kernel, continue with
Now that your kernel is configured, it is time to compile and install it. Exit the configuration and start the compilation process:
# make && make modules_install # make boot
When the kernel has finished compiling, copy the kernel image to
# cp arch/alpha/boot/vmlinux.gz /boot/
Now continue with
If you are reading this section, you have chosen to use our
Now that your kernel source tree is installed, it's now time to compile your
kernel by using our
Now, let's see how to use genkernel. First, emerge the genkernel ebuild:
# emerge genkernel
Now, compile your kernel sources by running
Note that, if your boot partition doesn't use ext2 or ext3 as filesystem you
need to manually configure your kernel using
# genkernel all
Once
# ls /boot/kernel* /boot/initramfs-*