ubuntuで、「認証が必要です。システムポリシーによりwi-fiスキャンが阻止されます」が繰り返される。それへの対処
参考にしたサイト
対処
以下の内容を /etc/polkit-1/localauthority/ 配下の pklaファイルとして作成記述
[Allow Colord all Users]
Identity=unix-user:*
Action=org.freedesktop.color-manager.create-device;org.freedesktop.color-manage>
ResultAny=no
ResultInactive=no
ResultActive=yes
[Allow Package Management all Users]
Identity=unix-user:*
Action=org.debian.apt.*;io.snapcraft.*;org.freedesktop.packagekit.*;com.ubuntu.>
ResultAny=yes
ResultInactive=yes
ResultActive=yes
[Allow WiFi Scan all Users]
Identity=unix-user:*
Action=org.freedesktop.NetworkManager.wifi.scan
ResultAny=yes
ResultInactive=yes
ResultActive=yes
私の場合は、まとめて以下で作ってしまった。
sudo nano /etc/polkit-1/localauthority/50-local.d/45-allow-colord.pkla
反映
sudo systemctl restart NetworkManager
Leave a Comment