remove the hypervisor part
This commit is contained in:
@@ -20,7 +20,7 @@ rootpw --lock
|
|||||||
# SELinux configuration
|
# SELinux configuration
|
||||||
selinux --enforcing
|
selinux --enforcing
|
||||||
# System services
|
# System services
|
||||||
services --enabled="NetworkManager,systemd-resolved,libvirtd"
|
services --enabled="NetworkManager,systemd-resolved"
|
||||||
# System timezone
|
# System timezone
|
||||||
timezone Europe/Zurich --utc
|
timezone Europe/Zurich --utc
|
||||||
# Use network installation
|
# Use network installation
|
||||||
@@ -128,99 +128,6 @@ glib-compile-schemas /mnt/sysimage/usr/share/glib-2.0/schemas/
|
|||||||
|
|
||||||
%end
|
%end
|
||||||
|
|
||||||
%post --nochroot --logfile=/mnt/sysimage/root/base-desktop-gnome-virtual-machine-manager.log
|
|
||||||
|
|
||||||
# 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
|
|
||||||
|
|
||||||
# Modify the default virt-manager behavior for misc. options
|
|
||||||
cat >> /mnt/sysimage/usr/share/glib-2.0/schemas/org.virt-manager.virt-manager.gschema.override<< EOF
|
|
||||||
|
|
||||||
# Modify the default virt-manager behavior for misc. options
|
|
||||||
[org.virt-manager.virt-manager]
|
|
||||||
xmleditor-enabled=true
|
|
||||||
manager-window-height=600
|
|
||||||
manager-window-width=200
|
|
||||||
|
|
||||||
# Libvirt URIs listed in the manager window
|
|
||||||
[org.virt-manager.virt-manager.connections]
|
|
||||||
uris=['qemu:///system', 'qemu:///session']
|
|
||||||
autoconnect=['qemu:///session']
|
|
||||||
|
|
||||||
# Show usage in the domain list
|
|
||||||
[org.virt-manager.virt-manager.vmlist-fields]
|
|
||||||
cpu-usage=false
|
|
||||||
|
|
||||||
# Settings related to statistics
|
|
||||||
[org.virt-manager.virt-manager.stats]
|
|
||||||
update-interval=3
|
|
||||||
enable-disk-poll=true
|
|
||||||
enable-memory-poll=true
|
|
||||||
enable-net-poll=true
|
|
||||||
|
|
||||||
# Default behavior for the console
|
|
||||||
[org.virt-manager.virt-manager.console]
|
|
||||||
scaling=2
|
|
||||||
resize-guest=1
|
|
||||||
autoconnect=false
|
|
||||||
|
|
||||||
# Do not show toolbar
|
|
||||||
[org.virt-manager.virt-manager.details]
|
|
||||||
show-toolbar=false
|
|
||||||
|
|
||||||
# Modify default values for new VMs
|
|
||||||
[org.virt-manager.virt-manager.new-vm]
|
|
||||||
storage-format='raw'
|
|
||||||
cpu-default='host-model'
|
|
||||||
graphics-type='spice'
|
|
||||||
|
|
||||||
# Modify the default virt-manager behavior for confirmation dialogues
|
|
||||||
[org.virt-manager.virt-manager.confirm]
|
|
||||||
forcepoweroff=false
|
|
||||||
removedev=false
|
|
||||||
unapplied-dev=false
|
|
||||||
|
|
||||||
EOF
|
|
||||||
|
|
||||||
glib-compile-schemas /mnt/sysimage/usr/share/glib-2.0/schemas/
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|
||||||
%post --nochroot --logfile=/mnt/sysimage/root/base-hypervisor.log
|
|
||||||
|
|
||||||
# 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
|
|
||||||
|
|
||||||
mkdir /mnt/sysimage/var/lib/libvirt/isos # Create a directory to store iso images. SELinux is already taking this one into account.
|
|
||||||
|
|
||||||
# wget https://boot.netboot.xyz/ipxe/netboot.xyz.iso -P /mnt/sysimage/var/lib/libvirt/isos/ # fetch netboot.xyz iso and store it to the newly created iso directory
|
|
||||||
|
|
||||||
# # virsh commands fail in a kickstart environment (chroot or not it seems). would need to fetch a script and execute post-launch with a delay, for example using a systemd unit
|
|
||||||
# virsh pool-define-as isos dir - - - - /mnt/sysimage/var/lib/libvirt/isos/ # Make libvirt aware of this new directory by creating a so-called 'pool'.
|
|
||||||
# virsh pool-build isos # Build the pool
|
|
||||||
# virsh pool-start isos # Start it
|
|
||||||
# virsh pool-autostart isos # Set-it to autostart
|
|
||||||
|
|
||||||
# fetch custom script and make it executable
|
|
||||||
# wget https://raw.githubusercontent.com/PhyllomeOS/phyllomeos/main/post-first-startup-scripts/virtualization-tweaks-root-needed.sh -P /mnt/sysimage/usr/local/bin/
|
|
||||||
# chmod +x /mnt/sysimage/usr/local/bin/virtualization-tweaks-root-needed.sh
|
|
||||||
|
|
||||||
# wget https://raw.githubusercontent.com/PhyllomeOS/xml-definition-for-domains/main/xml/system/linux.xml
|
|
||||||
# virsh define linux.xml
|
|
||||||
|
|
||||||
# wget https://raw.githubusercontent.com/PhyllomeOS/xml-definition-for-domains/main/xml/system/windows.xml
|
|
||||||
# virsh define windows.xml
|
|
||||||
|
|
||||||
%end
|
|
||||||
|
|
||||||
%packages --exclude-weakdeps
|
%packages --exclude-weakdeps
|
||||||
NetworkManager
|
NetworkManager
|
||||||
NetworkManager-config-connectivity-fedora
|
NetworkManager-config-connectivity-fedora
|
||||||
@@ -273,21 +180,6 @@ kernel
|
|||||||
less
|
less
|
||||||
libertas-firmware
|
libertas-firmware
|
||||||
libusb
|
libusb
|
||||||
libvirt
|
|
||||||
libvirt-client
|
|
||||||
libvirt-client-qemu
|
|
||||||
libvirt-daemon
|
|
||||||
libvirt-daemon-common
|
|
||||||
libvirt-daemon-config-network
|
|
||||||
libvirt-daemon-driver-ch
|
|
||||||
libvirt-daemon-driver-interface
|
|
||||||
libvirt-daemon-driver-network
|
|
||||||
libvirt-daemon-driver-qemu
|
|
||||||
libvirt-daemon-kvm
|
|
||||||
libvirt-daemon-log
|
|
||||||
libvirt-daemon-qemu
|
|
||||||
libvirt-dbus
|
|
||||||
libvirt-nss
|
|
||||||
man-db
|
man-db
|
||||||
mesa-dri-drivers
|
mesa-dri-drivers
|
||||||
mozilla-ublock-origin.noarch
|
mozilla-ublock-origin.noarch
|
||||||
@@ -308,7 +200,6 @@ policycoreutils
|
|||||||
prefixdevname
|
prefixdevname
|
||||||
procps-ng
|
procps-ng
|
||||||
qemu-guest-agent
|
qemu-guest-agent
|
||||||
qemu-kvm
|
|
||||||
realtek-firmware
|
realtek-firmware
|
||||||
rootfiles
|
rootfiles
|
||||||
rpm
|
rpm
|
||||||
@@ -325,8 +216,6 @@ tiwilink-firmware
|
|||||||
usbutils
|
usbutils
|
||||||
util-linux
|
util-linux
|
||||||
vim-minimal
|
vim-minimal
|
||||||
virt-install
|
|
||||||
virt-manager
|
|
||||||
wget
|
wget
|
||||||
wpa_supplicant
|
wpa_supplicant
|
||||||
zram-generator-defaults
|
zram-generator-defaults
|
||||||
|
|||||||
@@ -21,6 +21,4 @@
|
|||||||
%include ../ingredients/core-post.cfg # Triggered after the installation
|
%include ../ingredients/core-post.cfg # Triggered after the installation
|
||||||
%include ../ingredients/core-initial-setup-desktop.cfg # OEM setup for GNOME Shell
|
%include ../ingredients/core-initial-setup-desktop.cfg # OEM setup for GNOME Shell
|
||||||
%include ../ingredients/base-desktop-gnome.cfg # A GNOME Shell-based desktop environment
|
%include ../ingredients/base-desktop-gnome.cfg # A GNOME Shell-based desktop environment
|
||||||
%include ../ingredients/base-desktop-virtual-machine-manager.cfg # Virtual Machine Manager
|
|
||||||
%include ../ingredients/base-hypervisor.cfg # Base hypervisor
|
|
||||||
%include ../ingredients/base-guest-agents.cfg # Guest agents
|
%include ../ingredients/base-guest-agents.cfg # Guest agents
|
||||||
Reference in New Issue
Block a user