I've set up Screen sharing on my Ubuntu 18.04, and VPN'd into my network remotely from my Mac. However when entering the correct vnc://... from Screen Sharing on my Mac, I get a message saying that the software on the remote machine is incompatible with this version of Screen Sharing on Mojave. However I've read online that this works. I've had tons of issues with TightVNC, just couldn't get it to work, kept on getting grey screens no matter what I tried
Asked
Active
Viewed 7,093 times
2 Answers
4
In the end I just had to disable encryption.
sudo gsettings set org.gnome.Vino require-encryption false
As a bonus note, you can check the value of require-encryption via the command:
gsettings list-recursively org.gnome.Vino | grep encrypt
To know more, this site is helpful: https://linuxconfig.org/ubuntu-remote-desktop-18-04-bionic-beaver-linux
Stefan Lasiewski
- 4,224
Ramonster
- 171
- 1
- 7
2
Quoting from somewhere.
- First make sure Desktop Sharing is set up properly.
- Download dconf-tools by typing in Terminal sudo apt-get install dconf-tools
- Run dconf-editor
- Expand org
- Expand gnome
- Expand desktop
- Select remote-access
- Uncheck require-encryption (don't click on Set to Default as it rechecks it)
- Exit dconf-editor
Ishant Dave
- 21