16 lines
434 B
Bash
Executable File
16 lines
434 B
Bash
Executable File
#!/bin/sh
|
|
set -Ceux
|
|
|
|
btrfs subvolume create /mnt/@
|
|
btrfs subvolume create /mnt/@/.snapshots
|
|
mkdir /mnt/@/.snapshots/1
|
|
btrfs subvolume create /mnt/@/.snapshots/1/snapshot
|
|
btrfs subvolume create /mnt/@/home
|
|
btrfs subvolume create /mnt/@/opt
|
|
btrfs subvolume create /mnt/@/root
|
|
btrfs subvolume create /mnt/@/srv
|
|
btrfs subvolume create /mnt/@/tmp
|
|
mkdir /mnt/@/usr/
|
|
btrfs subvolume create /mnt/@/usr/local
|
|
btrfs subvolume create /mnt/@/var
|