I am using below command to install ftp but its showing error message:
sudo apt-get install vsftpd
Error
Building dependency tree
Reading state information... Done
E: Unable to locate package vsftpd
I am using below command to install ftp but its showing error message:
sudo apt-get install vsftpd
Error
Building dependency tree
Reading state information... Done
E: Unable to locate package vsftpd
Have you tried to resynchronize the package index files from their sources before installing the package?
sudo apt-get update && sudo apt-get install vsftpd
You can download the .deb
archive for amd64 and/or i386 from these links. Go to the directory that you downloaded the .deb
archive to, and install the package manually by:
sudo dpkg -i "packageName.deb" #replace the text in quotes with the name of the package you downloaded
sudo apt-get install -f # to fix any dependencies that might be broken.