What is the difference between xtightvncviewer and vncviewer?
These two commands seem to do the same thing on Ubuntu and answer to the -version option as TightVNC Viewer version 1.3.9.
tightvncUbuntu
What is the difference between xtightvncviewer and vncviewer?
These two commands seem to do the same thing on Ubuntu and answer to the -version option as TightVNC Viewer version 1.3.9.
Best Answer
vncviewer
is a virtual package that is only provided byxtightvncviewer
.They're (currently) the same thing.
To double-check, let's look at the files themselves:
So,
vncviewer
is just a placeholder in the system for whatever package you install that provides a vncviewer. In this case there is only one optionxtightvncviewer
.There are several virtual packages. They are defined by the
Provides:
setting defined in other packages. The best list of virtual packages I found is this one: http://www.debian.org/doc/packaging-manuals/virtual-package-names-list.txtVirtual packages are very useful for package maintainers. You can create your own package and say "If you want to use this package, you'll need another package that provides an
ftp-server
." The package doesn't care which one, as long as you installed a package that provides anftp-server
.