Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- install
- text
- network --bootproto dhcp
- url --url http://192.168.1.2/ks/dist/org/1/Fedora-18-x86_64
- lang en_US.UTF-8
- keyboard us
- zerombr
- #I am deleting the old partitions with this
- clearpart --all
- #I am creating partitions here
- #I will create the lvm stuff farther down
- part /boot --fstype=ext4 --size=500 --ondisk=sda --asprimary
- part pv.5xwrsR-ldgG-FEmM-2Zu5-Jn3O-sx9T-unQUOe --grow --size=500 --ondisk=sda --asprimary
- #Very important to have the two part lines before the lvm stuff
- volgroup VG --pesize=32768 pv.5xwrsR-ldgG-FEmM-2Zu5-Jn3O-sx9T-unQUOe
- logvol / --fstype=ext4 --name=lv_root --vgname=VG --size=40960
- logvol /home --fstype=ext4 --name=lv_home --vgname=VG --size=25600
- logvol swap --fstype swap --name=lv_swap --vgname=VG --size=4096
- bootloader --location=mbr --driveorder=sda --append="rhgb quiet"
- timezone America/New_York
- auth --enablemd5 --enableshadow
- rootpw --iscrypted $1$JkYD6FpK$m2vU.Ogb9zKuIZe2IJp.E/
- selinux --permissive
- firewall --disabled
- skipx
- key --skip
- %packages
- @ Base
- %post
- $SNIPPET('redhat_register')
- %packages
- @ Base
- %post
- $SNIPPET('redhat_register')
- reboot
Advertisement
Add Comment
Please, Sign In to add comment