add automatic partition script

This commit is contained in:
Malin Freeborn 2020-01-08 12:55:12 +01:00
parent 41b315dab7
commit 3158edc870
1 changed files with 9 additions and 0 deletions

9
distros/partition.sh Normal file
View File

@ -0,0 +1,9 @@
#!/bin/bash
# run as root
[ -z $1 ] && echo set a disk && exit 1
parted /dev/sd$1 --script -- mklabel msdos
parted /dev/sd$1 --script -- mkpart primary 0 300M
parted /dev/sd$1 --script -- mkpart primary 300M 100%
mkfs.vfat /dev/sd"$1"1
mkfs.ext4 /dev/sd"$1"2