Determine if btrfs subvolume is read-only

btrfs

How can I tell if a btrfs subvolume is read-only or read-write?

Best Answer

btrfs property will show the read-only / read-write status of a subvolume:

btrfs property get -ts /path/to/subvolume

This will give either: ro=true or ro=false.

Related Question