Quick and Easy File Transfer with netrw
Fast Transport
Even without elaborate infrastructure, you can still push your data across the network with netrw.
If you're looking for a quick and easy tool for transferring files, netrw [1] offers an elegant solution. According to the project website, the purpose of netrw is to "simplify and speed up file transfers to hosts without an FTP server." Netrw is also useful for scenarios where the user transferring the file does not have an account on the target machine.
The netrw project consists of two programs, netread
and netwrite
. As the names imply, netwrite
writes the file from the sending machine and netread
reads it on the target. The advantage of this ad hoc solution, compared with solutions in which the daemon listens constantly, is the brief existence of the open channel. This design reduces the likelihood of an attacker accidentally stumbling across the open port.
Netrw gives you the ability to transfer any kind of electronic data. Of course, it's always better to use netrw on a protected network, and you are advised not to use it in an insecure setting. If you do, however, you'll want to protect your privacy by encrypting the payload.
Basic Functions
In the simplest case, start by initializing the reception of data with netread
. You only specify the port number and redirect stdout to a file (Listing 1, line 1). The transfer itself is launched in the same style (line 2).
Listing 1
Configuring Data Reception
Figure 1 shows the transfer sequence. The two programs have common options; the most important ones are described in Table 1.
Table 1
Options for netread and netwrite
Parameter | Explanation |
---|---|
udp |
Uses UDP instead of TCP |
-f <Host> |
Establishes a connection on the read side |
-C <Algorithm> |
Uses specified algorithm (sha1, md5, rmd160, none) |
-o <File> |
Specifies the file |
-h <Value> |
Outputs the progress of all <Value>s (KB) |
-H <Value> |
Outputs the progress of all <Value>s (MB) |
-b |
Specifies speed in bps (instead of Bps) |
-q |
Suppresses screen output |
-v |
Outputs detailed messages |
-vv |
Outputs very detailed messages |
You can either redirect the payload directly from a file or you can use the -i <file>
option in netwrite
. On the target system, use the output redirection (>
) or the -o <file>
option for saving the data.
Progress
The progress indicator proves especially useful for transferring large volumes of data; it lets you check to see whether bytes are actually still flowing across the network. You can choose between a display in kilobytes (-h
) or megabytes (-H
). The option requires you to define the volume of data that triggers a hash mark being written to screen. This can mean that your screen either fills up or shows very little information (Figure 2).
In a shell script (Listing 2) [2], you could use stat
[3] to determine the size of the file and then define a useful integer value for the progress bar. Note that one line is made up of 50 hash marks. Accordingly, you might not see any output for very small volumes of data.
Listing 2
Determining File Size
The receiving side does not know the file size in advance. You can either ask for this value before the transfer is initiated or use a value of 1000
; experience has shown that -H
produces reasonable output.
Figure 3 shows the flow of the script. For clarity, positional parameters are used in place of input templates. You could extend this script accordingly with the capabilities of Zenity [4] or cdialog [5].
Firewall Mode
Firewall mode lets you set up a connection in the reverse direction. You can pass in either the IP address or a hostname using the -f
option. The following workflow has proved useful in practical terms: Call netwrite
with the -f
option, then start netread
also with -f
. This means that you are using firewall mode on both systems, but the startup sequence is the other way around.
In Figure 4, you can see the steps required for the sender (light background in the terminal) and the receiver (dark background). The computers are addressed by their hostnames (ze5
and ZE6
). After the call to netwrite
, you will see a message that the program is listening on the specified port. The other messages are displayed after calling netread
on the target system.
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
-
First Release Candidate for Linux Kernel 6.14 Now Available
Linus Torvalds has officially released the first release candidate for kernel 6.14 and it includes over 500,000 lines of modified code, making for a small release.
-
System76 Refreshes Meerkat Mini PC
If you're looking for a small form factor PC powered by Linux, System76 has exactly what you need in the Meerkat mini PC.
-
Gnome 48 Alpha Ready for Testing
The latest Gnome desktop alpha is now available with plenty of new features and improvements.
-
Wine 10 Includes Plenty to Excite Users
With its latest release, Wine has the usual crop of bug fixes and improvements, along with some exciting new features.
-
Linux Kernel 6.13 Offers Improvements for AMD/Apple Users
The latest Linux kernel is now available, and it includes plenty of improvements, especially for those who use AMD or Apple-based systems.
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.