1

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
UMAIR ALI
  • 111

3 Answers3

1

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
sys0dm1n
  • 343
0

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.
endrias
  • 637
0

I removed my Singapore droplet mirror and changed mirror from Singapore to Newyork and now it's working.

Melebius
  • 11,750
UMAIR ALI
  • 111