Installing Real VNC on RHEL

Red Hat-compatible Linux

The following instructions are valid for CentOS 5 running the GNOME desktop environment. Instructions may differ slightly for
different versions of CentOS, and versions of Fedora or Red Hat Enterprise, running different desktop environments, but the
principle is the same. If in doubt, consult the operating system documentation.

Downloading VNC

Download a VNC for Linux Red Hat-compatible tarball to the computer you want to control. VNC Server and VNC Viewer are
included as separate installable packages.

Note: VNC Viewer is freely available to download to as many other computers that you wish to exercise control from as you like.

Installing VNC

If the computer on which you are installing is currently connected to the Internet, follow the appropriate instructions below. If it is
not connected to the Internet, first obtain and install xterm and all its dependencies.

Using desktop tools

To install VNC Server, open <VNC Server>.rpm using a suitable package manager, and follow the instructions. Note the
credentials of a user with administrative privileges on the computer are required. To install VNC Viewer, repeat this operation for
<VNC Viewer>.rpm

At the command line

Installing at the command line or via SSH may be quicker and more convenient providing defaults are acceptable. To do this, run
the following command as a user with administrative privileges:

rpm -U <VNC Server>.rpm <VNC Viewer>.rpm

Licensing VNC Server

VNC Server must be licensed. If it is not, users cannot connect. Use FRHR2-A43DY-2NAQ2-7B2QT-FZ2GA

Note: VNC Viewer does not require a license key.

Using desktop tools

To obtain and apply a new license key, start VNC Server in User Mode, open the VNC Server dialog, and either follow the
instructions in the VNC Server is not licensed error, or select More > Licensing.

At the command line

Obtain a new license key, and then run the following command as a user with administrative privileges:

vnclicense -add FRHR2-A43DY-2NAQ2-7B2QT-FZ2GA

Similar Posts

  • RHEL 6 Install Info

    Bios Settings on HPZ420 Enter BIOS and change the following settings: Storage                 Storage options                                 SATA Mode ==> IDE                 Boot Order                                 UEFI Boot Sources ==> Disable All                                 Legacy Boot Sources ==> Enable All Installing RHEL 6.3 Prerequisites You will need: The RHEL 6.3 Installation DVD and license from RedHat (you need the Workstation…

  • RHEL 6 NFS

    Ensuring NFS Services are running on RHEL 6 The first task is to verify that the NFS services are installed and running on your RHEL 6 system. This can be achieved either from the command line, or using the graphical services tool. Begin by confirming that the NFS service is installed by running the following command from a…

  • Mount Windows Share on RHEL

    In CLI    mount -t cifs //ntserver/dir -o username=user,password=pass /mnt/ntserver    In /etc/fstab    //ntserver/dir   /mnt/ntserver   cifs   credentials=/root/.smbpasswd,file_mode=0777,dir_mode=0777   0   0 Then create a file /root/.smbpasswd  with permissions set to 600    username=user    password=pass In /etc/hosts add IP address of ntserver.   

  • Transfer data between RHEL and Solaris

    Transfer Data between RHEL and Solaris On SUN: in /etc/dfs/dfstab file addshare -F nfs /export/homethen type:/etc/init.d/nfs.server start On RHEL: to mounttype mount host:/export/home /mnt/sundisk Or in /etc/fstab host:/export/home /home/sundisk nfs defaults 0 0 Then type mount /home/sundisk Or type mount -aTo make nfs start at boot type: chkconfig nfs on to sharein file /etc/exports add/home/vnmr1…