add automatic partition script
This commit is contained in:
parent
41b315dab7
commit
3158edc870
9
distros/partition.sh
Normal file
9
distros/partition.sh
Normal 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
|
Loading…
Reference in New Issue
Block a user