mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-02 05:05:43 +01:00
22 lines
586 B
Plaintext
22 lines
586 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# Make a DOS partition table with one primary ext4 partition and
|
||
|
# enable boot for it. Then, create a primary swap partition with
|
||
|
# the remaining disk space.
|
||
|
#
|
||
|
# For example, if your hard drive is 512GB then you'd allocate
|
||
|
# just under that for the ext4 partition and the remaining GB to
|
||
|
# swap, depending on how much you think you'll need.
|
||
|
#
|
||
|
# https://wiki.archlinux.org/index.php/Installation_guide
|
||
|
|
||
|
set -xe
|
||
|
|
||
|
parted /dev/sda mklabel msdos
|
||
|
|
||
|
parted /dev/sda mkpart primary ext4 1MiB 60GiB
|
||
|
|
||
|
parted /dev/sda set 1 boot on
|
||
|
|
||
|
parted /dev/sda mkpart primary linux-swap 60GiB 100%
|