mirror of
https://github.com/PhyllomeOS/phyllomeos.git
synced 2024-11-05 04:01:10 +00:00
28 lines
1.5 KiB
INI
28 lines
1.5 KiB
INI
# __ ____ ____ _____
|
|
# ____ / /_ __ __/ / /___ ____ ___ ___ / __ \/ ___/
|
|
# / __ \/ __ \/ / / / / / __ \/ __ `__ \/ _ \ / / / /\__ \
|
|
# / /_/ / / / / /_/ / / / /_/ / / / / / / __/ / /_/ /___/ /
|
|
# / .___/_/ /_/\__, /_/_/\____/_/ /_/ /_/\___/ \____//____/
|
|
# /_/ /____/
|
|
|
|
# What ? This kickstart file bootstraps a desktop hypervisor.
|
|
# 'i' for iso-based, 'd' for desktop, 'h' for hypervisor, 'm' for minimal, 'd' for development only.
|
|
# It requires the Fedora 34 server iso
|
|
|
|
# USAGE : Press the `tab` or 'e' key during POST and apend that after the 'quiet' string :
|
|
# inst.ks=https://git.phyllo.me/home/kickstart/raw/branch/master/iso/idhmd.cfg
|
|
|
|
# ATTENTION : this kickstart file will automatically DESTROY the main disk and all of its contents.
|
|
# Bye bye!
|
|
|
|
%include https://git.phyllo.me/home/kickstart/raw/branch/master/leaves/bmd.cfg # Include bmd.cfg, a minimal system
|
|
%include https://git.phyllo.me/home/kickstart/raw/branch/master/iso/idmd.cfg # Include idmd.cfg, a desktop machine
|
|
|
|
reboot --kexec # Reboot straight into the system after a successfull installation
|
|
|
|
%post # Beginning of %post section
|
|
|
|
dnf install -y qemu-kvm libvirt libvirt-daemon-config-network libvirt-daemon-kvm # Install minimal tools dedicated to virtualization.
|
|
dnf install -y virt-install virt-top libguestfs-tools python3-libguestfs guestfs-tools # Complementary tools useful for interacting with virtual machines.
|
|
|
|
%end # End of the %post section |