mirror of
https://github.com/mitchell/dotfiles.git
synced 2026-04-03 16:30:12 +00:00
23 lines
538 B
Fish
Executable file
23 lines
538 B
Fish
Executable file
#!/usr/bin/env fish
|
|
|
|
lsblk
|
|
echo
|
|
read -P 'Device (/dev/vda2):' -l device
|
|
|
|
if test -z "$device"
|
|
set device /dev/vda2
|
|
end
|
|
|
|
mkfs.btrfs $device
|
|
and mount $device /mnt
|
|
and btrfs subvolume create /mnt/root
|
|
and btrfs subvolume create /mnt/swap
|
|
and btrfs subvolume create /mnt/home
|
|
and umount /mnt
|
|
|
|
and mount -o subvol=root $device /mnt
|
|
and mount -m -o subvol=swap $device /mnt/swap
|
|
and mount -m -o subvol=home $device /mnt/home
|
|
and btrfs filesystem mkswapfile --size 4g --uuid clear /mnt/swap/swapfile
|
|
and swapon /mnt/swap/swapfile
|
|
and lsblk
|