final final

This commit is contained in:
nils 2025-01-12 18:33:21 +01:00
parent 1373453fac
commit 08e7a54e47

View file

@ -3,24 +3,24 @@ Now is the time to actually install Gentoo.
First import the pool again:
``` shell-session
root@host:/# zpool import -N -R /mnt rpool
root@host:/# zfs load-key -L file:///tmp/rpool.key rpool
root@host:~# zpool import -N -R /mnt rpool
root@host:~# zfs load-key -L file:///tmp/rpool.key rpool
```
Then mount the datasets and the ESP on `/mnt`:
``` shell-session
root@host:/# mount -t zfs rpool/root/gentoo /mnt
root@host:/# mkdir /mnt/var
root@host:/# mount -t zfs rpool/root/gentoo/var /mnt/var
root@host:/# mkdir /mnt/efi
root@host:/# mount -t vfat /dev/disk/by-label/esp /mnt/efi
root@host:~# mount -t zfs rpool/root/gentoo /mnt
root@host:~# mkdir /mnt/var
root@host:~# mount -t zfs rpool/root/gentoo/var /mnt/var
root@host:~# mkdir /mnt/efi
root@host:~# mount -t vfat /dev/disk/by-label/esp /mnt/efi
```
Now we're going to fetch a stage3 tarball for on the root of the system. Replace the `<release_date>` with the latest tarball release.
``` shell-session
root@host:/# cd /mnt
root@host:~# cd /mnt
root@host:/mnt# wget https://distfiles.gentoo.org/releases/amd64/autobuilds/current-stage3-amd64-musl-hardened/stage3-amd64-musl-hardened-<release_date>.tar.xz
```