Upgrade the partition size

This commit is contained in:
Donovan Glover 2018-02-07 23:57:02 -05:00
parent c30d2cf240
commit 36a8d263ac
No known key found for this signature in database
GPG Key ID: 8FC5F7D90A5D8F4D

View File

@ -24,11 +24,11 @@ timedatectl set-ntp true
# Make a DOS partition table
parted /dev/sda mklabel msdos
# Create the primary partition
parted /dev/sda mkpart primary ext4 1MiB 14GiB
parted /dev/sda mkpart primary ext4 1MiB 44GiB
# Enable boot for the primary partition
parted /dev/sda set 1 boot on
# Create the swap partition
parted /dev/sda mkpart primary linux-swap 14GiB 100%
parted /dev/sda mkpart primary linux-swap 44GiB 100%
############ Part 2: Make the filesystem