12

I was trying to setup a remote desktop solution for an Ubuntu virtual machine running version 22.04 LTS, installed on a Mac Mini that I now use as a home server. However, after I installed TeamViewer host and granted easy access, Ubuntu is still prompting for permission each time I try to connect.

The prompt is titled "Remote Desktop" and says "Select monitor to share with the requesting application" with a toggle to "Allow remote interaction."

Does anyone know how to suppress this prompt?

The Prompt In Question

Pablo Bianchi
  • 17,371
Fluffy
  • 123

2 Answers2

13

In order to switch to X11:

  1. Edit the gdm config:

    sudo nano /etc/gdm3/custom.conf
    
  2. Uncomment

    "WaylandEnable=false"
    

and reboot.

Ali
  • 231
5

It looks like you need to switch to X11 rather than Wayland for graphics. See this article.

I've just switch back to X11 and logged in without a problem.

Pablo Bianchi
  • 17,371