yafc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
yafc: command not found
or when using sudo you get the following error message
sudo: yafc: command not found
Solutions to yafc: command not found
How To Fix yafc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu yafc is provided by yafc package.
yafc is:
yafc is an FTP client intended to be a replacement for the standard ftp(1) program. Features include directory cache, remote filename completion, aliases, colored ls, recursive get/put/ls/rm, nohup mode transfers, tagging (queueing), background downloading, and more.
To fix this problem, we can install more using the command below.
sudo apt-get -y install yafc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install yafc.
sudo apt -y install yafc
Or if you have aptitude installed you can use the following command.
sudo aptitude install yafc
Summary
In this tutorial we learn how to fix yafc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.