X11VNC: Difference between revisions
Jump to navigation
Jump to search
Line 110: | Line 110: | ||
* [https://support.starlabs.systems/kb/guides/change-display-manager X11vnc » LightDM » Change Display Manager] | * [https://support.starlabs.systems/kb/guides/change-display-manager X11vnc » LightDM » Change Display Manager] | ||
* [https://askubuntu.com/questions/1029015/ X11vnc » GDM3 New x11 Display After Login] | * [https://askubuntu.com/questions/1029015/ X11vnc » GDM3 New x11 Display After Login] | ||
* [https://techcraft.co/videos/2022/5/mobile-kali-ipad-setup-with-raspberry-pi-4/ X11vnc » RPi4 » KaliLinux » Desktop Setup] | |||
* [https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-vnc-on-ubuntu-22-04 Install and Configure VNC on Ubuntu 22.04] | * [https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-vnc-on-ubuntu-22-04 Install and Configure VNC on Ubuntu 22.04] | ||
* [https://techcraft.co/videos/2022/4/ubuntu-desktop-on-ipad-raspberry-pi-4-setup/ X11vnc » RPi4 » Ubuntu » Desktop Setup] | * [https://techcraft.co/videos/2022/4/ubuntu-desktop-on-ipad-raspberry-pi-4-setup/ X11vnc » RPi4 » Ubuntu » Desktop Setup] |
Revision as of 05:48, 3 December 2023
sudo apt update
sudo apt install lightdm
sudo init 6
sudo apt install x11vnc
sudo mkdir -p /etc/x11vnc/x11pass
sudo x11vnc -storepasswd /etc/x11vnc/x11pass/${USER}
sudo cat /etc/x11vnc/x11pass/${USER}
sudo tee /lib/systemd/system/x11vnc.service >/dev/null <<'EOF'
[Unit]
Description=x11vnc service
After=display-manager.service network.target syslog.target
[Service]
Type=simple
ExecStart=/usr/bin/x11vnc -forever -display :0 -auth guess -passwd my-password
ExecStop=/usr/bin/killall x11vnc
Restart=on-failure
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable --now x11vnc.service
sudo systemctl status x11vnc.service
sudo journalctl -xeu x11vnc.service
ps wwwwaux|grep auth
Playground
sudo sed -z "s|#WaylandEnable=false|WaylandEnable=false|" -i\ /etc/gdm3/custom.conf ls -la /etc/lightdm/ |
cat /etc/X11/default-display-manager sudo dpkg-reconfigure lightdm sudo dpkg-reconfigure gdm3 | |
| ||
ls -lah /lib/systemd/system|grep gdm systemctl status gdm ls -la /etc/gdm3/ |
sudo ps -efc | grep Xauthority sudo ps -efc | grep gnome sudo ps -efc | grep gdm |
sudo ls -la /run/user sudo ls -la /etc/gdm3/Init/ sudo ls -la /run/user/1000/gdm |
| ||
w -us ls -la /tmp/.X11-unix/ ls /tmp/.X11-unix|tr 'X' ':' |
loginctl --no-legend loginctl --no-legend|awk '{print $1}' ps -C gnome-shell -o lsession,pid,user,args |
loginctl show-session c1 loginctl show-session c1|grep Type=x11 loginctl show-session c1|grep Active=yes |
| ||
ps -C x11vnc u xdg-screensaver lock sh -c 'xdg-screensaver lock' |
sudo apt install xrdp sudo systemctl status xrdp sudo systemctl enable --now xrdp |