homesick command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
homesick: command not found
or when using sudo you get the following error message
sudo: homesick: command not found
Solutions to homesick: command not found
How To Fix homesick: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu homesick is provided by homesick package.
homesick is:
homesick allows one to keep some set of files from home directory in separate git repository. User can have several repositories attached to your home directory with several sets of configs: one repository for console tools, another for GUI, third for some development utilities.
homesick is similar to vsch, another tool for managing config files.
To fix this problem, we can install more using the command below.
sudo apt-get -y install homesick
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install homesick.
sudo apt -y install homesick
Or if you have aptitude installed you can use the following command.
sudo aptitude install homesick
Summary
In this tutorial we learn how to fix homesick command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.