우분투:에러
우분투와 관련한 기능들을 담은 지식.틀:우분투 우분투 고유의 기능들을 담아보고 리눅스 전체적으로 사용할 수 있는 건 틀:리눅스에서 다뤄보자.
System policy prevents WiFi scans
위 메시지가 반복해 뜨면서 취소를 해도, 암호를 입력해도 사라지지 않는다. 우분투 20.04 중에서도 이더넷 카드 하나와 무선카드 하나가 있는 노트북에서 제보되는 에러다. 그리고 원격 GUI 조작을 할 때 제보되었다.
정책파일을 만드는 것으로 해결된다.
- In terminal, run
sudo su -
cd /etc/polkit-1/localauthority/50-local.d
nano 10-network-manager.pkla
Then paste in the following:
[Allow wi-fi scans for all users]
Identity=unix-user:*
Action=org.freedesktop.NetworkManager.wifi.scan
ResultAny=yes
ResultInactive=yes
ResultActive=yes
- Save and exit using
CTRL+X
andy
service network-manager restart
Color Profile
색상 프로파일 설정. 원격접속 시 계속 뜨는 메시지이다.(지겨워)
- cd /etc/polkit-1/localauthority/50-local.d/
- sudo nano /etc/polkit-1/localauthority/50-local.d/color.pkla
- # 아래 내용 입력
[Allow colord for all users]
Identity=unix-user:*
Action=org.freedesktop.color-manager.create-device;org.freedesktop.color-manager.create-profile;org.freedesktop.color-manager.delete-device;org.freedesktop.color-manager.delete-profile;org.freedesktop.color-manager.modify-device;org.freedesktop.color-manager.modify-profile
ResultAny=yes
ResultInactive=yes
ResultActive=yes