Btrfs

確定 btrfs 子卷是否為只讀

  • April 17, 2019

如何判斷btrfs子卷是只讀的還是讀寫的?

btrfs property將顯示子卷的只讀/讀寫狀態:

btrfs property get -ts /path/to/subvolume

這將給出:ro=truero=false

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

如果它是只讀的,則返回 0,您可以使用

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

引用自:https://unix.stackexchange.com/questions/375645