Gnome Shell 및 GDM에서 일시 중지/다시 시작/전원 끄기... 메뉴를 제거해야 합니다.
저는 설정, Gnome Tweaks, Dconf Editor를 사용해 보았지만 제가 알 수 있는 한 아무것도 찾지 못했습니다.
Polkit conf 파일 가져오기를 시도했지만 동일한 결과를 얻었습니다.
polkit.addRule(function(action, subject) {
if (action.id == "org.freedesktop.login1.power-off" ||
action.id == "org.freedesktop.login1.reboot" ||
action.id == "org.freedesktop.login1.hibernate" ||
action.id == "org.freedesktop.login1.suspend") {
return polkit.Result.NO;
}
});
어떤 단서가 있나요?
물어봐주셔서 감사해요
답변1
1) 사용자별 Gnome Shell 구성의 경우, 현재 다음과 같은 사용자 정의 가능한 확장이 해당 작업을 잘 수행하는 것 같습니다.https://extensions.gnome.org/extension/2917/bring-out-submenu-of-power-offlogout-button/
2) GDM 레벨의 경우, 다음과 같은Florian Müllner의 2013년 버그 보고서회신하다
# cat > /etc/dconf/db/gdm.d/99-site-settings <<EOT
>[org/gnome/login-screen]
>disable-restart-buttons=true
>EOT
# dconf update
# systemctl restart gdm.service
해당 섹션을 제거 Suspend / Restart
하지만 비활성화하기도 합니다 Power Off
.
요약하면 /etc/dconf/db/gdm.d/99-site-settings
다음 내용으로 파일을 만듭니다.
[org/gnome/login-screen]
disable-restart-buttons=true
그런 다음 를 실행 dconf update
하고 따르십시오 systemctl restart gdm.service
. 후자의 명령은 Gnome 세션을 다시 시작합니다.
그럼 제안대로그놈 토론 사이트, 명령 후에 무슨 일이 일어나는지 생각해 보는 것이 좋습니다 ctrl-alt-del
. 이를 달성하기 위해 디렉토리를 생성 /etc/systemd/system.conf.d/
하고 그 안에 파일을 생성하여 10-suppress-ctraltdel.conf
구현했습니다./etc/systemd/system.conf를 덮어쓰는 방법은 무엇입니까?답변하여 내용으로 입력
[Manager]
CtrlAltDelBurstAction=none
대신 none
다른 옵션이 설명되어 있지만여기.