根據Wireshark 文檔對於 USB 監控,可能希望允許非 sudo 用戶讀取 usbmon 裝置。
sudo setfacl -m u:$USER:r /dev/usbmon*
setfacl: Option -m incomplete
但該命令會回傳錯誤。的線上幫助頁setfacl
沒有幫助。
如何允許目前使用者透過 setfacl 讀取 usbmon 設備?
答案1
逃避:r
解決了問題:
sudo setfacl -m u:$USER\:r /dev/usbmon*
也許這是由 zsh shell 內的解釋引起的?