Example of installing tightvncserver on Ubuntu 17.04 LTS using the command sudo apt-get install tightvncserver.
Ads
Quick installation of tightvncserver:
Step 1: Update system:
sudo apt-get update
Step 2: Install: tightvncserver
Ater updaing the OS run following command to install the packae:
sudo apt-get install tightvncserver
Package Details | |
Package: | tightvncserver |
Version: | 1.3.10-0ubuntu3 |
Maintainer: | Ubuntu Developers |
Home page: | http://www.tightvnc.com |
Description: | virtual network computing server software VNC stands for Virtual Network Computing. It is, in essence, a remote display system which allows you to view a computing `desktop' environment not only on the machine where it is running, but from anywhere on the Internet and from a wide variety of machine architectures. . This package provides a server to which X clients can connect and the server generates a display that can be viewed with a vncviewer. . The difference between the tightvncserver and the normal vncserver is the data encoding, optimized for low bandwidth connections. If the client do not support jpeg or zlib encoding it can use the default one. Later versions of vncserver (> 3.3.3r2) support a new automatic encoding that should be equally good as the tightvnc encoding. . Note: This server does not support or need a display. You need a vncviewer to see something. However, this viewer may also be on a computer running other operating systems in the local net. |
Distro: | Ubuntu 17.04 |
Release: | |
Repo/Section: | universe/x11 |
First of all update your system with the command:
sudo apt-get update
Ads
Above command will download the package lists for Ubuntu 17.04 on your system. This will update the list of newest versions of packages and its dependencies on your system.
After downloading the latest package list with the help of above you can run the installation process.
If tightvncserver is not installed on your compter then the command 'dpkg -L tightvncserver' will give followin error.
Installing tightvncserver:
After system update use the following command to install tightvncserver:
sudo apt-get install tightvncserver
Above command will confirm before installing the package on your Ubuntu 17.04 Operating System. If you are not already logged in as su, installer will ask you the root password. After completion of the installation you can use the package on your system.
Now we will see the commands for uninstalling the tightvncserver from Ubuntu 17.04. For uninstalling this package you can easily use the apt command and remove the package from Linux Operating System.
To remove the tightvncserver following command is used:
sudo apt-get remove tightvncserver
Following command is used to remove the tightvncserver package along with its dependencies:
sudo apt-get remove --auto-remove tightvncserver
This will remove tightvncserver and all its dependent packages which is no longer needed in the system.
Completely removing tightvncserver with all configuration files:
Following command should be used with care as it deletes all the configuration files and data:
sudo apt-get purge tightvncserver
or you can use following command also:
sudo apt-get purge --auto-remove tightvncserver
Above command will remove all the configuration files and data associated with tightvncserver package. You can can't recover the delete data, so, use this command with care.