Last active
April 4, 2016 11:46
-
-
Save ofrzeta/8799b95f979cb6968e1a to your computer and use it in GitHub Desktop.
Minimal Kickstart File for CentOS 6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
skipx | |
install | |
url --url http://mirror.cogentco.com/pub/linux/centos/6/os/x86_64/ | |
lang de_DE.UTF-8 | |
keyboard de | |
timezone --utc Europe/Berlin | |
rootpw password | |
network --bootproto=dhcp | |
authconfig --enableshadow --passalgo=sha512 | |
bootloader --location=mbr | |
zerombr | |
clearpart --all --initlabel | |
part /boot --fstype=ext4 --fsoptions="noatime" --size=200 | |
part pv.1 --size 1 --grow | |
volgroup vg0 pv.1 | |
logvol / --fstype ext3 --fsoptions="noatime" --name=root --vgname=vg0 --size=8192 | |
services --enabled=ssh | |
reboot | |
%packages --ignoremissing --excludedocs | |
@core | |
@base | |
ssh | |
%end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment