wicd를 사용하는 경우 NetworkManager 애플릿을 어떻게 제거합니까?

wicd를 사용하는 경우 NetworkManager 애플릿을 어떻게 제거합니까?

나는 기본적으로 Debian 10(Buster)과 동일한 Devuan GNU/Linux 3(Beowulf) 시스템에서 Cinnamon을 실행하고 있습니다.

내 배포판은 네트워크 연결 관리를 위해 wicd 데몬을 사용합니다. 패널에 작은 프로그램이 있습니다. 하지만 필요하지는 않지만 NetworkManager 애플릿도 있습니다. 없애려고 노력하고 있지만 방법을 모르겠습니다. 존재하는 구성 위치를 찾지 못했고 실행을 피할 수 있는 자체 별도 프로세스도 아닌 것 같습니다.

이 애플릿을 제거하려면 어떻게 해야 합니까?

여기에 이미지 설명을 입력하세요.
원하지 않는 것:"US" 오른쪽에 있는 작은 프로그램인 NetworkManager입니다.
보관하고 싶은 것:wicd, 시계 왼쪽에 있는 작은 프로그램입니다.

답변1

제안 된 해결책위키피디아——이것은 단지 암송일 뿐입니다.


즉, nm-applet 패키지는 cinnamon의 필수 부분이므로 제거할 수 없지만 사용자 정의 cinnamon 구성을 생성하여 로드를 억제할 수 있습니다.

cp /etc/xdg/autostart/nm-applet.desktop ~/.config/autostart/nm-applet.desktop

그리고 행을 추가

X-GNOME-Autostart-enabled=false

또는 명령 자체를 재정의하여 이를 방지합니다.

ln -s /bin/true /usr/local/bin/nm-applet

usr/local/bin이 경우에는 물론 의 표준 위치보다 앞에 있어야 한다는 점은 주목할 가치가 있습니다 .nm-appletPATH

답변2

이에 의존한다면 네트워크 관리자 서비스를 비활성화 wicd하고 자동 시작을 비활성화하는 것이 좋습니다 nm-applet.

$ sudo systemctl disable network-manager.service 
$ sudo echo "Hidden=true" >> /etc/xdg/autostart/nm-applet.desktop 

건조 모드에서 .desktop 파일의 자동 시작 구성을 확인할 수도 있습니다 dex(이 작업을 먼저 수행해야 할 수도 있음 sudo apt install dex).

$ dex -ad 

...
Executing command: gsettings-data-convert
Executing command: light-locker --late-locking
Executing command: /usr/lib/gnome-settings-daemon/gsd-a11y-settings
Executing command: /usr/lib/gnome-settings-daemon/gsd-color
Executing command: /usr/lib/gnome-settings-daemon/gsd-datetime
Executing command: /usr/lib/gnome-disk-utility/gsd-disk-utility-notify
Executing command: /usr/lib/gnome-settings-daemon/gsd-housekeeping
Executing command: /usr/lib/gnome-settings-daemon/gsd-keyboard
Executing command: /usr/lib/gnome-settings-daemon/gsd-media-keys
Executing command: /usr/lib/gnome-settings-daemon/gsd-power
Executing command: /usr/lib/gnome-settings-daemon/gsd-print-notifications
Executing command: /usr/lib/gnome-settings-daemon/gsd-rfkill
Executing command: /usr/lib/gnome-settings-daemon/gsd-screensaver-proxy
Executing command: /usr/lib/gnome-settings-daemon/gsd-sharing
Executing command: /usr/lib/gnome-settings-daemon/gsd-smartcard
Executing command: /usr/lib/gnome-settings-daemon/gsd-sound
Executing command: /usr/lib/gnome-settings-daemon/gsd-wacom
Executing command: /usr/lib/gnome-settings-daemon/gsd-wwan
Executing command: /usr/lib/gnome-settings-daemon/gsd-xsettings
...

wpa_supplicant.confkey-mgmt에 대한 터미널 편집을 포함하여 Wi-Fi 연결 구성에 정통하지 않은 경우 nm-applet래퍼 실행 파일 자체에서 네트워크 관리자의 GUI를 조작해서는 안 됩니다 /usr. 어떤 이유로 설치가 wicd중단되는 경우(사용자 버그, 놀라움, 업데이트의 버그 등) 대체용으로 GUI를 network-manager포함한 모든 패키지 파일이 여전히 있으므로nm-appletapt update && apt [install/upgrade/full-upgrade]

관련 정보