add new extended desktop version

This commit is contained in:
lukas
2021-06-30 23:31:23 +02:00
parent e1ba6ead62
commit 762b93f86c
4 changed files with 42 additions and 9 deletions

View File

@@ -81,9 +81,9 @@ zerombr
clearpart --all --initlabel --drives=nvme0n1
# Disk partitioning information.
# Will create an efi partitition of 128 MiB, a boot partition of 350 MiB on disk vda using the ext4 filesystem. The remaining space will be used for root.
# Will create an efi partitition of 128 MiB, a boot partition of 384 MiB on disk vda using the ext4 filesystem. The remaining space will be used for root.
part /boot/efi --fstype="efi" --ondisk=nvme0n1 --size=128 --fsoptions="umask=0077,shortname=winnt" --label=efi
part /boot --fstype="ext4" --ondisk=nvme0n1 --size=350 --label=boot
part /boot --fstype="ext4" --ondisk=nvme0n1 --size=384 --label=boot
part / --fstype="ext4" --ondisk=nvme0n1 --grow --label=system
## SOFTWARE ##