16 lines
776 B
INI
16 lines
776 B
INI
# __ ____ ____ _____
|
|
# ____ / /_ __ __/ / /___ ____ ___ ___ / __ \/ ___/
|
|
# / __ \/ __ \/ / / / / / __ \/ __ `__ \/ _ \ / / / /\__ \
|
|
# / /_/ / / / / /_/ / / / /_/ / / / / / / __/ / /_/ /___/ /
|
|
# / .___/_/ /_/\__, /_/_/\____/_/ /_/ /_/\___/ \____//____/
|
|
# /_/ /____/
|
|
|
|
# What ? This kickstart file provides a basic partition layout for live systems, without encryption.
|
|
|
|
zerombr # WARNING : Dangerous command ! Will clear the Master Boot Record
|
|
clearpart --all --initlabel # Partition clearing information. This setup uses GPT by default.
|
|
bootloader --timeout=1 # Set the GNU GRUB bootloader timeout to 1
|
|
|
|
part / --fstype="ext4" --size=5120 # Create a root partition of around 7GB
|
|
part / --size=8576
|