Instructions
DownloadDisk Setup
Use cfdisk /dev/sdX (or /dev/nvmeXnY) to format your disk into a small 512Mb-1Gb Partition.
You could add a swap partition if you wish. swapon /dev/sdXY # OR /dev/nvmeXnYpZ
A swap partition should be equal to or greater than the total amount of ram you have
Make the final partition take up the rest of the disk space, it should be the largest. Visit
Format each partition
mkfs.fat -F 32 /dev/sdXY # This is the smallest partition
mkfs.ext4 /dev/sdXY # This should be the largest partition
mkswap /dev/sdXY # This should be the swap partition
Mount your disk into /mnt/yakubos using the mount command:
mount /dev/sdXY /mnt/yakubos # OR /dev/nvmeXnYpZ
Mount the small fat32 partion into yakubos /boot
mount -m /dev/sdXY /mnt/yakubos/boot
Extracting the stage file
Extract the file into /mnt/yakubos
tar xpvf stage4-*.tar.xz --xattrs-include='*.*' --numeric-owner -C /mnt/yakubos
Get your network working in the filesystem
Copy your resolv.conf into yakubos:
cp --dereference /etc/resolv.conf /mnt/yakubos/etc/