add new extended desktop version

This commit is contained in:
lukas 2021-06-30 23:31:23 +02:00
parent e1ba6ead62
commit 762b93f86c
4 changed files with 42 additions and 9 deletions

View File

@ -81,9 +81,9 @@ zerombr
clearpart --all --initlabel --drives=nvme0n1
# Disk partitioning information.
# Will create an efi partitition of 128 MiB, a boot partition of 350 MiB on disk vda using the ext4 filesystem. The remaining space will be used for root.
# Will create an efi partitition of 128 MiB, a boot partition of 384 MiB on disk vda using the ext4 filesystem. The remaining space will be used for root.
part /boot/efi --fstype="efi" --ondisk=nvme0n1 --size=128 --fsoptions="umask=0077,shortname=winnt" --label=efi
part /boot --fstype="ext4" --ondisk=nvme0n1 --size=350 --label=boot
part /boot --fstype="ext4" --ondisk=nvme0n1 --size=384 --label=boot
part / --fstype="ext4" --ondisk=nvme0n1 --grow --label=system
## SOFTWARE ##

View File

@ -21,11 +21,6 @@
%post
dnf install -y gnome-shell gnome-terminal nano # Minimal GNOME shell or desktop environment plus the text nano editor
# dnf install -y nautilus gnome-terminal-nautilus # Default File explorer for GNOME and its integration with gnome-shell
# dnf install -y gedit # The official gnome text editor
# dnf install -y firefox # Internet browser
# dnf install -y nextcloud-client nextcloud-client-nautilus # The Nextcloud client and its integration with gnome-shell
# dnf install -y libreoffice-writer # The rich and open text editor
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 elementary-wallpapers-gnome.noarch # Gorgeous wallpapers

38
f34/veldp.cfg Normal file
View File

@ -0,0 +1,38 @@
# __ ____ ____ _____
# ____ / /_ __ __/ / /___ ____ ___ ___ / __ \/ ___/
# / __ \/ __ \/ / / / / / __ \/ __ `__ \/ _ \ / / / /\__ \
# / /_/ / / / / /_/ / / / /_/ / / / / / / __/ / /_/ /___/ /
# / .___/_/ /_/\__, /_/_/\____/_/ /_/ /_/\___/ \____//____/
# /_/ /____/
# WHAT ? This Kickstart file bootstraps a minimal desktop-oriented virtual machine.
# 'v' for virtual machine, 'e' for efi, 'l' for 'lvm', 'd' for desktop, 'p' for production.
# 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/f34/veldp.cfg
# A shorter URL can also be used :
# inst.ks=https://url.phyllo.me/veldp
# ATTENTION : this kickstart file will automatically DESTROY the main virtual disk 'vda' and all of its contents.
# Bye bye!
%include https://git.phyllo.me/home/kickstart/raw/branch/master/f34/velsd.cfg # Include velsd.cfg as base
%include https://git.phyllo.me/home/kickstart/raw/branch/master/f34/veldd.cfg # Include velsd.cfg as base
%post
dnf install -y nautilus gnome-terminal-nautilus # Default File explorer for GNOME and its integration with gnome-shell
dnf install -y gedit # The official gnome text editor
dnf install -y firefox # Internet browser
dnf install -y nextcloud-client nextcloud-client-nautilus # The Nextcloud client and its integration with gnome-shell
dnf install -y libreoffice-writer # The rich and open text editor
dnf install -y vlc # Install VLC media player
dnf install -y # Install thunderbird-wayland.x86_64
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo # Add Flathub repository
flatpak install -y flathub org.zotero.Zotero # Install Zotero
flatpak install -y flathub com.bitwarden.desktop # Install Bitwarden
flatpak install -y flathub com.visualstudio.code # Install VScode
flatpak install -y flathub net.cozic.joplin_desktop # Install Joplin
%end # End of the %post section

View File

@ -81,9 +81,9 @@ zerombr
clearpart --all --initlabel --drives=vda
# Disk partitioning information.
# Will create an efi partitition of 128 MiB, a boot partition of 350 MiB on disk vda using the ext4 filesystem. The remaining space will be used for root.
# Will create an efi partitition of 128 MiB, a boot partition of 384 MiB on disk vda using the ext4 filesystem. The remaining space will be used for root.
part /boot/efi --fstype="efi" --ondisk=vda --size=128 --fsoptions="umask=0077,shortname=winnt" --label=efi
part /boot --fstype="ext4" --ondisk=vda --size=350 --label=boot
part /boot --fstype="ext4" --ondisk=vda --size=384 --label=boot
part pv.122 --fstype="lvmpv" --ondisk=vda --grow
volgroup system --pesize=4096 pv.122
logvol / --fstype="ext4" --percent 100 --label="root" --name=root --vgname=system