mirror of
https://gitlab.com/ahoneybun/nyxi-installer.git
synced 2025-05-12 11:04:02 -06:00
Fix order
This commit is contained in:
parent
8bd99cc405
commit
b795982d26
1 changed files with 10 additions and 2 deletions
12
install.sh
12
install.sh
|
@ -13,7 +13,7 @@ echo "Which drive do we want to use for this installation?"
|
|||
read driveName
|
||||
|
||||
(
|
||||
echo g # Create new GPT partition table
|
||||
echo g # Create new GPT partition table.
|
||||
echo n # Create new partition (for EFI).
|
||||
echo # Set default partition number.
|
||||
echo # Set default first sector.
|
||||
|
@ -21,9 +21,17 @@ echo +1G # Set +1G as last sector.
|
|||
echo n # Create new partition (for root).
|
||||
echo # Set default partition number.
|
||||
echo # Set default first sector.
|
||||
echo # Set default last sector (rest of the disk).
|
||||
echo -8G # Set -8G as the last sector.
|
||||
echo n # Create new partiton (for Swap).
|
||||
echo # Set default partiion number.
|
||||
echo # Set default first sector.
|
||||
echo # Set default last sector.
|
||||
echo t # Change partition type.
|
||||
echo 1 # Pick first partition.
|
||||
echo 1 # Change to EFI System.
|
||||
echo t # Change partition type.
|
||||
echo 3 # Pick last partition.
|
||||
echo 19 # change to Linux wwap.
|
||||
echo 1 # Change first partition to EFI system.
|
||||
echo w # write changes.
|
||||
) | sudo fdisk $driveName -w always -W always
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue