mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-20 03:14:06 -06:00
672 B
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'