Skip to content

Commit

Permalink
replace btrfs with ext4
Browse files Browse the repository at this point in the history
This fixes https://github.com/archlinux/arch-boxes/issues/51

Signed-off-by: Christian Rebischke <[email protected]>
  • Loading branch information
Christian Rebischke committed Oct 10, 2019
1 parent 3cdd3b4 commit 2b384ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions http/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ size=${swap_size_in_kilobytes}KiB, type=82
EOF

mkswap "${device}1"
mkfs.btrfs -L "rootfs" "${device}2"
mkfs.ext4 -L "rootfs" "${device}2"
mount "${device}2" /mnt

pacstrap /mnt base grub openssh sudo polkit btrfs-progs haveged
pacstrap /mnt base grub openssh sudo polkit haveged
swapon "${device}1"
genfstab -p /mnt >> /mnt/etc/fstab
swapoff "${device}1"
Expand Down

0 comments on commit 2b384ff

Please sign in to comment.