vnc를 설치하고 polkit을 추가한 후 사용자를 추가할 수 없는 이유는 무엇입니까? polkit을 제거하면 콘솔에서 사용자를 추가할 수 있지만 rdp가 작동하지 않습니다. 도와주세요.
캡쳐한 내용은 다음과 같습니다.
Windows에서 우분투 18.04, 메이트 데스크톱, vnc 서버 RDP를 사용하고 있습니다.
이것은 내 폴킷입니다.
polkit.addRule(function(action, subject) {
if ((action.id == “org.freedesktop.color-manager.create-device” || action.id ==
“org.freedesktop.color-manager.create-profile” || action.id == “org.freedesktop.
color-manager.delete-device” || action.id == “org.freedesktop.color-manager.dele
te-profile” || action.id == “org.freedesktop.color-manager.modify-device” || act
ion.id == “org.freedesktop.color-manager.modify-profile”) && subject.isInGroup(“
sudo”))
{
return polkit.Result.YES;
}
});
감사해요
@roaima 이게 무슨 뜻인가요? 당신의 답변에 감사드립니다
polkit.addRule(function(action, subject) { if ((action.id == "org.freedesktop.color-manager.create-device" || action.id == "org.freedesktop.color-manager.create-profile" || action.id == "org.freedesktop.color-manager.delete-device" || action.id == "org.freedesktop.color-manager.delete-profile" || action.id == "org.freedesktop.color-manager.modify-device" || action.id == "org.freedesktop.color-manager.modify-profile") && subject.isInGroup("{sudo}")) { return polkit.Result.YES; } });