This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# lsblk: show devices | |
parted /dev/sda | |
mklabel msdos | |
mkpart primary ext4 1MiB 100MiB | |
set 1 boot on | |
mkpart primary ext4 100 15GiB | |
mkpart primary linux-swap15 16 | |
mkpart primary ext4 16 100% | |
mkfs.ext4 /dev/sda1 | |
mkfs.ext4 /dev/sda2 |