mirror of
https://github.com/PhyllomeOS/phyllomeos.git
synced 2025-01-03 09:35:26 +00:00
add updated kickstart files
This commit is contained in:
parent
c2c4e83321
commit
a8813c1715
87
leaves/desktop.cfg
Normal file
87
leaves/desktop.cfg
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
# Generated by pykickstart v3.34
|
||||||
|
#version=DEVEL
|
||||||
|
# X Window System configuration information
|
||||||
|
xconfig --defaultdesktop=GNOME --startxonboot
|
||||||
|
# Keyboard layouts
|
||||||
|
keyboard --xlayouts='ch (fr)'
|
||||||
|
# Root password
|
||||||
|
rootpw --iscrypted --lock locked
|
||||||
|
# System language
|
||||||
|
lang en_US.UTF-8
|
||||||
|
# Reboot after installation
|
||||||
|
reboot --kexec
|
||||||
|
# Use text mode install
|
||||||
|
text
|
||||||
|
# Network information
|
||||||
|
network --bootproto=dhcp --device=link --hostname=phyllome-alpha --activate
|
||||||
|
# Firewall configuration
|
||||||
|
firewall --enabled --service=mdns
|
||||||
|
# Use network installation
|
||||||
|
url --mirrorlist="https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch"
|
||||||
|
repo --name="fedora" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
||||||
|
repo --name="updates" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f$releasever&arch=$basearch
|
||||||
|
# System timezone
|
||||||
|
timezone Europe/Paris --utc
|
||||||
|
# SELinux configuration
|
||||||
|
selinux --enforcing
|
||||||
|
# System services
|
||||||
|
services --disabled="sshd" --enabled="NetworkManager"
|
||||||
|
# System bootloader configuration
|
||||||
|
bootloader --location=mbr --timeout=1
|
||||||
|
# Clear the Master Boot Record
|
||||||
|
zerombr
|
||||||
|
# Partition clearing information
|
||||||
|
clearpart --all --initlabel
|
||||||
|
# Disk partitioning information
|
||||||
|
part /boot/efi --fstype="efi" --size=128 --fsoptions="umask=0077,shortname=winnt" --label=efi
|
||||||
|
part /boot --fstype="ext4" --size=384 --label=boot
|
||||||
|
part / --fstype="ext4" --grow --label=root
|
||||||
|
|
||||||
|
%post --logfile=/root/b.log
|
||||||
|
|
||||||
|
localectl set-keymap ch-fr # Set keymap to `ch-fr`. Alternatively, `us` can be picked.
|
||||||
|
dnf update -y # Update the system
|
||||||
|
# grub2-mkconfig -o /boot/grub2/grub.cfg # Update grub otherwise the system won't boot properly
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%post --nochroot --logfile=/mnt/sysimage/root/d.log
|
||||||
|
|
||||||
|
truncate -s 0 /mnt/sysimage/usr/share/gnome-initial-setup/vendor.conf # remove content of vendor.conf so that all options are made available
|
||||||
|
|
||||||
|
## Append lines to existing vendor.conf file, so that options are skipped upon reboot
|
||||||
|
cat >> /mnt/sysimage/usr/share/gnome-initial-setup/vendor.conf<< EOF
|
||||||
|
[pages]
|
||||||
|
skip=privacy
|
||||||
|
[goa]
|
||||||
|
providers=local-first!
|
||||||
|
EOF
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%packages --exclude-weakdeps
|
||||||
|
@core
|
||||||
|
@hardware-support
|
||||||
|
dejavu-sans-mono-fonts
|
||||||
|
elementary-wallpapers-gnome.noarch
|
||||||
|
fedora-remix-logos
|
||||||
|
generic-logos
|
||||||
|
generic-release
|
||||||
|
generic-release-common
|
||||||
|
generic-release-notes
|
||||||
|
gnome-initial-setup
|
||||||
|
gnome-shell
|
||||||
|
gnome-terminal
|
||||||
|
nano
|
||||||
|
neofetch
|
||||||
|
pciutils
|
||||||
|
wget
|
||||||
|
wpa_supplicant
|
||||||
|
-fedora-logos
|
||||||
|
-fedora-release
|
||||||
|
-fedora-release-common
|
||||||
|
-fedora-release-identity-basic
|
||||||
|
-fedora-release-notes
|
||||||
|
-gnome-tour
|
||||||
|
|
||||||
|
%end
|
102
leaves/nano-server.cfg
Normal file
102
leaves/nano-server.cfg
Normal file
@ -0,0 +1,102 @@
|
|||||||
|
# Generated by pykickstart v3.34
|
||||||
|
#version=DEVEL
|
||||||
|
# Keyboard layouts
|
||||||
|
keyboard --xlayouts='ch (fr)'
|
||||||
|
# Root password
|
||||||
|
rootpw --iscrypted --lock locked
|
||||||
|
# System language
|
||||||
|
lang en_US.UTF-8
|
||||||
|
# Reboot after installation
|
||||||
|
reboot --kexec
|
||||||
|
# Use text mode install
|
||||||
|
text
|
||||||
|
# Network information
|
||||||
|
network --bootproto=dhcp --device=link --hostname=phyllome-alpha --activate
|
||||||
|
# Firewall configuration
|
||||||
|
firewall --enabled --service=mdns
|
||||||
|
# Use network installation
|
||||||
|
url --mirrorlist="https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch"
|
||||||
|
repo --name="fedora" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
||||||
|
repo --name="updates" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f$releasever&arch=$basearch
|
||||||
|
# System timezone
|
||||||
|
timezone Europe/Paris --utc
|
||||||
|
# Run the Setup Agent on first boot
|
||||||
|
firstboot --reconfig
|
||||||
|
# SELinux configuration
|
||||||
|
selinux --enforcing
|
||||||
|
# System services
|
||||||
|
services --disabled="sshd" --enabled="NetworkManager"
|
||||||
|
# System bootloader configuration
|
||||||
|
bootloader --location=mbr --timeout=1
|
||||||
|
# Clear the Master Boot Record
|
||||||
|
zerombr
|
||||||
|
# Partition clearing information
|
||||||
|
clearpart --all --initlabel
|
||||||
|
# Disk partitioning information
|
||||||
|
part /boot/efi --fstype="efi" --size=128 --fsoptions="umask=0077,shortname=winnt" --label=efi
|
||||||
|
part /boot --fstype="ext4" --size=384 --label=boot
|
||||||
|
part / --fstype="ext4" --grow --label=root
|
||||||
|
|
||||||
|
%post --logfile=/root/bnd.log
|
||||||
|
|
||||||
|
localectl set-keymap ch-fr # Set keymap to `ch-fr`. Alternatively, `us` can be picked.
|
||||||
|
dnf update -y # Update the system
|
||||||
|
grub2-mkconfig -o /boot/grub2/grub.cfg # Update grub otherwise the system won't boot properly
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%packages --exclude-weakdeps
|
||||||
|
NetworkManager
|
||||||
|
audit
|
||||||
|
basesystem
|
||||||
|
bash
|
||||||
|
coreutils
|
||||||
|
curl
|
||||||
|
dhcp-client
|
||||||
|
dnf
|
||||||
|
dnf-plugins-core
|
||||||
|
dracut-config-rescue
|
||||||
|
e2fsprogs
|
||||||
|
efibootmgr
|
||||||
|
fedora-remix-logos
|
||||||
|
fedora-repos-modular
|
||||||
|
filesystem
|
||||||
|
firewalld
|
||||||
|
generic-release
|
||||||
|
generic-release-common
|
||||||
|
generic-release-notes
|
||||||
|
glibc
|
||||||
|
glibc-minimal-langpack
|
||||||
|
hostname
|
||||||
|
initial-setup
|
||||||
|
iproute
|
||||||
|
iputils
|
||||||
|
kbd
|
||||||
|
kernel
|
||||||
|
less
|
||||||
|
man-db
|
||||||
|
ncurses
|
||||||
|
parted
|
||||||
|
passwd
|
||||||
|
pciutils
|
||||||
|
plymouth
|
||||||
|
policycoreutils
|
||||||
|
procps-ng
|
||||||
|
rootfiles
|
||||||
|
rpm
|
||||||
|
selinux-policy-targeted
|
||||||
|
setup
|
||||||
|
shadow-utils
|
||||||
|
sudo
|
||||||
|
systemd
|
||||||
|
systemd-oomd-defaults
|
||||||
|
systemd-resolved
|
||||||
|
util-linux
|
||||||
|
vim-minimal
|
||||||
|
yum
|
||||||
|
zram-generator-defaults
|
||||||
|
-fedora-release
|
||||||
|
-fedora-release-common
|
||||||
|
-fedora-release-identity-basic
|
||||||
|
|
||||||
|
%end
|
180
leaves/phyllome-desktop-a.cfg
Normal file
180
leaves/phyllome-desktop-a.cfg
Normal file
@ -0,0 +1,180 @@
|
|||||||
|
# Generated by pykickstart v3.34
|
||||||
|
#version=DEVEL
|
||||||
|
# X Window System configuration information
|
||||||
|
xconfig --defaultdesktop=GNOME --startxonboot
|
||||||
|
# Keyboard layouts
|
||||||
|
keyboard --xlayouts='ch (fr)'
|
||||||
|
# Root password
|
||||||
|
rootpw --iscrypted --lock locked
|
||||||
|
# System language
|
||||||
|
lang en_US.UTF-8
|
||||||
|
# Reboot after installation
|
||||||
|
reboot --kexec
|
||||||
|
# Use text mode install
|
||||||
|
text
|
||||||
|
# Network information
|
||||||
|
network --bootproto=dhcp --device=link --hostname=phyllome-alpha --activate
|
||||||
|
# Firewall configuration
|
||||||
|
firewall --enabled --service=mdns
|
||||||
|
# Use network installation
|
||||||
|
url --mirrorlist="https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch"
|
||||||
|
repo --name="fedora" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
||||||
|
repo --name="updates" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f$releasever&arch=$basearch
|
||||||
|
# System timezone
|
||||||
|
timezone Europe/Paris --utc
|
||||||
|
# SELinux configuration
|
||||||
|
selinux --enforcing
|
||||||
|
# System services
|
||||||
|
services --disabled="sshd" --enabled="NetworkManager,libvirtd"
|
||||||
|
# System bootloader configuration
|
||||||
|
bootloader --location=mbr --timeout=1
|
||||||
|
# Clear the Master Boot Record
|
||||||
|
zerombr
|
||||||
|
# Partition clearing information
|
||||||
|
clearpart --all --initlabel
|
||||||
|
# Disk partitioning information
|
||||||
|
part /boot/efi --fstype="efi" --size=128 --fsoptions="umask=0077,shortname=winnt" --label=efi
|
||||||
|
part /boot --fstype="ext4" --size=384 --label=boot
|
||||||
|
part / --fstype="ext4" --grow --label=root
|
||||||
|
|
||||||
|
%post --logfile=/root/b.log
|
||||||
|
|
||||||
|
localectl set-keymap ch-fr # Set keymap to `ch-fr`. Alternatively, `us` can be picked.
|
||||||
|
dnf update -y # Update the system
|
||||||
|
# grub2-mkconfig -o /boot/grub2/grub.cfg # Update grub otherwise the system won't boot properly
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%post --nochroot --logfile=/mnt/sysimage/root/bh.log
|
||||||
|
# %post --log=/root/bh.log # Beginning of %post section. Those commands are executed outside the chroot environment. Logging is enabled to help with post-installation troubleshooting
|
||||||
|
|
||||||
|
mkdir /mnt/sysimage/var/lib/libvirt/iso # Create a directory to store iso images
|
||||||
|
|
||||||
|
wget https://boot.netboot.xyz/ipxe/netboot.xyz.iso -P /mnt/sysimage/var/lib/libvirt/iso/ # fetch netboot.xyz iso
|
||||||
|
|
||||||
|
# fetch custom script and make it executable
|
||||||
|
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post/configure-vmm-and-desktop.sh -P /mnt/sysimage/usr/sbin/
|
||||||
|
chmod +x /mnt/sysimage/usr/sbin/configure-vmm-and-desktop.sh
|
||||||
|
|
||||||
|
# fetch custom script and make it executable
|
||||||
|
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post/create-live-vm.sh -P /mnt/sysimage/usr/sbin/
|
||||||
|
chmod +x /mnt/sysimage/usr/sbin/create-live-vm.sh
|
||||||
|
|
||||||
|
# fetch custom script and make it executable
|
||||||
|
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post/virtualization-tweaks-root-needed.sh -P /mnt/sysimage/usr/sbin/
|
||||||
|
chmod +x /mnt/sysimage/usr/sbin/virtualization-tweaks-root-needed.sh
|
||||||
|
|
||||||
|
# # Create new file /etc/systemd/system/postinstall.service using cat:
|
||||||
|
# cat > /mnt/sysimage/etc/systemd/system/post-install.service<< EOF
|
||||||
|
# [Unit]
|
||||||
|
# Description=Post-installation configuration for Phyllome OS
|
||||||
|
# After=gdm.service
|
||||||
|
# Requires=gdm.service
|
||||||
|
#
|
||||||
|
# [Service]
|
||||||
|
# Type=oneshot
|
||||||
|
# ExecStart=/bin/bash /usr/sbin/post-install.sh
|
||||||
|
# RemainAfterExit=yes
|
||||||
|
#
|
||||||
|
# [Install]
|
||||||
|
# WantedBy=multi-user.target
|
||||||
|
# EOF
|
||||||
|
#
|
||||||
|
# systemctl enable /mnt/sysimage/etc/systemd/system/post-install.service # Enable systemd unit
|
||||||
|
|
||||||
|
# Add a network bridge. Still need to declare it to libvirt/virt-manager
|
||||||
|
# nmcli con add ifname br0 type bridge con-name br0
|
||||||
|
# nmcli con add type bridge-slave ifname enp1s0 master br0 # to-do : generalize this command so that it could regardless of the name of the ethernet device
|
||||||
|
# nmcli con up br0
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%post --nochroot --logfile=/mnt/sysimage/root/bha.log
|
||||||
|
|
||||||
|
sed -i 's/\(quiet\)/\1 amd_iommu=on amd_iommu=pt rd.driver.pre=vfio-pci/i' /mnt/sysimage/etc/default/grub # Load kernel modules in GRUB.
|
||||||
|
|
||||||
|
# Load kernel modules by adding vfio, vfio_pci, vfio_iommu_type1, vfio_virqfd
|
||||||
|
echo "vfio" > /mnt/sysimage/etc/modules-load.d/vfio.conf
|
||||||
|
echo "vfio-pci" > /mnt/sysimage/etc/modules-load.d/vfio-pci.conf
|
||||||
|
echo "vfio_iommu_type1" > /mnt/sysimage/etc/modules-load.d/vfio_iommu_type1.conf
|
||||||
|
echo "vfio_virqfd" > /mnt/sysimage/etc/modules-load.d/vfio_virqfd.conf
|
||||||
|
|
||||||
|
echo "options kvm_amd nested=1" >> /etc/modprobe.d/kvm.conf # Add support for nested-virtualization
|
||||||
|
|
||||||
|
# The following part seems useless
|
||||||
|
# dracut --add-drivers " vfio vfio-pci vfio_iommu_type1 vfio_virqfd " --force # Instruct dracut to load the vfio drivers
|
||||||
|
# dracut --force # Regenerate initramfs
|
||||||
|
# Doesn't seem to work
|
||||||
|
# dracut: Cannot find /usr/lib/dracut/dracut-init.sh.
|
||||||
|
# dracut: Are you running from a git checkout?
|
||||||
|
# dracut: Try passing -l as an argument to /mnt/sysimage/usr/bin/dracut
|
||||||
|
|
||||||
|
# The following part seems useless too. No need to regenerate grub
|
||||||
|
# grub2-mkconfig -o /mnt/sysimage/boot/grub2/grub.cfg # Update grub. Does it fail ? /usr/sbin/grub2-probe: error: failed to get canonical path of `LiveOS_rootfs'.
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%post --logfile=/root/bha.log
|
||||||
|
|
||||||
|
grub2-mkconfig -o /boot/grub2/grub.cfg # Update grub otherwise the system won't boot properly
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%post --nochroot --logfile=/mnt/sysimage/root/dha.log
|
||||||
|
|
||||||
|
truncate -s 0 /mnt/sysimage/usr/share/gnome-initial-setup/vendor.conf # remove content of vendor.conf so that all options are made available
|
||||||
|
|
||||||
|
# Create a file to autostart virt-manager
|
||||||
|
cat > /mnt/sysimage/etc/xdg/autostart/virt-manager.desktop << EOF
|
||||||
|
[Desktop Entry]
|
||||||
|
Type=Application
|
||||||
|
Name=Virtual Machine Manager
|
||||||
|
Exec=virt-manager
|
||||||
|
EOF
|
||||||
|
|
||||||
|
## Append lines to existing vendor.conf file, so that options are skipped upon reboot
|
||||||
|
cat >> /mnt/sysimage/usr/share/gnome-initial-setup/vendor.conf<< EOF
|
||||||
|
[pages]
|
||||||
|
skip=privacy
|
||||||
|
[goa]
|
||||||
|
providers=local-first!
|
||||||
|
EOF
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%packages --exclude-weakdeps
|
||||||
|
@core
|
||||||
|
@hardware-support
|
||||||
|
dejavu-sans-mono-fonts
|
||||||
|
elementary-wallpapers-gnome.noarch
|
||||||
|
fedora-remix-logos
|
||||||
|
generic-logos
|
||||||
|
generic-release
|
||||||
|
generic-release-common
|
||||||
|
generic-release-notes
|
||||||
|
gnome-initial-setup
|
||||||
|
gnome-shell
|
||||||
|
gnome-terminal
|
||||||
|
guestfs-tools
|
||||||
|
libguestfs-tools
|
||||||
|
libvirt
|
||||||
|
libvirt-daemon-config-network
|
||||||
|
libvirt-daemon-kvm
|
||||||
|
nano
|
||||||
|
neofetch
|
||||||
|
pciutils
|
||||||
|
python3-libguestfs
|
||||||
|
qemu-kvm
|
||||||
|
virt-install
|
||||||
|
virt-manager
|
||||||
|
virt-top
|
||||||
|
wget
|
||||||
|
wpa_supplicant
|
||||||
|
-fedora-logos
|
||||||
|
-fedora-release
|
||||||
|
-fedora-release-common
|
||||||
|
-fedora-release-identity-basic
|
||||||
|
-fedora-release-notes
|
||||||
|
-gnome-tour
|
||||||
|
|
||||||
|
%end
|
182
leaves/phyllome-desktop-ii.cfg
Normal file
182
leaves/phyllome-desktop-ii.cfg
Normal file
@ -0,0 +1,182 @@
|
|||||||
|
# Generated by pykickstart v3.34
|
||||||
|
#version=DEVEL
|
||||||
|
# X Window System configuration information
|
||||||
|
xconfig --defaultdesktop=GNOME --startxonboot
|
||||||
|
# Keyboard layouts
|
||||||
|
keyboard --xlayouts='ch (fr)'
|
||||||
|
# Root password
|
||||||
|
rootpw --iscrypted --lock locked
|
||||||
|
# System language
|
||||||
|
lang en_US.UTF-8
|
||||||
|
# Reboot after installation
|
||||||
|
reboot --kexec
|
||||||
|
# Use text mode install
|
||||||
|
text
|
||||||
|
# Network information
|
||||||
|
network --bootproto=dhcp --device=link --hostname=phyllome-alpha --activate
|
||||||
|
# Firewall configuration
|
||||||
|
firewall --enabled --service=mdns
|
||||||
|
# Use network installation
|
||||||
|
url --mirrorlist="https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch"
|
||||||
|
repo --name="fedora" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
||||||
|
repo --name="updates" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f$releasever&arch=$basearch
|
||||||
|
# System timezone
|
||||||
|
timezone Europe/Paris --utc
|
||||||
|
# SELinux configuration
|
||||||
|
selinux --enforcing
|
||||||
|
# System services
|
||||||
|
services --disabled="sshd" --enabled="NetworkManager,libvirtd"
|
||||||
|
# System bootloader configuration
|
||||||
|
bootloader --location=mbr --timeout=1
|
||||||
|
# Clear the Master Boot Record
|
||||||
|
zerombr
|
||||||
|
# Partition clearing information
|
||||||
|
clearpart --all --initlabel
|
||||||
|
# Disk partitioning information
|
||||||
|
part /boot/efi --fstype="efi" --size=128 --fsoptions="umask=0077,shortname=winnt" --label=efi
|
||||||
|
part /boot --fstype="ext4" --size=384 --label=boot
|
||||||
|
part / --fstype="ext4" --grow --label=root
|
||||||
|
|
||||||
|
%post --logfile=/root/b.log
|
||||||
|
|
||||||
|
localectl set-keymap ch-fr # Set keymap to `ch-fr`. Alternatively, `us` can be picked.
|
||||||
|
dnf update -y # Update the system
|
||||||
|
# grub2-mkconfig -o /boot/grub2/grub.cfg # Update grub otherwise the system won't boot properly
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%post --nochroot --logfile=/mnt/sysimage/root/bh.log
|
||||||
|
# %post --log=/root/bh.log # Beginning of %post section. Those commands are executed outside the chroot environment. Logging is enabled to help with post-installation troubleshooting
|
||||||
|
|
||||||
|
mkdir /mnt/sysimage/var/lib/libvirt/iso # Create a directory to store iso images
|
||||||
|
|
||||||
|
wget https://boot.netboot.xyz/ipxe/netboot.xyz.iso -P /mnt/sysimage/var/lib/libvirt/iso/ # fetch netboot.xyz iso
|
||||||
|
|
||||||
|
# fetch custom script and make it executable
|
||||||
|
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post/configure-vmm-and-desktop.sh -P /mnt/sysimage/usr/sbin/
|
||||||
|
chmod +x /mnt/sysimage/usr/sbin/configure-vmm-and-desktop.sh
|
||||||
|
|
||||||
|
# fetch custom script and make it executable
|
||||||
|
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post/create-live-vm.sh -P /mnt/sysimage/usr/sbin/
|
||||||
|
chmod +x /mnt/sysimage/usr/sbin/create-live-vm.sh
|
||||||
|
|
||||||
|
# fetch custom script and make it executable
|
||||||
|
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post/virtualization-tweaks-root-needed.sh -P /mnt/sysimage/usr/sbin/
|
||||||
|
chmod +x /mnt/sysimage/usr/sbin/virtualization-tweaks-root-needed.sh
|
||||||
|
|
||||||
|
# # Create new file /etc/systemd/system/postinstall.service using cat:
|
||||||
|
# cat > /mnt/sysimage/etc/systemd/system/post-install.service<< EOF
|
||||||
|
# [Unit]
|
||||||
|
# Description=Post-installation configuration for Phyllome OS
|
||||||
|
# After=gdm.service
|
||||||
|
# Requires=gdm.service
|
||||||
|
#
|
||||||
|
# [Service]
|
||||||
|
# Type=oneshot
|
||||||
|
# ExecStart=/bin/bash /usr/sbin/post-install.sh
|
||||||
|
# RemainAfterExit=yes
|
||||||
|
#
|
||||||
|
# [Install]
|
||||||
|
# WantedBy=multi-user.target
|
||||||
|
# EOF
|
||||||
|
#
|
||||||
|
# systemctl enable /mnt/sysimage/etc/systemd/system/post-install.service # Enable systemd unit
|
||||||
|
|
||||||
|
# Add a network bridge. Still need to declare it to libvirt/virt-manager
|
||||||
|
# nmcli con add ifname br0 type bridge con-name br0
|
||||||
|
# nmcli con add type bridge-slave ifname enp1s0 master br0 # to-do : generalize this command so that it could regardless of the name of the ethernet device
|
||||||
|
# nmcli con up br0
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%post --nochroot --logfile=/mnt/sysimage/root/bhi.log
|
||||||
|
|
||||||
|
sed -i 's/\(quiet\)/\1 intel_iommu=on iommu=pt rd.driver.pre=vfio-pci i915.enable_gvt=1/i' /mnt/sysimage/etc/default/grub # Load kernel modules in grub.
|
||||||
|
|
||||||
|
# Load kernel modules by adding vfio, vfio_pci, vfio_iommu_type1, vfio_virqfd
|
||||||
|
echo "vfio" > /mnt/sysimage/etc/modules-load.d/vfio.conf
|
||||||
|
echo "vfio-pci" > /mnt/sysimage/etc/modules-load.d/vfio-pci.conf
|
||||||
|
echo "vfio_iommu_type1" > /mnt/sysimage/etc/modules-load.d/vfio_iommu_type1.conf
|
||||||
|
echo "vfio_virqfd" > /mnt/sysimage/etc/modules-load.d/vfio_virqfd.conf
|
||||||
|
echo "kvmgt" > /mnt/sysimage/etc/modules-load.d/kvmgt.conf # Load specific kernel modules kvmgt and vfio-mdev, for Intel (tm) GVT-g and Nvidia (tm)
|
||||||
|
echo "vfio-mdev" > /mnt/sysimage/etc/modules-load.d/vfio-mdev.conf # Load specific kernel modules kvmgt and vfio-mdev, for Intel (tm) GVT-g and Nvidia (tm)
|
||||||
|
|
||||||
|
echo "options kvm_intel nested=1" >> /mnt/sysimage/etc/modprobe.d/kvm.conf # Add support for nested-virtualization
|
||||||
|
|
||||||
|
# The following part seems useless
|
||||||
|
# dracut --add-drivers " vfio vfio-pci vfio_iommu_type1 vfio_virqfd vfio-mdev kvmgt " --force # Instruct dracut to load the vfio drivers
|
||||||
|
# dracut --force # Regenerate initramfs
|
||||||
|
# Doesn't seem to work
|
||||||
|
# dracut: Cannot find /usr/lib/dracut/dracut-init.sh.
|
||||||
|
# dracut: Are you running from a git checkout?
|
||||||
|
# dracut: Try passing -l as an argument to /mnt/sysimage/usr/bin/dracut
|
||||||
|
|
||||||
|
# The following part seems useless too. No need to regenerate grub
|
||||||
|
# grub2-mkconfig -o /mnt/sysimage/boot/grub2/grub.cfg # Update grub. Does it fail ? /usr/sbin/grub2-probe: error: failed to get canonical path of `LiveOS_rootfs'.
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%post --logfile=/root/bhi.log
|
||||||
|
|
||||||
|
grub2-mkconfig -o /boot/grub2/grub.cfg # Update grub otherwise the system won't boot properly
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%post --nochroot --logfile=/mnt/sysimage/root/dhi.log
|
||||||
|
|
||||||
|
truncate -s 0 /mnt/sysimage/usr/share/gnome-initial-setup/vendor.conf # remove content of vendor.conf so that all options are made available
|
||||||
|
|
||||||
|
# Create a file to autostart virt-manager
|
||||||
|
cat > /mnt/sysimage/etc/xdg/autostart/virt-manager.desktop << EOF
|
||||||
|
[Desktop Entry]
|
||||||
|
Type=Application
|
||||||
|
Name=Virtual Machine Manager
|
||||||
|
Exec=virt-manager
|
||||||
|
EOF
|
||||||
|
|
||||||
|
## Append lines to existing vendor.conf file, so that options are skipped upon reboot
|
||||||
|
cat >> /mnt/sysimage/usr/share/gnome-initial-setup/vendor.conf<< EOF
|
||||||
|
[pages]
|
||||||
|
skip=privacy
|
||||||
|
[goa]
|
||||||
|
providers=local-first!
|
||||||
|
EOF
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%packages --exclude-weakdeps
|
||||||
|
@core
|
||||||
|
@hardware-support
|
||||||
|
dejavu-sans-mono-fonts
|
||||||
|
elementary-wallpapers-gnome.noarch
|
||||||
|
fedora-remix-logos
|
||||||
|
generic-logos
|
||||||
|
generic-release
|
||||||
|
generic-release-common
|
||||||
|
generic-release-notes
|
||||||
|
gnome-initial-setup
|
||||||
|
gnome-shell
|
||||||
|
gnome-terminal
|
||||||
|
guestfs-tools
|
||||||
|
libguestfs-tools
|
||||||
|
libvirt
|
||||||
|
libvirt-daemon-config-network
|
||||||
|
libvirt-daemon-kvm
|
||||||
|
nano
|
||||||
|
neofetch
|
||||||
|
pciutils
|
||||||
|
python3-libguestfs
|
||||||
|
qemu-kvm
|
||||||
|
virt-install
|
||||||
|
virt-manager
|
||||||
|
virt-top
|
||||||
|
wget
|
||||||
|
wpa_supplicant
|
||||||
|
-fedora-logos
|
||||||
|
-fedora-release
|
||||||
|
-fedora-release-common
|
||||||
|
-fedora-release-identity-basic
|
||||||
|
-fedora-release-notes
|
||||||
|
-gnome-tour
|
||||||
|
|
||||||
|
%end
|
149
leaves/phyllome-desktop.cfg
Normal file
149
leaves/phyllome-desktop.cfg
Normal file
@ -0,0 +1,149 @@
|
|||||||
|
# Generated by pykickstart v3.34
|
||||||
|
#version=DEVEL
|
||||||
|
# X Window System configuration information
|
||||||
|
xconfig --defaultdesktop=GNOME --startxonboot
|
||||||
|
# Keyboard layouts
|
||||||
|
keyboard --xlayouts='ch (fr)'
|
||||||
|
# Root password
|
||||||
|
rootpw --iscrypted --lock locked
|
||||||
|
# System language
|
||||||
|
lang en_US.UTF-8
|
||||||
|
# Reboot after installation
|
||||||
|
reboot --kexec
|
||||||
|
# Use text mode install
|
||||||
|
text
|
||||||
|
# Network information
|
||||||
|
network --bootproto=dhcp --device=link --hostname=phyllome-alpha --activate
|
||||||
|
# Firewall configuration
|
||||||
|
firewall --enabled --service=mdns
|
||||||
|
# Use network installation
|
||||||
|
url --mirrorlist="https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch"
|
||||||
|
repo --name="fedora" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
||||||
|
repo --name="updates" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f$releasever&arch=$basearch
|
||||||
|
# System timezone
|
||||||
|
timezone Europe/Paris --utc
|
||||||
|
# SELinux configuration
|
||||||
|
selinux --enforcing
|
||||||
|
# System services
|
||||||
|
services --disabled="sshd" --enabled="NetworkManager,libvirtd"
|
||||||
|
# System bootloader configuration
|
||||||
|
bootloader --location=mbr --timeout=1
|
||||||
|
# Clear the Master Boot Record
|
||||||
|
zerombr
|
||||||
|
# Partition clearing information
|
||||||
|
clearpart --all --initlabel
|
||||||
|
# Disk partitioning information
|
||||||
|
part /boot/efi --fstype="efi" --size=128 --fsoptions="umask=0077,shortname=winnt" --label=efi
|
||||||
|
part /boot --fstype="ext4" --size=384 --label=boot
|
||||||
|
part / --fstype="ext4" --grow --label=root
|
||||||
|
|
||||||
|
%post --logfile=/root/b.log
|
||||||
|
|
||||||
|
localectl set-keymap ch-fr # Set keymap to `ch-fr`. Alternatively, `us` can be picked.
|
||||||
|
dnf update -y # Update the system
|
||||||
|
# grub2-mkconfig -o /boot/grub2/grub.cfg # Update grub otherwise the system won't boot properly
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%post --nochroot --logfile=/mnt/sysimage/root/bh.log
|
||||||
|
# %post --log=/root/bh.log # Beginning of %post section. Those commands are executed outside the chroot environment. Logging is enabled to help with post-installation troubleshooting
|
||||||
|
|
||||||
|
mkdir /mnt/sysimage/var/lib/libvirt/iso # Create a directory to store iso images
|
||||||
|
|
||||||
|
wget https://boot.netboot.xyz/ipxe/netboot.xyz.iso -P /mnt/sysimage/var/lib/libvirt/iso/ # fetch netboot.xyz iso
|
||||||
|
|
||||||
|
# fetch custom script and make it executable
|
||||||
|
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post/configure-vmm-and-desktop.sh -P /mnt/sysimage/usr/sbin/
|
||||||
|
chmod +x /mnt/sysimage/usr/sbin/configure-vmm-and-desktop.sh
|
||||||
|
|
||||||
|
# fetch custom script and make it executable
|
||||||
|
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post/create-live-vm.sh -P /mnt/sysimage/usr/sbin/
|
||||||
|
chmod +x /mnt/sysimage/usr/sbin/create-live-vm.sh
|
||||||
|
|
||||||
|
# fetch custom script and make it executable
|
||||||
|
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post/virtualization-tweaks-root-needed.sh -P /mnt/sysimage/usr/sbin/
|
||||||
|
chmod +x /mnt/sysimage/usr/sbin/virtualization-tweaks-root-needed.sh
|
||||||
|
|
||||||
|
# # Create new file /etc/systemd/system/postinstall.service using cat:
|
||||||
|
# cat > /mnt/sysimage/etc/systemd/system/post-install.service<< EOF
|
||||||
|
# [Unit]
|
||||||
|
# Description=Post-installation configuration for Phyllome OS
|
||||||
|
# After=gdm.service
|
||||||
|
# Requires=gdm.service
|
||||||
|
#
|
||||||
|
# [Service]
|
||||||
|
# Type=oneshot
|
||||||
|
# ExecStart=/bin/bash /usr/sbin/post-install.sh
|
||||||
|
# RemainAfterExit=yes
|
||||||
|
#
|
||||||
|
# [Install]
|
||||||
|
# WantedBy=multi-user.target
|
||||||
|
# EOF
|
||||||
|
#
|
||||||
|
# systemctl enable /mnt/sysimage/etc/systemd/system/post-install.service # Enable systemd unit
|
||||||
|
|
||||||
|
# Add a network bridge. Still need to declare it to libvirt/virt-manager
|
||||||
|
# nmcli con add ifname br0 type bridge con-name br0
|
||||||
|
# nmcli con add type bridge-slave ifname enp1s0 master br0 # to-do : generalize this command so that it could regardless of the name of the ethernet device
|
||||||
|
# nmcli con up br0
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%post --nochroot --logfile=/mnt/sysimage/root/dh.log
|
||||||
|
|
||||||
|
truncate -s 0 /mnt/sysimage/usr/share/gnome-initial-setup/vendor.conf # remove content of vendor.conf so that all options are made available
|
||||||
|
|
||||||
|
# Create a file to autostart virt-manager
|
||||||
|
cat > /mnt/sysimage/etc/xdg/autostart/virt-manager.desktop << EOF
|
||||||
|
[Desktop Entry]
|
||||||
|
Type=Application
|
||||||
|
Name=Virtual Machine Manager
|
||||||
|
Exec=virt-manager
|
||||||
|
EOF
|
||||||
|
|
||||||
|
## Append lines to existing vendor.conf file, so that options are skipped upon reboot
|
||||||
|
cat >> /mnt/sysimage/usr/share/gnome-initial-setup/vendor.conf<< EOF
|
||||||
|
[pages]
|
||||||
|
skip=privacy
|
||||||
|
[goa]
|
||||||
|
providers=local-first!
|
||||||
|
EOF
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%packages --exclude-weakdeps
|
||||||
|
@core
|
||||||
|
@hardware-support
|
||||||
|
dejavu-sans-mono-fonts
|
||||||
|
elementary-wallpapers-gnome.noarch
|
||||||
|
fedora-remix-logos
|
||||||
|
generic-logos
|
||||||
|
generic-release
|
||||||
|
generic-release-common
|
||||||
|
generic-release-notes
|
||||||
|
gnome-initial-setup
|
||||||
|
gnome-shell
|
||||||
|
gnome-terminal
|
||||||
|
guestfs-tools
|
||||||
|
libguestfs-tools
|
||||||
|
libvirt
|
||||||
|
libvirt-daemon-config-network
|
||||||
|
libvirt-daemon-kvm
|
||||||
|
nano
|
||||||
|
neofetch
|
||||||
|
pciutils
|
||||||
|
python3-libguestfs
|
||||||
|
qemu-kvm
|
||||||
|
virt-install
|
||||||
|
virt-manager
|
||||||
|
virt-top
|
||||||
|
wget
|
||||||
|
wpa_supplicant
|
||||||
|
-fedora-logos
|
||||||
|
-fedora-release
|
||||||
|
-fedora-release-common
|
||||||
|
-fedora-release-identity-basic
|
||||||
|
-fedora-release-notes
|
||||||
|
-gnome-tour
|
||||||
|
|
||||||
|
%end
|
151
leaves/phyllome-server-a.cfg
Normal file
151
leaves/phyllome-server-a.cfg
Normal file
@ -0,0 +1,151 @@
|
|||||||
|
# Generated by pykickstart v3.34
|
||||||
|
#version=DEVEL
|
||||||
|
# Keyboard layouts
|
||||||
|
keyboard --xlayouts='ch (fr)'
|
||||||
|
# Root password
|
||||||
|
rootpw --iscrypted --lock locked
|
||||||
|
# System language
|
||||||
|
lang en_US.UTF-8
|
||||||
|
# Reboot after installation
|
||||||
|
reboot --kexec
|
||||||
|
# Use text mode install
|
||||||
|
text
|
||||||
|
# Network information
|
||||||
|
network --bootproto=dhcp --device=link --hostname=phyllome-alpha --activate
|
||||||
|
# Firewall configuration
|
||||||
|
firewall --enabled --service=mdns
|
||||||
|
# Use network installation
|
||||||
|
url --mirrorlist="https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch"
|
||||||
|
repo --name="fedora" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
||||||
|
repo --name="updates" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f$releasever&arch=$basearch
|
||||||
|
# System timezone
|
||||||
|
timezone Europe/Paris --utc
|
||||||
|
# Run the Setup Agent on first boot
|
||||||
|
firstboot --reconfig
|
||||||
|
# SELinux configuration
|
||||||
|
selinux --enforcing
|
||||||
|
# System services
|
||||||
|
services --disabled="sshd" --enabled="NetworkManager,libvirtd"
|
||||||
|
# System bootloader configuration
|
||||||
|
bootloader --location=mbr --timeout=1
|
||||||
|
# Clear the Master Boot Record
|
||||||
|
zerombr
|
||||||
|
# Partition clearing information
|
||||||
|
clearpart --all --initlabel
|
||||||
|
# Disk partitioning information
|
||||||
|
part /boot/efi --fstype="efi" --size=128 --fsoptions="umask=0077,shortname=winnt" --label=efi
|
||||||
|
part /boot --fstype="ext4" --size=384 --label=boot
|
||||||
|
part / --fstype="ext4" --grow --label=root
|
||||||
|
|
||||||
|
%post --logfile=/root/b.log
|
||||||
|
|
||||||
|
localectl set-keymap ch-fr # Set keymap to `ch-fr`. Alternatively, `us` can be picked.
|
||||||
|
dnf update -y # Update the system
|
||||||
|
# grub2-mkconfig -o /boot/grub2/grub.cfg # Update grub otherwise the system won't boot properly
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%post --nochroot --logfile=/mnt/sysimage/root/bh.log
|
||||||
|
# %post --log=/root/bh.log # Beginning of %post section. Those commands are executed outside the chroot environment. Logging is enabled to help with post-installation troubleshooting
|
||||||
|
|
||||||
|
mkdir /mnt/sysimage/var/lib/libvirt/iso # Create a directory to store iso images
|
||||||
|
|
||||||
|
wget https://boot.netboot.xyz/ipxe/netboot.xyz.iso -P /mnt/sysimage/var/lib/libvirt/iso/ # fetch netboot.xyz iso
|
||||||
|
|
||||||
|
# fetch custom script and make it executable
|
||||||
|
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post/configure-vmm-and-desktop.sh -P /mnt/sysimage/usr/sbin/
|
||||||
|
chmod +x /mnt/sysimage/usr/sbin/configure-vmm-and-desktop.sh
|
||||||
|
|
||||||
|
# fetch custom script and make it executable
|
||||||
|
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post/create-live-vm.sh -P /mnt/sysimage/usr/sbin/
|
||||||
|
chmod +x /mnt/sysimage/usr/sbin/create-live-vm.sh
|
||||||
|
|
||||||
|
# fetch custom script and make it executable
|
||||||
|
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post/virtualization-tweaks-root-needed.sh -P /mnt/sysimage/usr/sbin/
|
||||||
|
chmod +x /mnt/sysimage/usr/sbin/virtualization-tweaks-root-needed.sh
|
||||||
|
|
||||||
|
# # Create new file /etc/systemd/system/postinstall.service using cat:
|
||||||
|
# cat > /mnt/sysimage/etc/systemd/system/post-install.service<< EOF
|
||||||
|
# [Unit]
|
||||||
|
# Description=Post-installation configuration for Phyllome OS
|
||||||
|
# After=gdm.service
|
||||||
|
# Requires=gdm.service
|
||||||
|
#
|
||||||
|
# [Service]
|
||||||
|
# Type=oneshot
|
||||||
|
# ExecStart=/bin/bash /usr/sbin/post-install.sh
|
||||||
|
# RemainAfterExit=yes
|
||||||
|
#
|
||||||
|
# [Install]
|
||||||
|
# WantedBy=multi-user.target
|
||||||
|
# EOF
|
||||||
|
#
|
||||||
|
# systemctl enable /mnt/sysimage/etc/systemd/system/post-install.service # Enable systemd unit
|
||||||
|
|
||||||
|
# Add a network bridge. Still need to declare it to libvirt/virt-manager
|
||||||
|
# nmcli con add ifname br0 type bridge con-name br0
|
||||||
|
# nmcli con add type bridge-slave ifname enp1s0 master br0 # to-do : generalize this command so that it could regardless of the name of the ethernet device
|
||||||
|
# nmcli con up br0
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%post --nochroot --logfile=/mnt/sysimage/root/bha.log
|
||||||
|
|
||||||
|
sed -i 's/\(quiet\)/\1 amd_iommu=on amd_iommu=pt rd.driver.pre=vfio-pci/i' /mnt/sysimage/etc/default/grub # Load kernel modules in GRUB.
|
||||||
|
|
||||||
|
# Load kernel modules by adding vfio, vfio_pci, vfio_iommu_type1, vfio_virqfd
|
||||||
|
echo "vfio" > /mnt/sysimage/etc/modules-load.d/vfio.conf
|
||||||
|
echo "vfio-pci" > /mnt/sysimage/etc/modules-load.d/vfio-pci.conf
|
||||||
|
echo "vfio_iommu_type1" > /mnt/sysimage/etc/modules-load.d/vfio_iommu_type1.conf
|
||||||
|
echo "vfio_virqfd" > /mnt/sysimage/etc/modules-load.d/vfio_virqfd.conf
|
||||||
|
|
||||||
|
echo "options kvm_amd nested=1" >> /etc/modprobe.d/kvm.conf # Add support for nested-virtualization
|
||||||
|
|
||||||
|
# The following part seems useless
|
||||||
|
# dracut --add-drivers " vfio vfio-pci vfio_iommu_type1 vfio_virqfd " --force # Instruct dracut to load the vfio drivers
|
||||||
|
# dracut --force # Regenerate initramfs
|
||||||
|
# Doesn't seem to work
|
||||||
|
# dracut: Cannot find /usr/lib/dracut/dracut-init.sh.
|
||||||
|
# dracut: Are you running from a git checkout?
|
||||||
|
# dracut: Try passing -l as an argument to /mnt/sysimage/usr/bin/dracut
|
||||||
|
|
||||||
|
# The following part seems useless too. No need to regenerate grub
|
||||||
|
# grub2-mkconfig -o /mnt/sysimage/boot/grub2/grub.cfg # Update grub. Does it fail ? /usr/sbin/grub2-probe: error: failed to get canonical path of `LiveOS_rootfs'.
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%post --logfile=/root/bha.log
|
||||||
|
|
||||||
|
grub2-mkconfig -o /boot/grub2/grub.cfg # Update grub otherwise the system won't boot properly
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%packages --exclude-weakdeps
|
||||||
|
@core
|
||||||
|
@hardware-support
|
||||||
|
fedora-remix-logos
|
||||||
|
generic-logos
|
||||||
|
generic-release
|
||||||
|
generic-release-common
|
||||||
|
generic-release-notes
|
||||||
|
guestfs-tools
|
||||||
|
initial-setup
|
||||||
|
libguestfs-tools
|
||||||
|
libvirt
|
||||||
|
libvirt-daemon-config-network
|
||||||
|
libvirt-daemon-kvm
|
||||||
|
nano
|
||||||
|
neofetch
|
||||||
|
pciutils
|
||||||
|
python3-libguestfs
|
||||||
|
qemu-kvm
|
||||||
|
virt-install
|
||||||
|
virt-top
|
||||||
|
wget
|
||||||
|
-fedora-logos
|
||||||
|
-fedora-release
|
||||||
|
-fedora-release-common
|
||||||
|
-fedora-release-identity-basic
|
||||||
|
-fedora-release-notes
|
||||||
|
|
||||||
|
%end
|
153
leaves/phyllome-server-ii.cfg
Normal file
153
leaves/phyllome-server-ii.cfg
Normal file
@ -0,0 +1,153 @@
|
|||||||
|
# Generated by pykickstart v3.34
|
||||||
|
#version=DEVEL
|
||||||
|
# Keyboard layouts
|
||||||
|
keyboard --xlayouts='ch (fr)'
|
||||||
|
# Root password
|
||||||
|
rootpw --iscrypted --lock locked
|
||||||
|
# System language
|
||||||
|
lang en_US.UTF-8
|
||||||
|
# Reboot after installation
|
||||||
|
reboot --kexec
|
||||||
|
# Use text mode install
|
||||||
|
text
|
||||||
|
# Network information
|
||||||
|
network --bootproto=dhcp --device=link --hostname=phyllome-alpha --activate
|
||||||
|
# Firewall configuration
|
||||||
|
firewall --enabled --service=mdns
|
||||||
|
# Use network installation
|
||||||
|
url --mirrorlist="https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch"
|
||||||
|
repo --name="fedora" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
||||||
|
repo --name="updates" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f$releasever&arch=$basearch
|
||||||
|
# System timezone
|
||||||
|
timezone Europe/Paris --utc
|
||||||
|
# Run the Setup Agent on first boot
|
||||||
|
firstboot --reconfig
|
||||||
|
# SELinux configuration
|
||||||
|
selinux --enforcing
|
||||||
|
# System services
|
||||||
|
services --disabled="sshd" --enabled="NetworkManager,libvirtd"
|
||||||
|
# System bootloader configuration
|
||||||
|
bootloader --location=mbr --timeout=1
|
||||||
|
# Clear the Master Boot Record
|
||||||
|
zerombr
|
||||||
|
# Partition clearing information
|
||||||
|
clearpart --all --initlabel
|
||||||
|
# Disk partitioning information
|
||||||
|
part /boot/efi --fstype="efi" --size=128 --fsoptions="umask=0077,shortname=winnt" --label=efi
|
||||||
|
part /boot --fstype="ext4" --size=384 --label=boot
|
||||||
|
part / --fstype="ext4" --grow --label=root
|
||||||
|
|
||||||
|
%post --logfile=/root/b.log
|
||||||
|
|
||||||
|
localectl set-keymap ch-fr # Set keymap to `ch-fr`. Alternatively, `us` can be picked.
|
||||||
|
dnf update -y # Update the system
|
||||||
|
# grub2-mkconfig -o /boot/grub2/grub.cfg # Update grub otherwise the system won't boot properly
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%post --nochroot --logfile=/mnt/sysimage/root/bh.log
|
||||||
|
# %post --log=/root/bh.log # Beginning of %post section. Those commands are executed outside the chroot environment. Logging is enabled to help with post-installation troubleshooting
|
||||||
|
|
||||||
|
mkdir /mnt/sysimage/var/lib/libvirt/iso # Create a directory to store iso images
|
||||||
|
|
||||||
|
wget https://boot.netboot.xyz/ipxe/netboot.xyz.iso -P /mnt/sysimage/var/lib/libvirt/iso/ # fetch netboot.xyz iso
|
||||||
|
|
||||||
|
# fetch custom script and make it executable
|
||||||
|
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post/configure-vmm-and-desktop.sh -P /mnt/sysimage/usr/sbin/
|
||||||
|
chmod +x /mnt/sysimage/usr/sbin/configure-vmm-and-desktop.sh
|
||||||
|
|
||||||
|
# fetch custom script and make it executable
|
||||||
|
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post/create-live-vm.sh -P /mnt/sysimage/usr/sbin/
|
||||||
|
chmod +x /mnt/sysimage/usr/sbin/create-live-vm.sh
|
||||||
|
|
||||||
|
# fetch custom script and make it executable
|
||||||
|
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post/virtualization-tweaks-root-needed.sh -P /mnt/sysimage/usr/sbin/
|
||||||
|
chmod +x /mnt/sysimage/usr/sbin/virtualization-tweaks-root-needed.sh
|
||||||
|
|
||||||
|
# # Create new file /etc/systemd/system/postinstall.service using cat:
|
||||||
|
# cat > /mnt/sysimage/etc/systemd/system/post-install.service<< EOF
|
||||||
|
# [Unit]
|
||||||
|
# Description=Post-installation configuration for Phyllome OS
|
||||||
|
# After=gdm.service
|
||||||
|
# Requires=gdm.service
|
||||||
|
#
|
||||||
|
# [Service]
|
||||||
|
# Type=oneshot
|
||||||
|
# ExecStart=/bin/bash /usr/sbin/post-install.sh
|
||||||
|
# RemainAfterExit=yes
|
||||||
|
#
|
||||||
|
# [Install]
|
||||||
|
# WantedBy=multi-user.target
|
||||||
|
# EOF
|
||||||
|
#
|
||||||
|
# systemctl enable /mnt/sysimage/etc/systemd/system/post-install.service # Enable systemd unit
|
||||||
|
|
||||||
|
# Add a network bridge. Still need to declare it to libvirt/virt-manager
|
||||||
|
# nmcli con add ifname br0 type bridge con-name br0
|
||||||
|
# nmcli con add type bridge-slave ifname enp1s0 master br0 # to-do : generalize this command so that it could regardless of the name of the ethernet device
|
||||||
|
# nmcli con up br0
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%post --nochroot --logfile=/mnt/sysimage/root/bhi.log
|
||||||
|
|
||||||
|
sed -i 's/\(quiet\)/\1 intel_iommu=on iommu=pt rd.driver.pre=vfio-pci i915.enable_gvt=1/i' /mnt/sysimage/etc/default/grub # Load kernel modules in grub.
|
||||||
|
|
||||||
|
# Load kernel modules by adding vfio, vfio_pci, vfio_iommu_type1, vfio_virqfd
|
||||||
|
echo "vfio" > /mnt/sysimage/etc/modules-load.d/vfio.conf
|
||||||
|
echo "vfio-pci" > /mnt/sysimage/etc/modules-load.d/vfio-pci.conf
|
||||||
|
echo "vfio_iommu_type1" > /mnt/sysimage/etc/modules-load.d/vfio_iommu_type1.conf
|
||||||
|
echo "vfio_virqfd" > /mnt/sysimage/etc/modules-load.d/vfio_virqfd.conf
|
||||||
|
echo "kvmgt" > /mnt/sysimage/etc/modules-load.d/kvmgt.conf # Load specific kernel modules kvmgt and vfio-mdev, for Intel (tm) GVT-g and Nvidia (tm)
|
||||||
|
echo "vfio-mdev" > /mnt/sysimage/etc/modules-load.d/vfio-mdev.conf # Load specific kernel modules kvmgt and vfio-mdev, for Intel (tm) GVT-g and Nvidia (tm)
|
||||||
|
|
||||||
|
echo "options kvm_intel nested=1" >> /mnt/sysimage/etc/modprobe.d/kvm.conf # Add support for nested-virtualization
|
||||||
|
|
||||||
|
# The following part seems useless
|
||||||
|
# dracut --add-drivers " vfio vfio-pci vfio_iommu_type1 vfio_virqfd vfio-mdev kvmgt " --force # Instruct dracut to load the vfio drivers
|
||||||
|
# dracut --force # Regenerate initramfs
|
||||||
|
# Doesn't seem to work
|
||||||
|
# dracut: Cannot find /usr/lib/dracut/dracut-init.sh.
|
||||||
|
# dracut: Are you running from a git checkout?
|
||||||
|
# dracut: Try passing -l as an argument to /mnt/sysimage/usr/bin/dracut
|
||||||
|
|
||||||
|
# The following part seems useless too. No need to regenerate grub
|
||||||
|
# grub2-mkconfig -o /mnt/sysimage/boot/grub2/grub.cfg # Update grub. Does it fail ? /usr/sbin/grub2-probe: error: failed to get canonical path of `LiveOS_rootfs'.
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%post --logfile=/root/bhi.log
|
||||||
|
|
||||||
|
grub2-mkconfig -o /boot/grub2/grub.cfg # Update grub otherwise the system won't boot properly
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%packages --exclude-weakdeps
|
||||||
|
@core
|
||||||
|
@hardware-support
|
||||||
|
fedora-remix-logos
|
||||||
|
generic-logos
|
||||||
|
generic-release
|
||||||
|
generic-release-common
|
||||||
|
generic-release-notes
|
||||||
|
guestfs-tools
|
||||||
|
initial-setup
|
||||||
|
libguestfs-tools
|
||||||
|
libvirt
|
||||||
|
libvirt-daemon-config-network
|
||||||
|
libvirt-daemon-kvm
|
||||||
|
nano
|
||||||
|
neofetch
|
||||||
|
pciutils
|
||||||
|
python3-libguestfs
|
||||||
|
qemu-kvm
|
||||||
|
virt-install
|
||||||
|
virt-top
|
||||||
|
wget
|
||||||
|
-fedora-logos
|
||||||
|
-fedora-release
|
||||||
|
-fedora-release-common
|
||||||
|
-fedora-release-identity-basic
|
||||||
|
-fedora-release-notes
|
||||||
|
|
||||||
|
%end
|
120
leaves/phyllome-server.cfg
Normal file
120
leaves/phyllome-server.cfg
Normal file
@ -0,0 +1,120 @@
|
|||||||
|
# Generated by pykickstart v3.34
|
||||||
|
#version=DEVEL
|
||||||
|
# Keyboard layouts
|
||||||
|
keyboard --xlayouts='ch (fr)'
|
||||||
|
# Root password
|
||||||
|
rootpw --iscrypted --lock locked
|
||||||
|
# System language
|
||||||
|
lang en_US.UTF-8
|
||||||
|
# Reboot after installation
|
||||||
|
reboot --kexec
|
||||||
|
# Use text mode install
|
||||||
|
text
|
||||||
|
# Network information
|
||||||
|
network --bootproto=dhcp --device=link --hostname=phyllome-alpha --activate
|
||||||
|
# Firewall configuration
|
||||||
|
firewall --enabled --service=mdns
|
||||||
|
# Use network installation
|
||||||
|
url --mirrorlist="https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch"
|
||||||
|
repo --name="fedora" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
||||||
|
repo --name="updates" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f$releasever&arch=$basearch
|
||||||
|
# System timezone
|
||||||
|
timezone Europe/Paris --utc
|
||||||
|
# Run the Setup Agent on first boot
|
||||||
|
firstboot --reconfig
|
||||||
|
# SELinux configuration
|
||||||
|
selinux --enforcing
|
||||||
|
# System services
|
||||||
|
services --disabled="sshd" --enabled="NetworkManager,libvirtd"
|
||||||
|
# System bootloader configuration
|
||||||
|
bootloader --location=mbr --timeout=1
|
||||||
|
# Clear the Master Boot Record
|
||||||
|
zerombr
|
||||||
|
# Partition clearing information
|
||||||
|
clearpart --all --initlabel
|
||||||
|
# Disk partitioning information
|
||||||
|
part /boot/efi --fstype="efi" --size=128 --fsoptions="umask=0077,shortname=winnt" --label=efi
|
||||||
|
part /boot --fstype="ext4" --size=384 --label=boot
|
||||||
|
part / --fstype="ext4" --grow --label=root
|
||||||
|
|
||||||
|
%post --logfile=/root/b.log
|
||||||
|
|
||||||
|
localectl set-keymap ch-fr # Set keymap to `ch-fr`. Alternatively, `us` can be picked.
|
||||||
|
dnf update -y # Update the system
|
||||||
|
# grub2-mkconfig -o /boot/grub2/grub.cfg # Update grub otherwise the system won't boot properly
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%post --nochroot --logfile=/mnt/sysimage/root/bh.log
|
||||||
|
# %post --log=/root/bh.log # Beginning of %post section. Those commands are executed outside the chroot environment. Logging is enabled to help with post-installation troubleshooting
|
||||||
|
|
||||||
|
mkdir /mnt/sysimage/var/lib/libvirt/iso # Create a directory to store iso images
|
||||||
|
|
||||||
|
wget https://boot.netboot.xyz/ipxe/netboot.xyz.iso -P /mnt/sysimage/var/lib/libvirt/iso/ # fetch netboot.xyz iso
|
||||||
|
|
||||||
|
# fetch custom script and make it executable
|
||||||
|
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post/configure-vmm-and-desktop.sh -P /mnt/sysimage/usr/sbin/
|
||||||
|
chmod +x /mnt/sysimage/usr/sbin/configure-vmm-and-desktop.sh
|
||||||
|
|
||||||
|
# fetch custom script and make it executable
|
||||||
|
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post/create-live-vm.sh -P /mnt/sysimage/usr/sbin/
|
||||||
|
chmod +x /mnt/sysimage/usr/sbin/create-live-vm.sh
|
||||||
|
|
||||||
|
# fetch custom script and make it executable
|
||||||
|
wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post/virtualization-tweaks-root-needed.sh -P /mnt/sysimage/usr/sbin/
|
||||||
|
chmod +x /mnt/sysimage/usr/sbin/virtualization-tweaks-root-needed.sh
|
||||||
|
|
||||||
|
# # Create new file /etc/systemd/system/postinstall.service using cat:
|
||||||
|
# cat > /mnt/sysimage/etc/systemd/system/post-install.service<< EOF
|
||||||
|
# [Unit]
|
||||||
|
# Description=Post-installation configuration for Phyllome OS
|
||||||
|
# After=gdm.service
|
||||||
|
# Requires=gdm.service
|
||||||
|
#
|
||||||
|
# [Service]
|
||||||
|
# Type=oneshot
|
||||||
|
# ExecStart=/bin/bash /usr/sbin/post-install.sh
|
||||||
|
# RemainAfterExit=yes
|
||||||
|
#
|
||||||
|
# [Install]
|
||||||
|
# WantedBy=multi-user.target
|
||||||
|
# EOF
|
||||||
|
#
|
||||||
|
# systemctl enable /mnt/sysimage/etc/systemd/system/post-install.service # Enable systemd unit
|
||||||
|
|
||||||
|
# Add a network bridge. Still need to declare it to libvirt/virt-manager
|
||||||
|
# nmcli con add ifname br0 type bridge con-name br0
|
||||||
|
# nmcli con add type bridge-slave ifname enp1s0 master br0 # to-do : generalize this command so that it could regardless of the name of the ethernet device
|
||||||
|
# nmcli con up br0
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%packages --exclude-weakdeps
|
||||||
|
@core
|
||||||
|
@hardware-support
|
||||||
|
fedora-remix-logos
|
||||||
|
generic-logos
|
||||||
|
generic-release
|
||||||
|
generic-release-common
|
||||||
|
generic-release-notes
|
||||||
|
guestfs-tools
|
||||||
|
initial-setup
|
||||||
|
libguestfs-tools
|
||||||
|
libvirt
|
||||||
|
libvirt-daemon-config-network
|
||||||
|
libvirt-daemon-kvm
|
||||||
|
nano
|
||||||
|
neofetch
|
||||||
|
pciutils
|
||||||
|
python3-libguestfs
|
||||||
|
qemu-kvm
|
||||||
|
virt-install
|
||||||
|
virt-top
|
||||||
|
wget
|
||||||
|
-fedora-logos
|
||||||
|
-fedora-release
|
||||||
|
-fedora-release-common
|
||||||
|
-fedora-release-identity-basic
|
||||||
|
-fedora-release-notes
|
||||||
|
|
||||||
|
%end
|
67
leaves/server.cfg
Normal file
67
leaves/server.cfg
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
# Generated by pykickstart v3.34
|
||||||
|
#version=DEVEL
|
||||||
|
# Keyboard layouts
|
||||||
|
keyboard --xlayouts='ch (fr)'
|
||||||
|
# Root password
|
||||||
|
rootpw --iscrypted --lock locked
|
||||||
|
# System language
|
||||||
|
lang en_US.UTF-8
|
||||||
|
# Reboot after installation
|
||||||
|
reboot --kexec
|
||||||
|
# Use text mode install
|
||||||
|
text
|
||||||
|
# Network information
|
||||||
|
network --bootproto=dhcp --device=link --hostname=phyllome-alpha --activate
|
||||||
|
# Firewall configuration
|
||||||
|
firewall --enabled --service=mdns
|
||||||
|
# Use network installation
|
||||||
|
url --mirrorlist="https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch"
|
||||||
|
repo --name="fedora" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-$releasever&arch=$basearch
|
||||||
|
repo --name="updates" --mirrorlist=https://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f$releasever&arch=$basearch
|
||||||
|
# System timezone
|
||||||
|
timezone Europe/Paris --utc
|
||||||
|
# Run the Setup Agent on first boot
|
||||||
|
firstboot --reconfig
|
||||||
|
# SELinux configuration
|
||||||
|
selinux --enforcing
|
||||||
|
# System services
|
||||||
|
services --disabled="sshd" --enabled="NetworkManager"
|
||||||
|
# System bootloader configuration
|
||||||
|
bootloader --location=mbr --timeout=1
|
||||||
|
# Clear the Master Boot Record
|
||||||
|
zerombr
|
||||||
|
# Partition clearing information
|
||||||
|
clearpart --all --initlabel
|
||||||
|
# Disk partitioning information
|
||||||
|
part /boot/efi --fstype="efi" --size=128 --fsoptions="umask=0077,shortname=winnt" --label=efi
|
||||||
|
part /boot --fstype="ext4" --size=384 --label=boot
|
||||||
|
part / --fstype="ext4" --grow --label=root
|
||||||
|
|
||||||
|
%post --logfile=/root/b.log
|
||||||
|
|
||||||
|
localectl set-keymap ch-fr # Set keymap to `ch-fr`. Alternatively, `us` can be picked.
|
||||||
|
dnf update -y # Update the system
|
||||||
|
# grub2-mkconfig -o /boot/grub2/grub.cfg # Update grub otherwise the system won't boot properly
|
||||||
|
|
||||||
|
%end
|
||||||
|
|
||||||
|
%packages --exclude-weakdeps
|
||||||
|
@core
|
||||||
|
@hardware-support
|
||||||
|
fedora-remix-logos
|
||||||
|
generic-logos
|
||||||
|
generic-release
|
||||||
|
generic-release-common
|
||||||
|
generic-release-notes
|
||||||
|
initial-setup
|
||||||
|
nano
|
||||||
|
neofetch
|
||||||
|
pciutils
|
||||||
|
wget
|
||||||
|
-fedora-logos
|
||||||
|
-fedora-release
|
||||||
|
-fedora-release-common
|
||||||
|
-fedora-release-identity-basic
|
||||||
|
-fedora-release-notes
|
||||||
|
|
||||||
|
%end
|
Loading…
Reference in New Issue
Block a user