sacc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
sacc: command not found
or when using sudo you get the following error message
sudo: sacc: command not found
Solutions to sacc: command not found
How To Fix sacc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu sacc is provided by sacc package.
sacc is:
sacc(omys) is a terminal gopher client. It it written in C and meant to be simple, fast, and secure. It has no support for other protocols, however it will handle URIs and files that can’t be opened natively by calling xdg-open.
Gopher is a simple protocol to retrieve hierarchical information. It is strongly oriented towards a menu-document design and presented an alternative to the World Wide Web in its early stages, but ultimately HTTP became the dominant protocol. Gopher is still in use by enthusiasts: a small population of actively-maintained servers remains.
To fix this problem, we can install more using the command below.
sudo apt-get -y install sacc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install sacc.
sudo apt -y install sacc
Or if you have aptitude installed you can use the following command.
sudo aptitude install sacc
Summary
In this tutorial we learn how to fix sacc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.