Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # https://docs.fedoraproject.org/en-US/fedora/f32/install-guide/appendixes/Kickstart_Syntax_Reference/
- # Configure installation method
- install
- url --mirrorlist="https://mirrors.fedoraproject.org/mirrorlist?repo=fedora-32&arch=x86_64"
- repo --name=fedora-updates --mirrorlist="https://mirrors.fedoraproject.org/mirrorlist?repo=updates-released-f32&arch=x86_64" --cost=0
- repo --name=rpmfusion-free --mirrorlist="https://mirrors.rpmfusion.org/mirrorlist?repo=free-fedora-32&arch=x86_64" --includepkgs=rpmfusion-free-release
- repo --name=rpmfusion-free-updates --mirrorlist="https://mirrors.rpmfusion.org/mirrorlist?repo=free-fedora-updates-released-32&arch=x86_64" --cost=0
- repo --name=rpmfusion-nonfree --mirrorlist="https://mirrors.rpmfusion.org/mirrorlist?repo=nonfree-fedora-32&arch=x86_64" --includepkgs=rpmfusion-nonfree-release
- repo --name=rpmfusion-nonfree-updates --mirrorlist="https://mirrors.rpmfusion.org/mirrorlist?repo=nonfree-fedora-updates-released-32&arch=x86_64" --cost=0
- repo --name=google-chrome --install --baseurl="https://dl.google.com/linux/chrome/rpm/stable/x86_64" --cost=0
- # Configure Boot Loader
- bootloader --location=mbr --driveorder=sda
- #Initial user
- user --name "test" --iscrypted --password $1$wC3MpH6e$OnVMZOR4qNSpBzueOkg5R.
- # Remove all existing partitions
- clearpart --all --drives=sda
- # Create Physical Partition
- part /boot --size=512 --asprimary --ondrive=sda --fstype=xfs
- part swap --size=10240 --ondrive=sda
- part / --size=8192 --grow --asprimary --ondrive=sda --fstype=xfs
- # zerombr
- zerombr
- # Configure Firewall
- firewall --disable
- # Configure Network Interfaces
- network --onboot=yes --bootproto=dhcp --hostname=sina-laptop
- # Configure Keyboard Layouts
- keyboard us
- # Configure Language During Installation
- lang en_AU
- # Services to enable/disable
- services --disabled=mlocate-updatedb,mlocate-updatedb.timer,bluetooth,bluetooth.target,geoclue,avahi-daemon
- # Configure Time Zone
- timezone Australia/Sydney
- # Configure X Window System
- xconfig --startxonboot
- #System authorization infomation
- auth --useshadow --enablemd5
- # Perform Installation in Text Mode
- text
- # Package Selection
- %packages
- @core
- @standard
- @hardware-support
- @base-x
- @xfce-desktop
- @development-tools
- %end
- # Post-installation Script
- %post --nochroot
- cp /home $LIVE_ROOT
- %end
- # Reboot After Installation
- reboot --eject
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement