Teracopy on Linux?

I am currently in process of copying a few thousand files from USB to SSD. But I am not very impressed with the built-in file copy software. Is there something reminiscent of TeraCopy available (I tried Teracopy on Zorin, I get the installer and then it seems to vanish)?

I have asked Code Sector, they don't seem to be heading the Linux route with it any time soon.

Ultracopier is available in the repo's.

sudo apt install ultracopier

I do not know, since I never used Teracopy; but I hear that Ultracopier UI is not a duplicate of Teracopy or anything, so there may be a learning curve.

In other news...
There are many Bulk File Management systems available on GnuLinux. Zorin OS Lite includes Thunar Bulk Management, but this is not included in Zorin OS Core or Pro because they use Gnome Desktop.

Also, the terminal is a powerful file transfer utility if you are willing to learn a few rsync commands.

Lastly - remember that any transfer will be limited by the USB port bottleneck.

3 Likes

Just downloaded Thunar File Manager, Settings and Bulk rename. (I use Xfce). Not quite the same and I will play with it a bit to get the hang of it, but I love the dual pane option already. Will need to get a few thousand new files to copy, thought.

1 Like

A.I. Generated answer:

Fastest File Copy in Linux

The speediest way to copy files in Linux depends on the specific use case, but several methods are known for their efficiency. For large files, using tar with a pipe can be faster than cp because it uses multiple threads and processes data more efficiently. Additionally, rsync is highly recommended for its ability to synchronize files and directories, offering features like progress monitoring and resuming interrupted transfers. For even faster transfers, tools like pv can monitor the progress of data through a pipeline, while buffer can utilize shared memory to speed up the copy process.

  • tar : A versatile tool that can copy files faster by using multiple threads and processing data more efficiently compared to cp .
  • rsync : Efficient for synchronizing files and directories, with options to monitor progress and resume transfers.
  • pv : Monitors the progress of data through a pipeline, useful for tracking the speed and status of file copies.
  • buffer : Uses shared memory to speed up the copy process by running reading and writing processes concurrently.

AI-generated answer. Please verify critical facts.


🌐
lotoftech.com
The faster and safer way to copy files in Linux than cp - LotofTech

🌐
zylk.net
How to copy files in linux faster and safer than cp

🌐
unix.stackexchange.com
Is there a faster alternative to cp for copying large files (~20 GB)? - Unix & Linux Stack Exchange

🌐
reddit.com
r/DataHoarder on Reddit: What is the absolute fastest way to copy gigabytes of many small files locally in Linux?

🌐
stackoverflow.com
linux - Fastest way to copy a large file locally - Stack Overflow

🌐
stackoverflow.com
linux - How to copy files as fast a

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.