28Feb/150
install gentoo from liveCD
suppose we booted up for a liveCD/USB
#mount the destination device, DEV
mount DEV /mnt/gentoo
cd /mnt/gentoo
wget http://mirror.mdfnet.se/gentoo/releases/amd64/autobuilds/current-stage3-amd64-nomultilib/stage3-amd64-20150226.tar.bz2
tar xjpf stage3*
cd /
mkdir -p /mnt/{dev,proc,sys}
mount -t proc proc /mnt/gentoo/proc
mount --rbind /dev /mnt/gentoo/dev
mount --rbind /sys /mnt/gentoo/sys
cp -L /etc/resolv.conf /mnt/gentoo/etc/
chroot /mnt/gentoo /bin/bash
source /etc/profile
emerge-webrsync
eselect profile list
passwd
#timezone
cp /usr/share/zoneinfo/Europe/Oslo /etc/localtime
echo "Europe/Oslo" > /etc/timezone
emerge --config timezone-data
# glibc will generate lang files according to:
nano locale.gen
locale-gen
eselect locale list
# check /etc/fstab
Leave a comment