Even if I connected it for a long time, the screen was black, so I had a memorandum.
The cause is that if there is an existing login session, I can not log in and the screen goes black, but I feel that it does not come unexpectedly.
So if you can't enter with pkill gnome-session
, it doesn't make sense to follow the steps below.
I've listed what seems to be necessary for the time being, but it may not be necessary or there may be a shortage, so it's appropriate.
xrdp
if xrdp
is not included3389
port
sudo ufw allow 3389
sudo sed -ie 's/AutomaticLoginEnable=true/AutomaticLoginEnable=false/' /etc/gdm3/custom.conf
sudo reboot
It seems that the unlock login key ring
dialog will not appear if this is played, but it has not been verified.
cat > /etc/polkit-1/localauthority/50-local.d/45-allow-colord.pkla <<EOF
[Allow Colord 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=no
ResultInactive=no
ResultActive=yes
EOF
cat > /etc/polkit-1/localauthority/50-local.d/46-allow-update-repo.pkla<<EOF
[Allow Package Management all Users]
Identity=unix-user:*
Action=org.freedesktop.packagekit.system-sources-refresh
ResultAny=yes
ResultInactive=yes
ResultActive=yes
EOF
Recommended Posts