如何判断btrfs
子卷是只读还是读写?
答案1
btrfs property
将显示子卷的只读/读写状态:
btrfs property get -ts /path/to/subvolume
这将给出:ro=true
或ro=false
.
答案2
btrfs sub show /path/to/subvolume|grep readonly
如果是只读则返回0,你可以用以下命令测试它
btrfs sub show /path/to/subvolume|grep readonly && echo yep