Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

vnc server cannot apply subscription

Tags:

ubuntu

vnc

I installed VNC server on my Ubuntu 18.04 pc, however I cannot enable the cloud connectivity. As per the docs I need to run commands with sudo to start the VNC server in service mode. So I tried this command:

sudo systemctl enable vncserver-x11-serviced.service

But when I try to login to the VNC server desktop application, it says "Administrative privileges are required for this operation"

What am I doing wrong here?

Thanks

like image 863
Baker Street Avatar asked Jan 27 '23 23:01

Baker Street


1 Answers

You need to tell VNC what the email address / credentials are to use

The tool to download is VNC Connect here. Download this and run the .deb file on the laptop.

Once installed, from the command line run

sudo vnclicensewiz

This starts the gui where you enter your RealVNC account details.

You then need to start the server on the laptop. Test it with

sudo systemctl start vncserver-x11-serviced.service

starting the service temporarily.

To start the service on every boot, do

sudo systemctl enable vncserver-x11-serviced.service
like image 161
Noel Evans Avatar answered Jan 30 '23 12:01

Noel Evans