우분투:에러
둘러보기로 이동
검색으로 이동
우분투와 관련한 기능들을 담은 지식.틀:우분투 우분투 고유의 기능들을 담아보고 리눅스 전체적으로 사용할 수 있는 건 틀:리눅스에서 다뤄보자.
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[편집 | 원본 편집]
색상 프로파일 설정. 원격접속 시 계속 뜨는 메시지이다.(지겨워)
- 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
authentication is required to refresh the system repositories[편집 | 원본 편집]
우분투 19.10이후에서 제보되는 에러. xRDP 때문인 듯하다.
과정 | 설명 | 방법 |
---|---|---|
파일 생성 | 아래 내용을 파일 안에 넣어준다.[Allow Package Management all Users]
Identity=unix-user:*
Action=org.freedesktop.packagekit.system-sources-refresh
ResultAny=yes
ResultInactive=yes
ResultActive=yes
|
sudo nano /etc/polkit-1/localauthority/50-local.d/46-allow-update-repo.pkla
|