透過 setfacl 進行 Wireshark USB 監控的 Linux 檔案權限

透過 setfacl 進行 Wireshark USB 監控的 Linux 檔案權限

根據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 內的解釋引起的?

相關內容