How to install sftp
on Linux
The package is simply automatically installed with openssh
, so it can't be installed alone! 😅
apt (Ubuntu / Debian / Mint)
sudo apt update -y
sudo apt upgrade -y
sudo apt install openssh-client -y
dnf (Fedora / CentOS / Red Hat Enterprise Linux)
sudo dnf check-update
sudo dnf upgrade -y
sudo dnf install openssh-clients -y
pacman (Arch)
yes | sudo pacman -Syu openssh
*You may have to restart your terminal window after install to make the commands accessible!