improve comments
This commit is contained in:
parent
a316354c8e
commit
d0ab764b21
@ -5,7 +5,7 @@
|
|||||||
# / .___/_/ /_/\__, /_/_/\____/_/ /_/ /_/\___/ \____//____/
|
# / .___/_/ /_/\__, /_/_/\____/_/ /_/ /_/\___/ \____//____/
|
||||||
# /_/ /____/
|
# /_/ /____/
|
||||||
|
|
||||||
# WHAT ? This Kickstart file bootstraps a minimal desktop-oriented virtual machine.
|
# WHAT ? This Kickstart file bootstraps a minimal GNOME-based desktop-oriented virtual machine.
|
||||||
# 'v' for virtual machine, 'e' for efi, 'm' for minimal, 'd' for desktop, 'd' for development only.
|
# 'v' for virtual machine, 'e' for efi, 'm' for minimal, 'd' for desktop, 'd' for development only.
|
||||||
|
|
||||||
# USAGE : Press the `tab` or 'e' key during POST and apend that after the 'quiet' string :
|
# USAGE : Press the `tab` or 'e' key during POST and apend that after the 'quiet' string :
|
||||||
@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
dnf install -y gnome-shell gnome-terminal nano # Minimal GNOME shell or desktop environment plus the text nano editor
|
dnf install -y gnome-shell gnome-terminal nano # Minimal GNOME shell or desktop environment plus the text nano editor
|
||||||
dnf install -y spice-vdagent # Try to install spice-vdagent after the installation is done
|
dnf install -y spice-vdagent # Try to install spice-vdagent after the installation is done
|
||||||
dnf install -y dejavu-sans-mono-fonts # the gnome-shell package doesn't include much fonts by default, resulting in weird spacings in gnome-terminal.
|
dnf install -y dejavu-sans-mono-fonts # the gnome-shell package doesn't include much fonts by default, resulting in weird spacings in the gnome-terminal.
|
||||||
dnf install -y elementary-wallpapers-gnome.noarch # Gorgeous wallpapers
|
dnf install -y elementary-wallpapers-gnome.noarch # Gorgeous wallpapers
|
||||||
dnf install -y wpa_supplicant # WPA Supplicant for Linux. Not integrated by default in gnome-shell, but necessary to configure wireless networks through the Network Manager.
|
dnf install -y wpa_supplicant # WPA Supplicant for Linux. Not integrated by default in gnome-shell, but necessary to configure wireless networks through the Network Manager.
|
||||||
dnf remove -y gnome-tour # We don't want GNOME-tour to open at launch so we delete it
|
dnf remove -y gnome-tour # We don't want GNOME-tour to open at launch so we delete it
|
||||||
|
@ -78,7 +78,7 @@ zerombr
|
|||||||
clearpart --all --initlabel --drives=vda
|
clearpart --all --initlabel --drives=vda
|
||||||
|
|
||||||
# Disk partitioning information.
|
# Disk partitioning information.
|
||||||
# Will create an efi partitition of 128 MiB (vda1), a boot partition of 384 MiB using the ext4 filesystem (vda2). The remaining space will be used for root (vda3). This set up uses LVM
|
# Will create an efi partitition of 128 MiB (vda1), a boot partition of 384 MiB using the ext4 filesystem (vda2). The remaining space will be used for root (vda3). This set up uses LVM and will GPT by default.
|
||||||
part /boot/efi --fstype="efi" --ondisk=vda --size=128 --fsoptions="umask=0077,shortname=winnt" --label=efi
|
part /boot/efi --fstype="efi" --ondisk=vda --size=128 --fsoptions="umask=0077,shortname=winnt" --label=efi
|
||||||
part /boot --fstype="ext4" --ondisk=vda --size=384 --label=boot
|
part /boot --fstype="ext4" --ondisk=vda --size=384 --label=boot
|
||||||
part pv.122 --fstype="lvmpv" --ondisk=vda --grow
|
part pv.122 --fstype="lvmpv" --ondisk=vda --grow
|
||||||
@ -107,7 +107,7 @@ qemu-guest-agent # Install software to allow the host to better interact with th
|
|||||||
dnf update -y # Update the system
|
dnf update -y # Update the system
|
||||||
localectl set-keymap ch-fr # Set keymap to `ch-fr`. Alternatively, `us` can be picked
|
localectl set-keymap ch-fr # Set keymap to `ch-fr`. Alternatively, `us` can be picked
|
||||||
sed -i 's/5/1/' /etc/default/grub # set the GRUB_TIMEOUT countdown to 1 instead of 5 seconds. This command could be used `bootloader --timeout=1` in the disk section
|
sed -i 's/5/1/' /etc/default/grub # set the GRUB_TIMEOUT countdown to 1 instead of 5 seconds. This command could be used `bootloader --timeout=1` in the disk section
|
||||||
grub2-mkconfig -o /boot/grub2/grub.cfg # Update grub
|
grub2-mkconfig -o /boot/grub2/grub.cfg # Update grub
|
||||||
reboot # Reboot the installer (doesn't work (tm))
|
reboot # Reboot the installer (doesn't work (tm))
|
||||||
|
|
||||||
%end # End of the %post section
|
%end # End of the %post section
|
Loading…
x
Reference in New Issue
Block a user