tigervncpasswd command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
tigervncpasswd: command not found
or when using sudo you get the following error message
sudo: tigervncpasswd: command not found
Solutions to tigervncpasswd: command not found
How To Fix tigervncpasswd: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu tigervncpasswd is provided by tigervnc-tools package.
tigervnc-tools is:
VNC stands for Virtual Network Computing. It is, in essence, a remote display system that 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. For this purpose, it implements a client/server model.
This package provides the vncpasswd tool.
To fix this problem, we can install more using the command below.
sudo apt-get -y install tigervnc-tools
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install tigervnc-tools.
sudo apt -y install tigervnc-tools
Or if you have aptitude installed you can use the following command.
sudo aptitude install tigervnc-tools
Summary
In this tutorial we learn how to fix tigervncpasswd command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.