This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Enter Installed System From Install Cd ====== 1. Boot up with the Gentoo minimal cd. 2. Mount your gentoo partitions... <code>mount /dev/sda3 /mnt/gentoo</code> Legacy BIOS: <code>mount /dev/sda1 /mnt/gentoo/boot</code> #### <code>mount -t proc none /mnt/gentoo/proc</code> <code>mount -o bind /dev /mnt/gentoo/dev</code> <code>mount --rbind /sys /mnt/gentoo/sys</code> <code>mount --rbind /dev /mnt/gentoo/dev</code> 3. chroot into the install gentoo environment... <code>cd /mnt/gentoo</code> <code>chroot /mnt/gentoo /bin/bash</code> <code>env-update</code> <code>source /etc/profile</code> UEFI Systems: <code> mount /dev/sda1 /efi </code> ====== Temporally Disable IPv6 ====== <code> echo 1 > /proc/sys/net/ipv6/conf/all/disable_ipv6 </code>