User Tools

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
gentoo_env [2022/10/07 05:02] – created normangentoo_env [2025/10/02 12:05] (current) – external edit 127.0.0.1
Line 5: Line 5:
 2. Mount your gentoo partitions... 2. Mount your gentoo partitions...
  
-<code> mount /dev/sda3 /mnt/gentoo</code>+<code>mount /dev/sda3 /mnt/gentoo</code> 
 +Legacy BIOS:
 <code>mount /dev/sda1 /mnt/gentoo/boot</code> <code>mount /dev/sda1 /mnt/gentoo/boot</code>
 +####
 <code>mount -t proc none /mnt/gentoo/proc</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... 3. chroot into the install gentoo environment...
Line 15: Line 24:
 <code>env-update</code> <code>env-update</code>
 <code>source /etc/profile</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>