quartz/content/btrfs.md
2025-02-17 13:06:03 +01:00

672 B

# help
btrfs help

# get status
btrfs fi show
btrfs filesystem show 

# device statistic
sudo btrfs device stats /dev/mapper/sdc_crypt

# disk usage
sudo btrfs filesystem df /sharedfolders/docker

# reblanace
btrfs balance start /
btrfs balance status /

# subvoliums
btrfs subvolume list /
btrfs subvolume create  
btrfs subvolume snapshot
btrfs subvolume delete 

resize

btrfs filesystem resize max /mnt

SWAP with btrfs

cd /
btrfs filesystem mkswapfile --size 2G /btrfs/swapfile
swapon /btrfs/swapfile
sudo sh -c 'echo "/btrfs/swapfile    none    swap    sw      0 0" >> /etc/fstab'