16 lines
492 B
Bash
16 lines
492 B
Bash
mount "${TARGETDISK}2" $TARGET
|
|
|
|
btrfs subvolume create $TARGET/@
|
|
btrfs subvolume create $TARGET/@home
|
|
btrfs subvolume create $TARGET/@var_log
|
|
|
|
umount $TARGET
|
|
|
|
mount -o defaults,ssd,noatime,compress=zstd,subvol=@ "${TARGETDISK}2" $TARGET
|
|
|
|
mkdir -p $TARGET/{home,var/log,boot}
|
|
|
|
mount -o defaults,ssd,noatime,compress=zstd,subvol=@home "${TARGETDISK}2" $TARGET/home
|
|
mount -o defaults,ssd,noatime,compress=zstd,subvol=@var_log "${TARGETDISK}2" $TARGET/var/log
|
|
mount "${TARGETDISK}1" $TARGET/boot
|