Ubuntu – How to install Filezilla on Linux 18.04 via command line

18.04xubuntu

How can I install Filezilla on Linux 18.04 via command line, kindly help.

sudo sh -c 'echo "deb http://archive.getdeb.net/ubuntu xenial-getdeb apps" >> /etc/apt/sources.list.d/getdeb.list'

wget -q -O - http://archive.getdeb.net/getdeb-archive.key | sudo apt-key add -

sudo apt update

sudo apt install filezilla

while running sudo apt-get update i m getting this errors

Hit:8 https://download.sublimetext.com apt/stable/ InRelease        
Err:3 http://www.getdeb.net/ubuntu yakkety-getdeb InRelease                    
  403  Forbidden [IP: 143.95.32.90 80]
Err:9 http://ppa.launchpad.net/adabbas/1stppa/ubuntu bionic Release            
  404  Not Found [IP: 91.189.95.83 80]
E: Failed to fetch http://archive.getdeb.net/ubuntu/dists/yakkety-getdeb/InRelease  403  Forbidden [IP: 143.95.32.90 80]
E: The repository 'http://ppa.launchpad.net/n-muench/programs-ppa/ubuntu bionic Release' does not have a Release file.
W: Target Translations (apps/i18n/Translation-en) is configured multiple times in /etc/apt/sources.list.d/getdeb.list:1 and /etc/apt/sources.list.d/getdeb.list:2

Best Answer

FileZilla is not installed by default, To install FileZilla on Ubuntu 18.04, Open the terminal and execute:

sudo apt-get update
sudo apt-get install filezilla   

Connecting to the FTP server with FileZilla

To connect to a FTP Server, Open the FileZilla FTP client and type the domain name or IP address of the FTP server in the Host field. Provide the FTP username and password and FTP port( you can leave the port empty if your server use default FTP port 21) and click on Quick connect button.

Related Question