答案1
對於任何命令或應用程式
Linux 命名空間可以輕鬆使用消防監獄就像下面的例子
firejail --noprofile --quiet --blacklist=/path/to/exclude command-or-app
排除目錄的另一種方法find
firejail --noprofile --quiet --blacklist=/path/to/exclude find /search/location -name am-looking-for-this
請注意,此方法將拒絕訪問/path/to/exclude
,find 命令將列印 stderr withaccess denied
並且退出狀態不會為 0。2>/dev/null
。 。其他附加實現,例如這或者這也可以使用。
尋找命令:
find . -path ./exclude/this -prune -o -print