Virtual Networking Computing (VNC) is a kind of remote sharing system that makes it possible to take control of any other computer connected to the internet. Keyboard and mouse clicks can easily transmit from one computer to another. It helps administrators and technical staff to manage their servers and desktops without being to the same location physically.
VNC is an open-source application created in the late 1990s. It is independent and is compatible with Windows and Unix/Linux. This means a normal Windows-based user can interact with Linux based system without any hazel.
[ You might also like: 11 Best Tools to Access Remote Linux Desktop ]
To use VNC you must have a TCP/IP connection and a VNC viewer client to connect to a computer running the VNC server component. The server transmits a duplicate display of a remote computer to the viewer.
This article demonstrates how to install VNC Server using TightVNC a much-enhanced version of an older VNC program, with remote desktop access on RHEL-based Linux distributions and Debian-based distros.
Step 1: Installing the Desktop Environment
If you’ve installed a minimal version of the operating system, which gives only a command-line interface not GUI. Therefore, you need to install a GUI (Graphical User Interface) called GNOME or XFCE desktop which works very well on remote VNC access.
$ sudo dnf groupinstall "Server with GUI" [On RHEL/CentOS/Fedora and Rocky Linux/AlmaLinux] OR $ sudo apt install xfce4 xfce4-goodies [On Debian, Ubuntu and Mint]
Step 2: Installing TightVNC Server
TightVNC is a remote desktop control software that enables us to connect to remote desktops. To install, use the following yum command as shown below.
$ sudo yum -y install tigervnc-server xorg-x11-fonts-Type1 [On RHEL/CentOS/Fedora and Rocky Linux/AlmaLinux] $ sudo apt install tightvncserver [On Debian, Ubuntu and Mint]
Step 3: Create a Normal VNC User
Create a normal user, that will be used to connect to a remote desktop. For example, I’ve used “tecmint” as a user, you can choose your own username.
$ sudo useradd tecmint OR $ sudo adduser tecmint $ sudo passwd tecmint
Step 4: Set VNC Password for User
First, switch to the user using (su – tecmint) and run ‘vncpasswd‘ to set the VNC password for the user.
Note: This password is for accessing VNC remote desktop, and the password we created in step 3 is for accessing the SSH session.
[root@tecmint ~]# su - tecmint [tecmint@tecmint ~]$ vncpasswd Password: Verify:
The above command asks you to supply a password twice and creates the “.vnc” directory under the user’s home directory with a passwd file inside it. You can check the password file is created, by using the following command.
# ls -l /home/tecmint/.vnc -rw------- 1 tecmint tecmint 8 Jul 14 21:33 passwd
If you are adding another user, just switch to the user and add the vnc password with the vncpasswd command.
Step 5: Configure VNC for Gnome
Here, we will configure TigerVNC to access Gnome using the user configuration settings from the ~/.vnc/config file.
$ vim ~/.vnc/config
Add the following configuration to it.
session=gnome geometry=1920x1200 localhost alwaysshared
The session parameter defines the session you want to access, and the geometry parameter adds the resolution of the VNC desktop.
Now exit from user login and return to root user login.
$ exit
TigerVNC comes with default configuration settings that allow you to map a user to a specific port in the /etc/tigervnc/vncserver.users file:
# vim /etc/tigervnc/vncserver.users
The configuration file uses <display_port>=<username>
parameters. In the following example, we are assigning display port :1
to user tecmint.
# This file assigns users to specific VNC display numbers. # The syntax is =. E.g.: # # :2=andrew # :3=lisa :1=tecmint
If you are adding another user, just set the display port to :2
followed by the username.
Step 6: Starting the Tigervnc Server
After making all changes, run the following command to start the VNC server. Before starting the VNC session with a “tecmint” user, let me give you a small intro about Port Numbers and ids.
By Default VNC runs on Port 5900 and ID:0 (which is for the root user). In our scenario, I’ve created tecmint, ravi, Navin, and avishek. So, the ports and id’s are used by these users as follows
User's Port's ID's 5900 root :0 5901 tecmint :1 5902 ravi :2 5903 navin :3 5904 avishek :4
So, here user “tecmint” will get port 5901 and id as :1 and so on. If you’ve created another user says (user5) then he will get port 5905 and id:5 and so on for each user you create.
To start and enable the VNC service for the user assigned to the display port :1
, enter:
# systemctl start vncserver@:1 --now # systemctl enable vncserver@:1 --now
You can confirm that the VNC service is successfully started with:
# systemctl status vncserver@:1
To allow VNC access for other users, simply replace 1
with the display port number.
Step 7: Open VNC Ports on Firewall
Open port on iptables, firewalld or ufw, say for the user (tecmint) at 5901.
# iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 5901 -j ACCEPT OR # firewall-cmd --zone=public --add-port=5901/tcp OR $ sudo ufw allow 5901/tcp
For multiple users, ravi, navin, and avishek. I open ports 5902, 5903, and 5904 respectively.
# iptables -I INPUT 5 -m state --state NEW -m tcp -p tcp -m multiport --dports 5902:5904 -j ACCEPT OR # firewall-cmd --zone=public --add-port=5902-5904/tcp OR $ sudo ufw allow 5901:5910/tcp
Restart Iptables service.
# service iptables save # service iptables restart Or # firewall-cmd --reload # systemctl restart firewalld
Step 8: Download VNC Client
Now go to your Windows or Linux machine and download the VNC Viewer client and install it in your system to access the desktop.
Step 9: Connect to Remote Desktop Using Client
After you installed the VNC Viewer client, open it you’ll get something similar to the below screen. Enter VNC Server IP address along with VNC ID (i.e 1) for user tecmint.

Enter the password that we created with the “vncpasswd” command.

That’s it, you connected to your Remote Desktop.

[ You might also like: How to Access Remote VNC Desktop from Web Browser Using TightVNC Java Viewer ]
Hello,
This is not really TightVNC but TigerVNC. I wanted TightVNC to be able to only share one application and not the whole desktop.
Do you know how to do it with TigerVNC ?
Kindly
i have create some video tutorial about this,
your article is my source,
thnk’s a lot
this is my video
http://youtu.be/N2UnYy2kdnk
@Antechno,
Are you taken written permission from us before creating videos from our articles? this is against our copyright violation..I request you to remove article either give proper credit to original article..
hi i did all steps and try start the service get this error
/etc/init.d/vncserver start
plymouth: ply-event-loop.c:493: ply_event_loop_new: Assertion `loop->epoll_fd >=
0′ failed.
/etc/init.d/functions: line 543: 28173 Aborted /bin/plymouth –d
etails
system: centos6.4
please help sending me crazy
Thanks for great efforts. It working great. Can you tell us how to uninstall it properly?
Above steps seems to be quite complicated. I would recommend using a RHUB remote support servers for remotely accessing computers. It is easy to use.
hi
my problem is in step 5
when i try to open commend : /etc/init.d/vncserver start
this error showing :
Starting VNC server: no displays configured [FAILED]
on centos-6-x86
Please configure display in vnc configuration..
I have the same issue”no displays configured [FAILED]”. So could you tell the step to configure Display in VNC Configuration?
Thanks
Just do step 6 before you do step 5.
Worked for me thanks!! :)
after “/etc/init.d/vncserver start” vncserver listen in 127.0.0.1:5902
how to specify vncserver listen ip.
Oh Boy ! ***************************************************************
Close but no cigar…
@ Ravi
1st, at the end of step 5, you write:
“Once, it created, set a desktop resolution in xstartup file. For this, you must stop running VNC service.”
The at the beginning of step 6 you go:
Open file “/etc/sysconfig/vncservers” file your choice of editor. Here I’m using “nano” editor. Create new VNC Session for “tecmint” with below command. where “-geomerty” is used define desktop resolution.
??? Ambiguous file references ???
In xstartup in the user’s home directory or in /etc/sysconfig/vncservers do we add the Resolution setting code ?
2nd, This is ok for sysint and iptables. If, like the gentlemen named Matheis, as of the date of publication of this article, one would be using an advance distribution like Fedora 18, out Jan 15 2013 this article is already old school.
With systemd and firewalld, most of this nice try does not work.
MotherDawg
Aka: NetWeezurd
Hey my fedora too required me to tweak around the systemd. Could you create a page with how to set up vnc with config files under systemd
I have installed VNC as per above tutorial
now Vnc viewer is asking for session password after keeping the server in idel conditins for some time..when i entered the login password its not working
kindly suggest what can be done