mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-16 13:23:09 +01:00
8056132e7b
Although I removed install scripts in a previous commit, with the current structure of this repository, it makes sense to include them once again.
34 lines
797 B
Bash
34 lines
797 B
Bash
#!/bin/sh
|
|
#
|
|
# This script assumes you already have an active internet connection
|
|
# (preferably through Ethernet).
|
|
#
|
|
# https://wiki.archlinux.org/index.php/Installation_guide
|
|
|
|
set -xe
|
|
|
|
# Sync the time with one online before doing anything
|
|
timedatectl set-ntp true
|
|
|
|
# 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.
|
|
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%
|
|
|
|
# Format sda1 with ext4 and sda2 with swap
|
|
mkfs -t ext4 /dev/sda1
|
|
|
|
mkswap /dev/sda2
|
|
|
|
# Enable the swap partition
|
|
swapon /dev/sda2
|
|
|
|
# Mount the newly created file system (/dev/sda1) to /mnt.
|
|
mount /dev/sda1 /mnt
|