linuxvnc command not found

In this troubleshooting guide we learn how to fix linuxvnc command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

linuxvnc: command not found

or when using sudo you get the following error message

sudo: linuxvnc: command not found

Solutions to linuxvnc: command not found

How To Fix linuxvnc: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu linuxvnc is provided by linuxvnc package.

linuxvnc is:

linuxvnc can export your currently running text sessions to any VNC client. It can be useful if you want to move to another computer without having to log out or to help a distant colleague solve a problem.

To fix this problem, we can install more using the command below.

sudo apt-get -y install linuxvnc

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install linuxvnc.

sudo apt -y install linuxvnc

Or if you have aptitude installed you can use the following command.

sudo aptitude install linuxvnc

Summary

In this tutorial we learn how to fix linuxvnc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.