Created
July 1, 2012 20:00
-
-
Save kelbyers/3029402 to your computer and use it in GitHub Desktop.
Fedora 17 Kickstart snippet to install with btrfs subvolumes
This file contains 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
clearpart --all | |
part biosboot --fstype=biosboot --size=1 | |
part swap --size=4096 | |
part /boot --size=500 | |
part btrfs.01 --size=500 --grow | |
btrfs none --label=system/ btrfs.01 | |
btrfs / --subvol --name=@ LABEL=system/ | |
btrfs /home --subvol --name=@home LABEL=system/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment