Chrooting
Optional: Selecting Mirrors
If you have booted from a Gentoo LiveCD, you are able to use mirrorselect
to update /etc/make.conf so fast mirrors are used for both Portage
and source code (of course in case you have a working network connection):
# mirrorselect -a -s4 -o >> /mnt/gentoo/etc/make.conf
If for some reason mirrorselect fails, don't panic. This step is
completely optional. If mirrorselect fails, the default values suffice.
Copy DNS Info
One thing still remains to be done before we enter the new environment and that
is copying over the DNS information in /etc/resolv.conf. You need
to do this to ensure that networking still works even after entering the new
environment. /etc/resolv.conf contains the nameservers for your
network.
# cp /etc/resolv.conf /mnt/gentoo/etc/resolv.conf
Entering the new Environment
Now that all partitions are initialized and the base environment
installed, it is time to enter our new installation environment by
chrooting into it. This means that we change from the current
installation environment (LiveCD or other installation medium) to your
installation system (namely the initialized partitions).
This chrooting is done in three steps. First we will change the root
from / (on the installation medium) to /mnt/gentoo
(on your partitions) using chroot. Then we will create a new environment
using env-update, which essentially creates environment variables.
Finally, we load those variables into memory using source.
# chroot /mnt/gentoo /bin/bash
# env-update
Regenerating /etc/ld.so.cache...
# source /etc/profile
Congratulations! You are now inside your own Gentoo Linux environment.
Of course it is far from finished, which is why the installation still
has some sections left :-)
Optional: Updating Portage
If you haven't installed a Portage snapshot in the previous chapter, you must
download a recent Portage tree from the Internet. emerge sync does this
for you. Other users should skip this and continue with Configuring the USE variable.
# emerge sync
(In case you are unable to use rsync, use "emerge-webrsync" which
downloads and installs a portage snapshot for you)
# emerge-webrsync
If you are warned that a new Portage version is available and that you should
update Portage, you can safely ignore it. Portage will be updated for you later
on during the installation.
Configuring the USE variable
USE is one of the most powerful variables Gentoo provides to its users.
Several programs can be compiled with or without optional support for certain
items. For instance, some programs can be compiled with gtk-support, or with
qt-support. Others can be compiled with or without SSL support. Some programs
can even be compiled with framebuffer support (svgalib) instead of X11 support
(X-server).
Most distributions compile their packages with support for as much as possible,
increasing the size of the programs and startup time, not to mention an enormous
amount of dependencies. With Gentoo you can define what options a package
should be compiled with. This is where USE comes into play.
In the USE variable you define keywords which are mapped onto
compile-options. For instance, ssl will compile ssl-support in the
programs that support it. -X will remove X-server support (note the minus
sign in front). gnome gtk -kde -qt will compile your programs with gnome
(and gtk) support, and not with kde (and qt) support, making your system fully
tweaked for GNOME.
The default USE settings are placed in
/etc/make.profile/make.defaults. What you place in
/etc/make.conf is calculated against these defaults settings. If
you add something to the USE setting, it is added to the default list. If
you remove something from the USE setting (by placing a minus sign in
front of it) it is removed from the default list (if it was in the default list
at all). Never alter anything inside the /etc/make.profile
directory; it gets overwritten when you update Portage!
A full description on USE can be found in the second part of the Gentoo
Handbook, Chapter 1: USE flags. A full
description on the available USE flags can be found on your system in
/usr/portage/profiles/use.desc.
# less /usr/portage/profiles/use.desc
As an example we show a USE setting for a KDE-based system with DVD, ALSA
and CD Recording support:
# nano -w /etc/make.conf
USE="-gtk -gnome qt kde dvd alsa cdr"
Optional: Using Distributed Compiling
If you are interested in using a collection of systems to help in compiling your
system you might want to take a look at our DistCC Guide. By using distcc you can use
the processing power of several systems to aid you with the installation.
Progressing from Stage1 to Stage2
Introduction to Bootstrapping
So, you want to compile everything from scratch? Okay then :-)
In this step, we will bootstrap your Gentoo system. This takes a
long time, but the result is a system that has been optimized from the
ground up for your specific machine and needs.
Bootstrapping means building the GNU C Library, GNU Compiler
Collection and several other key system programs. The GNU Compiler
Collection even has to be built twice: first with the "generic" compiler
we provide, and a second time with the compiler you then just built.
Before starting the bootstrap, we list a couple of options you might or
might not want. If you do not want to read those, continue with Bootstrapping the System.
Optional: Decreasing Compilation Time
If you want to speed up the bootstrapping, you can temporarily deselect
java-support. This means that the GNU Compiler Collection and the GNU C
Library will be compiled without java-support (which decreases
compilation time considerably). Although this means that you wont have
the GNU Java Compiler (gcj) this does not mean that your
system won't be able to use java applets and other java-related stuff.
To deselect java-support temporarily, define USE="-java" before
firing up the bootstrap script.
# export USE="-java"
Don't forget to unset the variable after bootstrapping:
# unset USE
Optional: Downloading the Sources First
If you haven't copied over all source code before, then the bootstrap
script will download all necessary files. It goes without saying that
this only works if you have a working network connnection :-) If you want to
download the source code first and later bootstrap the system (for instance
because you don't want to have your internet connection open during the
compilation) use the -f option of the bootstrap script, which will
fetch (hence the letter f) all source code for you.
# cd /usr/portage
# scripts/bootstrap.sh -f
Bootstrapping the System
Okay then, take your keyboard and punch in the next commands to start
the bootstrap. Then go amuse yourself with something else (for instance harass
Gentoo developers on #gentoo), because this step takes quite some time to
finish.
# cd /usr/portage
# scripts/bootstrap.sh
If you have altered the CHOST setting in /etc/make.conf
previously, you need to reinitialize some variables in order for gcc to
work fast:
# source /etc/profile
Now continue with the next step, Progressing from Stage2
to Stage3.
Progressing from Stage2 to Stage3
Introduction
If you are reading this section, then you have a bootstrapped system
(either because you bootstrapped it previously, or you are using a
stage2). Then it is now time to build all system packages.
All system packages? No, not really. In this step, you will build
the system packages of which there are no alternatives to use.
Some system packages have several alternatives (such as system loggers)
and as Gentoo is all about choices, we don't want to force one upon you.
Optional: Viewing what will be done
If you want to know what packages will be installed, execute emerge
--pretend system. This will list all packages that will be built. As this
list is pretty big, you should also use a pager like less or
more to go up and down the list.
# emerge --pretend system | less
Optional: Downloading the Sources
If you want emerge to download the sources before you continue
(for instance because you don't want the internet connection to be left
open while you are building all packages) you can use the --fetchonly
option of emerge which will fetch all sources for you.
# emerge --fetchonly system
Building the System
To start building the system, execute emerge system. Then go do
something to keep your mind busy, because this step takes a long time to
complete.
# emerge system
When the building has completed, continue with Configuring the Kernel.
Optional: Preparing for GRP
Introduction
If you are booted from a x86 or ppc CD-1 LiveCD you can relax and continue with
Configuring the Kernel as the installation
of prebuilt packages happens at the very end of the installation.
If you are booted from a different architecture LiveCD and you want to use the
prebuilt packages provided by the LiveCD, continue with Copying over the GRP packages.
If you want to use the prebuilt packages provided by a Gentoo mirror, continue
with Configuring Portage for GRP Downloads.
Copying over the GRP packages
You should now copy over the packages onto your filesystem so that Portage is
able to use them. First of all, open a second terminal by pressing
Alt-F2. This is needed as we need to work from the LiveCD, not from the
chrooted environment you're currently working in.
You should be greeted by a root prompt (#). Copy over the packages using
the following commands:
# mkdir -p /mnt/gentoo/usr/portage/packages/All
# cp /mnt/cdrom/packages/All/* /mnt/gentoo/usr/portage/packages/All/
After this step has completed, return to the chrooted environment by pressing
Alt-F1.
Now pay close attention! Your Portage snapshot is in place and the GRP packages
are ready to be used. However, Portage doesn't automagically use them unless you
tell it to. Luckily, this is hardly difficult: every time you are asked to
install a package using emerge, you must add --usepkg as an
option:
(Example without GRP)
# emerge vanilla-sources
(Example with GRP)
# emerge --usepkg vanilla-sources
That's all there is to it. Just don't forget to add --usepkg. Now
continue with Configuring the Kernel.
Configuring Portage for GRP Downloads
First of all, you need to edit /etc/make.conf and define
the PORTAGE_BINHOST variable so that it points to the server from which
you want to download the GRP packages. Please check our mirror list for the available mirrors.
# nano -w /etc/make.conf
PORTAGE_BINHOST="ftp://some.mirror.com/pub/gentoo/grp/2004/athlon-xp"
Save and exit (by pressing Ctrl-X and confirming). With this in place, you must
now pay close attention. Portage will not automagically download the GRP
packages if you don't instruct it to. However, this isn't hard: every time you
are asked to install a package using emerge, you must add
--getbinpkg as an option:
(Example without downloading GRP)
# emerge vanilla-sources
(Example with downloading GRP)
# emerge --getbinpkg vanilla-sources
That's all there is to it. Just don't forget to add --getbinpkg. Now
continue with Configuring the Kernel.