fine tune disk setup

This commit is contained in:
Pratham Patel 2023-07-29 13:53:02 +05:30
parent 52aae98e05
commit 1be5a9f5d8
No known key found for this signature in database
1 changed files with 5 additions and 2 deletions

View File

@ -2,5 +2,8 @@
clearpart --drives=sda --all
# Create partitions
part /boot/efi --asprimary --ondisk=sda --size=1024 --label=boot --fstype=efi
part / --asprimary --ondisk=sda --size=4096 --label=root --fstype=ext4
# The '--size' option takes MB, not MiB
# 1074 MB = 1 GiB
# 2148 MB = 2 GiB
part /boot/efi --asprimary --ondisk=sda --size=1074 --label=boot --fstype=efi
part / --asprimary --ondisk=sda --size=2148 --label=root --fstype=ext4