jftp command not found

In this troubleshooting guide we learn how to fix jftp command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

jftp: command not found

or when using sudo you get the following error message

sudo: jftp: command not found

Solutions to jftp: command not found

How To Fix jftp: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu jftp is provided by jftp package.

jftp is:

JFtp is a graphical Java network and file transfer client. It supports FTP using its own FTP API and various other protocols like SMB, SFTP, NFS, HTTP, and file I/O using third party APIs. It includes many advanced features such as recursive directory up/download, browsing FTP servers while transferring files, FTP resuming and queueing, browsing the LAN for Windows shares, and more. Multiple connections can open at a time in a Mozilla-style tabbed browsing environment.

To fix this problem, we can install more using the command below.

sudo apt-get -y install jftp

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install jftp.

sudo apt -y install jftp

Or if you have aptitude installed you can use the following command.

sudo aptitude install jftp

Summary

In this tutorial we learn how to fix jftp command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.