Btrfs
From wiki
Warning: | Btrfs is still a new filesystem. While many (including myself) find it stable enough for everyday use, don't use it for critical services and be prepared to use you backups. |
Create a filesystem
Single Disk
# mkfs.btrfs /dev/sdb
Raid 1
# mkfs.btrfs -mraid1 -draid1 /dev/sdb /dev/sdc
Raid 0
# mkfs.btrfs -mraid1 -draid0 /dev/sdb /dev/sdc
Subvolumes
To create a subvolume just use the command
# btrfs subvolume create /<path>