Some final settings need to be done before rebooting.
Settings in /etc/conf.d:
/etc/conf.d/hwclock:
clock="local"
Check the file /etc/conf.d/keymaps and set it to your keyboard layout.
keymap="de-latin1-nodeadkeys"
Fstab:
/etc/fstab:
# /etc/fstab: static file system information.
#
# noatime turns off atimes for increased performance (atimes normally aren't
# needed); notail increases performance of ReiserFS (at the expense of storage
# efficiency). It's safe to drop the noatime options if you want and to
# switch between notail / tail freely.
#
# The root filesystem should have a pass number of either 0 or 1.
# All other filesystems should have a pass number of 0 or greater than 1.
#
# See the manpage fstab(5) for more information.
#
# fs mountpoint type opts dump/pass
# NOTE: If your BOOT partition is ReiserFS, add the notail option to opts.
/dev/sda5 /boot ext2 noauto,noatime 1 2
/dev/sda7 / btrfs subvol=root,defaults 0 1
/dev/sda7 /usr/portage btrfs subvol=portage,compress 0 0
/dev/sda7 /var btrfs subvol=var,compress 0 0
/dev/sda7 /home btrfs subvol=home 0 0
/dev/sda6 none swap sw 0 0
Locale:
Edit the file /etc/locale.gen and add all locale you need.
en_US ISO-8859-1
en_US.UTF-8 UTF-8
de_DE ISO-8859-1
de_DE@euro ISO-8859-15
de_DE.UTF-8 UTF-8
Run locale-gen:
locale-gen
If you want to change your system language (The language in which your gentoo talks to you, system messages and such things), have a look into /etc/env.d.
You have to create a file 02locale with a content similar like this:
LANG="de_DE.UTF-8"
LC_COLLATE="C"
Root Password:
Set your root password. You aren't able to login without setting it.
passwd
Reboot:
exit
umount -l /mnt/gentoo/dev{/shm,/pts,}
umount -l /mnt/gentoo/usr/portage
umount -l /mnt/gentoo{/proc,/boot,/var}
reboot
Good Luck! ^^