mirror of
https://github.com/PhyllomeOS/phyllomeos.git
synced 2024-12-22 05:05:17 +00:00
refined some commentaries
This commit is contained in:
parent
94e51fa14c
commit
4b16d91cf2
22
f34/main.cfg
22
f34/main.cfg
@ -1,12 +1,12 @@
|
||||
# WHAT ? Kickstart file that bootstraps a minimal fedora 34 server, vanilla.
|
||||
|
||||
# ATTENTION : this script will automatically DESTROY the main virtual disk 'vda' and all of its contents.
|
||||
# ATTENTION : this kickstart file will automatically DESTROY the main virtual disk 'vda' and all of its contents.
|
||||
# Bye bye!
|
||||
|
||||
# ATTENTION : user accounts are password-protected and passwords are encrypted in the file.
|
||||
# If you really want to hack it, you can reset the root password of the resulting image with the 'virt-sysprep' tool
|
||||
# Do something like virt-sysprep --root-password password: -a thenameofyourdiskimage.img.
|
||||
# Your password must be added after the semicolon ":"
|
||||
# Your password must be added after the semicolon ":". See here for more information : https://libguestfs.org/virt-sysprep.1.html
|
||||
|
||||
# USAGE : Press the `tab` key during POST and apend that after the 'quiet' string :
|
||||
# inst.ks=https://git.phyllo.me/home/kickstart/raw/branch/master/f34/main.cfg
|
||||
@ -21,6 +21,7 @@
|
||||
# - It uses the ext4 filesystem
|
||||
# - It will populate all the available disk space
|
||||
# - After the installation, it will install updates
|
||||
# - When installed in a virtual machine, the vanilla version should create a fully-updated system with 614 packages (`dnf list --installed | wc -l`)
|
||||
|
||||
# Originally generated by Anaconda 34.24.9
|
||||
# Orginally generated by pykickstart v3.32
|
||||
@ -31,8 +32,7 @@
|
||||
# Configure cdrom as installation method
|
||||
cdrom
|
||||
|
||||
# Alternatively, use network installation by commenting out 'cdrom' and uncommenting the following : --> Is it really the case ?
|
||||
|
||||
# NEEDS TO BE FIXED - Alternatively, use network installation by commenting out 'cdrom' and uncommenting the following : --> Is it really the case ?
|
||||
url --url="http://download.fedoraproject.org/pub/fedora/linux/releases/34/Server/x86_64/os"
|
||||
|
||||
## INSTALLATION TYPE ##
|
||||
@ -49,11 +49,11 @@ graphical
|
||||
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
|
||||
|
||||
# Add rpmfusion repositories, which provides extra-packages
|
||||
repo --name=rpmfusion-free --mirrorlist="https://mirrors.rpmfusion.org/mirrorlist?repo=free-fedora-34&arch=x86_64" --includepkgs=rpmfusion-free-release
|
||||
repo --name=rpmfusion-free-updates --mirrorlist="https://mirrors.rpmfusion.org/mirrorlist?repo=free-fedora-updates-released-34&arch=x86_64" --cost=0
|
||||
|
||||
# Uncomment to add-nonfree repositories
|
||||
|
||||
# repo --name=rpmfusion-nonfree --mirrorlist="https://mirrors.rpmfusion.org/mirrorlist?repo=nonfree-fedora-34&arch=x86_64" --includepkgs=rpmfusion-nonfree-release
|
||||
# repo --name=rpmfusion-nonfree-updates --mirrorlist="https://mirrors.rpmfusion.org/mirrorlist?repo=nonfree-fedora-updates-released-34&arch=x86_64" --cost=0
|
||||
|
||||
@ -64,12 +64,10 @@ keyboard fr-ch
|
||||
|
||||
# Set the system language to American English
|
||||
lang en_US.UTF-8
|
||||
# lang fr_CH.UTF-8 # Pour la Romandie !
|
||||
|
||||
# Alternatively, set the system language to Suisse romand
|
||||
# lang fr_CH.UTF-8
|
||||
|
||||
# System timezone.
|
||||
timezone Europe/Paris --utc
|
||||
# System timezone
|
||||
timezone Europe/Paris --utc # Pour Paris !
|
||||
|
||||
# Set root password and activate the account
|
||||
rootpw --iscrypted $6$2rA58L/SQu5.xMTb$u8.zqBWE5bK1/N983qDpJEp41yg66GwQ3YVTpsRghVhNiZypWyo2Zq2Qwr2tCM3bt50mKMIgHzbPdtSq9ErPz.
|
||||
@ -88,9 +86,9 @@ network --onboot=yes --bootproto=dhcp --hostname=f34-minimal
|
||||
# Run the Setup Agent on first boot
|
||||
firstboot --enable
|
||||
|
||||
## SYSTEM RELATED ## To do
|
||||
## SYSTEM RELATED
|
||||
|
||||
# Services to enable/disable
|
||||
# Services to enable/disable ## To do
|
||||
# services --disabled=mlocate-updatedb,mlocate-updatedb.timer,geoclue,avahi-daemon
|
||||
|
||||
## DISK RELATED ##
|
||||
|
Loading…
Reference in New Issue
Block a user