确定 btrfs 子卷是否为只读

确定 btrfs 子卷是否为只读

如何判断btrfs子卷是只读还是读写?

答案1

btrfs property将显示子卷的只读/读写状态:

btrfs property get -ts /path/to/subvolume

这将给出:ro=truero=false.

答案2

btrfs sub show /path/to/subvolume|grep readonly

如果是只读则返回0,你可以用以下命令测试它

btrfs sub show /path/to/subvolume|grep readonly && echo yep

相关内容