final final
This commit is contained in:
parent
1373453fac
commit
08e7a54e47
1 changed files with 8 additions and 8 deletions
|
@ -3,24 +3,24 @@ Now is the time to actually install Gentoo.
|
||||||
First import the pool again:
|
First import the pool again:
|
||||||
|
|
||||||
``` shell-session
|
``` shell-session
|
||||||
root@host:/# zpool import -N -R /mnt rpool
|
root@host:~# zpool import -N -R /mnt rpool
|
||||||
root@host:/# zfs load-key -L file:///tmp/rpool.key rpool
|
root@host:~# zfs load-key -L file:///tmp/rpool.key rpool
|
||||||
```
|
```
|
||||||
|
|
||||||
Then mount the datasets and the ESP on `/mnt`:
|
Then mount the datasets and the ESP on `/mnt`:
|
||||||
|
|
||||||
``` shell-session
|
``` shell-session
|
||||||
root@host:/# mount -t zfs rpool/root/gentoo /mnt
|
root@host:~# mount -t zfs rpool/root/gentoo /mnt
|
||||||
root@host:/# mkdir /mnt/var
|
root@host:~# mkdir /mnt/var
|
||||||
root@host:/# mount -t zfs rpool/root/gentoo/var /mnt/var
|
root@host:~# mount -t zfs rpool/root/gentoo/var /mnt/var
|
||||||
root@host:/# mkdir /mnt/efi
|
root@host:~# mkdir /mnt/efi
|
||||||
root@host:/# mount -t vfat /dev/disk/by-label/esp /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.
|
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
|
``` 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
|
root@host:/mnt# wget https://distfiles.gentoo.org/releases/amd64/autobuilds/current-stage3-amd64-musl-hardened/stage3-amd64-musl-hardened-<release_date>.tar.xz
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue