wayvnc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
wayvnc: command not found
or when using sudo you get the following error message
sudo: wayvnc: command not found
Solutions to wayvnc: command not found
How To Fix wayvnc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu wayvnc is provided by wayvnc package.
wayvnc is:
It attaches to a running Wayland session, creates virtual input devices, and exposes a single display via the RFB protocol. The Wayland session may be a headless one, so it is also possible to run wayvnc without a physical display attached.
To fix this problem, we can install more using the command below.
sudo apt-get -y install wayvnc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install wayvnc.
sudo apt -y install wayvnc
Or if you have aptitude installed you can use the following command.
sudo aptitude install wayvnc
Summary
In this tutorial we learn how to fix wayvnc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.