ltsp command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ltsp: command not found
or when using sudo you get the following error message
sudo: ltsp: command not found
Solutions to ltsp: command not found
How To Fix ltsp: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ltsp is provided by ltsp package.
ltsp is:
Make an installation able to netboot as an LTSP client. For LTSP servers, also install the suggested packages (dnsmasq etc).
LTSP helps in netbooting LAN clients from a single installation that resides in a chroot or a VM on the LTSP server. This way maintaining tens or hundreds of clients is as easy as maintaining a single PC.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ltsp
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ltsp.
sudo apt -y install ltsp
Or if you have aptitude installed you can use the following command.
sudo aptitude install ltsp
Summary
In this tutorial we learn how to fix ltsp command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.