From 08e7a54e4783c2aef2c1eec1980aca95044d6162 Mon Sep 17 00:00:00 2001 From: nils Date: Sun, 12 Jan 2025 18:33:21 +0100 Subject: [PATCH] final final --- docs/gentoo-desktop-setup/installation.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/gentoo-desktop-setup/installation.md b/docs/gentoo-desktop-setup/installation.md index 5b1393e..b79351a 100644 --- a/docs/gentoo-desktop-setup/installation.md +++ b/docs/gentoo-desktop-setup/installation.md @@ -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 `` 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-.tar.xz ```