Reputation: 115
So when I connect my computer through vnc, the host computer displays the resolution of 640x480. Going to screen resolution, the display is set to "display device on: Mobile PC Display" the host computer is not plugged into a monitor but that should not even matter, as I am connected using vnc using a tightvnc client.
Any help or advice would be appreciated.
Upvotes: 7
Views: 37137
Reputation: 98
I am on a Ubuntu 20.04 machine and use TightVNC. I start VNC server with geomtry option specifying a screen size slightly smaller than my full screen on client.
$ tightvncserver -geometry 1680x1050 -depth 24
The version of vncserver is given as
$ tightvncserver -version
Xvnc version TighVNC-1.3.10
Upvotes: 5
Reputation: 181
if your problem is "default monitor", you can change the minimum resolution on boot/configure.txt
uncomment :
# uncomment to force a console size. By default it will be display's size minus
# overscan.
framebuffer_width=1280
framebuffer_height=720
Upvotes: 1
Reputation: 2036
You need to specify the resolution when you start the tightvnc session on the server
tightvncserver -geometry WIDTHxHEIGHT -depth XX :1
Upvotes: 1