How To Install bareftp on Fedora 34

bareftp is File transfer client supporting the FTP, FTP over SSL/TLS (FTPS) and SSH

Introduction

In this tutorial we learn how to install bareftp on Fedora 34.

What is bareftp

bareFTP is a file transfer client supporting the FTP, FTP over SSL/TLS (FTPS) and SSH File Transfer Protocol (SFTP). It is written in C#, targeting the Mono framework and the GNOME desktop environment. bareFTP is free and open source software released under the terms of the GPL license.

We can use yum or dnf to install bareftp on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install bareftp.

Install bareftp on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install bareftp using dnf by running the following command:

sudo dnf -y install bareftp

Install bareftp on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install bareftp using yum by running the following command:

sudo yum -y install bareftp

How To Uninstall bareftp on Fedora 34

To uninstall only the bareftp package we can use the following command:

sudo dnf remove bareftp

bareftp Package Contents on Fedora 34

/usr/bin/bareftp
/usr/lib/.build-id
/usr/lib/.build-id/28
/usr/lib/.build-id/28/e101aff10639c384f1afd392581c8299b194d5
/usr/lib64/bareftp
/usr/lib64/bareftp/libsftppty.so
/usr/libexec/bareftp
/usr/libexec/bareftp/bareFTP.Common.Utils.dll
/usr/libexec/bareftp/bareFTP.Connection.dll
/usr/libexec/bareftp/bareFTP.Gui.Dialog.dll
/usr/libexec/bareftp/bareFTP.Gui.FileManager.dll
/usr/libexec/bareftp/bareFTP.Gui.Preferences.dll
/usr/libexec/bareftp/bareFTP.Gui.ProgressMonitor.dll
/usr/libexec/bareftp/bareFTP.Gui.dll
/usr/libexec/bareftp/bareFTP.Preferences.dll
/usr/libexec/bareftp/bareFTP.Protocol.Ftp.dll
/usr/libexec/bareftp/bareFTP.Protocol.Sftp.dll
/usr/libexec/bareftp/bareFTP.Protocol.dll
/usr/libexec/bareftp/bareFTP.SftpPty.dll
/usr/libexec/bareftp/bareftp.exe
/usr/share/applications/bareftp.desktop
/usr/share/doc/bareftp
/usr/share/doc/bareftp/AUTHORS
/usr/share/doc/bareftp/COPYING
/usr/share/doc/bareftp/CREDITS
/usr/share/doc/bareftp/README
/usr/share/icons/hicolor/16x16/apps/bareftp.png
/usr/share/icons/hicolor/22x22/apps/bareftp.png
/usr/share/icons/hicolor/24x24/apps/bareftp.png
/usr/share/icons/hicolor/32x32/apps/bareftp.png
/usr/share/icons/hicolor/36x36/apps/bareftp.png
/usr/share/icons/hicolor/48x48/apps/bareftp.png
/usr/share/icons/hicolor/scalable/apps/bareftp.svg
/usr/share/locale/ca/LC_MESSAGES/bareftp.mo
/usr/share/locale/cs/LC_MESSAGES/bareftp.mo
/usr/share/locale/de/LC_MESSAGES/bareftp.mo
/usr/share/locale/el/LC_MESSAGES/bareftp.mo
/usr/share/locale/es/LC_MESSAGES/bareftp.mo
/usr/share/locale/fr/LC_MESSAGES/bareftp.mo
/usr/share/locale/hu/LC_MESSAGES/bareftp.mo
/usr/share/locale/it/LC_MESSAGES/bareftp.mo
/usr/share/locale/ja/LC_MESSAGES/bareftp.mo
/usr/share/locale/nb/LC_MESSAGES/bareftp.mo
/usr/share/locale/pl/LC_MESSAGES/bareftp.mo
/usr/share/locale/pt_BR/LC_MESSAGES/bareftp.mo
/usr/share/locale/ru/LC_MESSAGES/bareftp.mo
/usr/share/locale/sk/LC_MESSAGES/bareftp.mo
/usr/share/locale/sv/LC_MESSAGES/bareftp.mo
/usr/share/man/man1/bareftp.1.gz

References

Summary

In this tutorial we learn how to install bareftp on Fedora 34 using yum and dnf.