mirror of
https://github.com/PhyllomeOS/phyllomeos.git
synced 2025-01-12 13:52:53 +00:00
add new ks file for an even smaller system
This commit is contained in:
parent
5b86457d36
commit
361b291795
143
f34/vsxed.cfg
Normal file
143
f34/vsxed.cfg
Normal file
@ -0,0 +1,143 @@
|
||||
# __ ____ ____ _____
|
||||
# ____ / /_ __ __/ / /___ ____ ___ ___ / __ \/ ___/
|
||||
# / __ \/ __ \/ / / / / / __ \/ __ `__ \/ _ \ / / / /\__ \
|
||||
# / /_/ / / / / /_/ / / / /_/ / / / / / / __/ / /_/ /___/ /
|
||||
# / .___/_/ /_/\__, /_/_/\____/_/ /_/ /_/\___/ \____//____/
|
||||
# /_/ /____/
|
||||
|
||||
# WHAT ? This Kickstart file that bootstraps a minimal fedora 34 server.
|
||||
# 'v' for virtual machine, 's' for server, 'x' for xtrasmall, 'e' for efi, 'd' for development.
|
||||
|
||||
# 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/vsxed.cfg
|
||||
# A shorter URL can also be used :
|
||||
# inst.ks=https://url.phyllo.me/vsxed
|
||||
|
||||
# ATTENTION : this kickstart file will automatically DESTROY the main virtual disk 'vda' and all of its contents.
|
||||
# Bye bye!
|
||||
|
||||
## INSTALLATION SOURCE ##
|
||||
|
||||
# Configure the cdrom as the installation method
|
||||
cdrom
|
||||
|
||||
# Set URL
|
||||
url --url="http://download.fedoraproject.org/pub/fedora/linux/releases/34/Server/x86_64/os"
|
||||
|
||||
## INSTALLATION TYPE ##
|
||||
|
||||
# Perform Installation in text mode
|
||||
text
|
||||
|
||||
## REPOSITORIES ##
|
||||
|
||||
# Add mirro and repo
|
||||
url --mirrorlist="https://mirrors.fedoraproject.org/metalink?repo=fedora-34&arch=x86_64"
|
||||
repo --name=fedora-updates --mirrorlist="https://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f34&arch=x86_64" --cost=0
|
||||
|
||||
## USER RELATED ##
|
||||
|
||||
# Keyboard layouts -> Doesn't seem to survive a reboot
|
||||
keyboard --xlayouts='ch (fr)'
|
||||
|
||||
# Set the system language to American English
|
||||
lang en_US.UTF-8
|
||||
|
||||
# System timezone
|
||||
timezone Europe/Paris --utc # Pour Paris !
|
||||
|
||||
# Set root password and activate the account
|
||||
rootpw --iscrypted $6$2rA58L/SQu5.xMTb$u8.zqBWE5bK1/N983qDpJEp41yg66GwQ3YVTpsRghVhNiZypWyo2Zq2Qwr2tCM3bt50mKMIgHzbPdtSq9ErPz.
|
||||
|
||||
# Create user account
|
||||
user --name=test --password=$6$wlB.n8fvumAXv3xn$clVIswjLUjb7MZoJ2JHi1zk1zmx5ViQuzbVkLYf70SDan5hdqI0tUkc89nHE8pVnHStO4mcl3c1Tk0WJvCet1. --iscrypted --gecos="test"
|
||||
|
||||
## NETWORK RELATED ##
|
||||
|
||||
# Configure Firewall
|
||||
firewall --disabled
|
||||
|
||||
# Configure Network Interfaces
|
||||
network --onboot=yes --bootproto=dhcp --hostname=vsxed
|
||||
|
||||
# Run the Setup Agent on first boot
|
||||
firstboot --enable
|
||||
|
||||
## DISK RELATED ##
|
||||
|
||||
# Only use disk labelled as vda
|
||||
ignoredisk --only-use=vda
|
||||
|
||||
# System bootloader configuration
|
||||
bootloader --location=mbr
|
||||
|
||||
# WARNING : Dangerous command ! Will clear the Master Boot Record
|
||||
zerombr
|
||||
|
||||
# Partition clearing information
|
||||
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.
|
||||
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 / --fstype="ext4" --ondisk=vda --grow --label=system
|
||||
|
||||
## SOFTWARE ##
|
||||
|
||||
# The --nocore option seems to imply that packages should be mentionned
|
||||
%packages --excludedocs --instLangs=en --nocore --excludeWeakdeps
|
||||
kernel
|
||||
# kernel-core
|
||||
bash
|
||||
coreutils
|
||||
microdnf
|
||||
util-linux
|
||||
tar
|
||||
nano
|
||||
sudo
|
||||
glibc-minimal-langpack
|
||||
glibc-langpack-en
|
||||
langpacks-en
|
||||
-e2fsprogs
|
||||
-fuse-libs
|
||||
-gnupg2-smime
|
||||
-libss # used by e2fsprogs
|
||||
-pinentry
|
||||
-shared-mime-info
|
||||
-trousers
|
||||
-xkeyboard-config
|
||||
-sssd-client
|
||||
|
||||
# Install software to allow the host to better interact with the guest (can't find the spice-vdagent package)
|
||||
qemu-guest-agent
|
||||
# spice-vdagent
|
||||
|
||||
# To be removed if we want to redistribute as Fedora Remix.
|
||||
-fedora-logos
|
||||
-fedora-release-notes
|
||||
|
||||
%end
|
||||
|
||||
## POST-INSTALLATION SCRIPTS ##
|
||||
|
||||
## Start of the %post section with logging into /root/ks-post.log
|
||||
%post --log=/root/ks-post.log
|
||||
|
||||
## Set keymap to ch-fr
|
||||
localectl set-keymap ch-fr
|
||||
|
||||
# Update the system
|
||||
# dnf update -y
|
||||
|
||||
# set the GRUB_TIMEOUT countdown to 1 instead of 5 seconds.
|
||||
sed -i 's/5/1/' /etc/default/grub
|
||||
|
||||
# Update grub
|
||||
grub2-mkconfig -o /boot/grub2/grub.cfg
|
||||
|
||||
## Reboot the installer (doesn't work (tm))
|
||||
reboot
|
||||
|
||||
## End of the %post section
|
||||
%end
|
Loading…
x
Reference in New Issue
Block a user