Remote Desktop Ubuntu 22.04

7 months ago
22

In this video I go over how to install and get started with a VNC server and
viewer on Ubuntu Mate 23.04. The server is Vino while the viewer is Vinagre.
More information can be found on the Ubuntu Mate version of the video: https://www.bitchute.com/video/e4rxSEXVE9IS/

The script I used is listed below:
#!/bin/bash
gsettings set org.gnome.Vino prompt-enabled false
gsettings set org.gnome.Vino authentication-methods "['vnc']"
gsettings set org.gnome.Vino vnc-password $(echo -n 'test' | base64)
/usr/lib/vino/vino-server
exit 0

Loading comments...