Wednesday, April 29, 2020

installing VNC Server Tightvncserver On Ubuntu 20.04 LTS Desktop

Video Tutorial -  https://youtu.be/oHm7B3hRSP0

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

VNC is a graphical-based tool that can help you to control a computer remotely. This Tutorials shows you how to setup and configure VNC on a Ubuntu 20.04 Desktop machine.
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Our Server Specification:-
Os : Ubuntu 20.04 LTS (focal fossa) 64Bit   |  Hostname: www.yourdomain.com   |  IP Address of Server:192.168.1.50
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
lsb_release -cd  ; getconf LONG_BIT ; hostname ; hostname -I && apt install -y build-essential net-tools curl git software-properties-common

sudo apt install xfce4 xfce4-goodies tightvncserver
vncserver
vncserver -kill :1
mv ~/.vnc/xstartup ~/.vnc/xstartup.bak
nano ~/.vnc/xstartup
#!/bin/bash
xrdb $HOME/.Xresources
startxfce4 &
chmod +x ~/.vnc/xstartup
vncserver

netstat -tlnp
VNC viewer - http://www.uvnc.com/downloads/ultravnc.html

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

No comments:

Post a Comment