Yafc ftp client
Data Shovel
The console-based yafc client gives users a convenient, simple, and interactive approach to exchanging data with ftp and SSH servers.
Although most Linux distributions typically include an ftp program, it is likely to be less than intuitive. And the same thing can be said about the web-based ftp solutions offered by various providers.
Modern desktops like Gnome or KDE include ftp extensions that support drag and drop, but they are of little use if you need to set the permissions for the files on the server, and they do not lend themselves to scripting. The yafc ftp client [1] (Yet Another Ftp Client) might be slightly older – and console based, like ftp – but it also offers more options and is more convenient to use (Figure 1).
On Ubuntu, you can sudo apt-get install yafc to install the tool on your hard disk. SUSE has version 1.1.1 as a binary package, and you can run the package manager to install it. If the distribution of your choice does not include yafc, you will find the source code for a build-it-yourself version on the project website.
Before you can use ftp and yafc to transfer data, you need access to the ftp server at the other end. On top of this, you need credentials – a username and a password. To open a connection to the server in a terminal window, type a command with the following syntax:
$ yafc Options Protocol://User:Password@Server:Port/Directory
The most useful options here include -a for anonymous access (which the server needs to support) or -q to suppress the welcome text. Typing yafc -h displays a full list of options.
If you do not specify the protocol, yafc will default to ftp://. Alternatively, the client also supports encrypted ssh:// communications (see Figure 2).
The server at the other end will need to be an SSH server rather than an ftp server in this case. In contrast to ftp, the advantage is that cleartext passwords are not sent.
Besides the protocol, you can also omit the username. Yafc will then supply your local username. The -u option suppresses this default behavior, and then yafc will prompt you to enter a username. In addition to the username, you can type a password for your account on the server with a colon as the separating character. For security reasons, this is only recommended for automated scripts – or situations in which you are sure that nobody is shoulder surfing.
Although you must type the server name, the port is not required unless the server at the other end uses a non-standard port. If needed, you can specify the directory on the server in which you want yafc to start working.
The command
$ yafc ssh://hopfnehn@172.17.0.221:/documents
opens an SSH-encrypted connection to the server at 172.17.0.221 for the user hopfnehn. Then the server prompts the user for the password and grants the ftp client to the /documents directory.
Yafc can handle multiple, parallel connections to servers. The command
$ yafc ssh://hopfnehn@172.17.0.221:/documents ssh://hoepfner@172.17.0.222
tells yafc to open another connection parallel to the existing one. To toggle between the two connections, you can type the switch command in interactive mode.
Instead of opening a connection to a server when you launch yafc, you can launch the client in interactive mode. The command
yafc> open ssh://hopfnehn@172.17.0.221:/documents ssh://hoepfner@172.17.0.222
at the yafc command-line prompt opens connections to the required servers.
Interactive Mode
After opening a connection, yafc switches to interactive mode, from which you can type commands to transfer files. Several commands are available for this, and they also support navigating the server and client directories.
Just like the familiar shell command, ls lists the current server directory, cd directory changes to another directory, and pwd tells you your current working directory (Figure 3). To run these commands locally instead of on the server, just type an exclamation mark before the command. To get a list of commands, enter help.
The put command transfers a file from the client to the server, and get retrieves a file from the server and stores it on the client. Yafc might prompt you before overwriting existing files or directories. One big advantage over other console-based ftp programs is yafc's ability to recursively transfer directories. The put -r test/ command not only copies the test directory to the server, but also all the files and subdirectories below it. If needed, recursion in combination with get helps users create complete backup copies of their server data.
After exchanging data, you can close your connection(s) with the close command and quit yafc by typing exit.
Conclusions
Console-based ftp clients are the tool of choice for manual or scripted file transfers for large numbers of files. Yafc, as one of the most convenient representatives of this species, has far more in the line of functionality to offer than the standard ftp client. Besides the options I looked at here, it also supports proxies or NOHUP data transmissions, during which transmission continues despite the user logging off – as long as the computer is running.
Infos
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Thousands of Linux Servers Infected with Stealth Malware Since 2021
Perfctl is capable of remaining undetected, which makes it dangerous and hard to mitigate.
-
Halcyon Creates Anti-Ransomware Protection for Linux
As more Linux systems are targeted by ransomware, Halcyon is stepping up its protection.
-
Valve and Arch Linux Announce Collaboration
Valve and Arch have come together for two projects that will have a serious impact on the Linux distribution.
-
Hacker Successfully Runs Linux on a CPU from the Early ‘70s
From the office of "Look what I can do," Dmitry Grinberg was able to get Linux running on a processor that was created in 1971.
-
OSI and LPI Form Strategic Alliance
With a goal of strengthening Linux and open source communities, this new alliance aims to nurture the growth of more highly skilled professionals.
-
Fedora 41 Beta Available with Some Interesting Additions
If you're a Fedora fan, you'll be excited to hear the beta version of the latest release is now available for testing and includes plenty of updates.
-
AlmaLinux Unveils New Hardware Certification Process
The AlmaLinux Hardware Certification Program run by the Certification Special Interest Group (SIG) aims to ensure seamless compatibility between AlmaLinux and a wide range of hardware configurations.
-
Wind River Introduces eLxr Pro Linux Solution
eLxr Pro offers an end-to-end Linux solution backed by expert commercial support.
-
Juno Tab 3 Launches with Ubuntu 24.04
Anyone looking for a full-blown Linux tablet need look no further. Juno has released the Tab 3.
-
New KDE Slimbook Plasma Available for Preorder
Powered by an AMD Ryzen CPU, the latest KDE Slimbook laptop is powerful enough for local AI tasks.