It should help me pause copying, so I dont have to wait for each copy to finish. Basic googling didnt help out. The windows equivalent is Teracopy, or Fastcopy.
I need the application to be GUI based, but wouldn't mind shell commands.
I wait for the copy to finish, in cases where I copy to the same destination, like a pen-drive, where throughput is in the order of 5 MB/s.
3 Answers
If you're doing copies from the command line, rsync will optimize the copies about as much as is possible and you can press Ctrl + Z to pause it, then type fg to resume.
MiniCopier is a graphical copy manager. It provides more comfort and control over files copy operations, than basic OS functions. With MiniCopier it is possible to queue different transfers, resume a copy that has failed, limit the speed or pause the copy. If a transfer fails, an error is logged and the rest of the queue is treated.
Ultracopier is an advanced and yet easy to use portable application designed to enable users to copy or move files and folders with a few clicks. This tool was developed to provide speed limitation, error / colision management, translation and many more interesting features. Available in many languages & as a portable version.
When copying files with the default file manager Nautilus, you don't need to wait for files to finish copying. It doesn't even slow down like Windows does when you initiate multiple simultaneous operations to the same disk like Windows does. With the command line equivalent cp, you really don't need to wait for it finish either. Put an ampersand at the end of your copy command and it will run in the background. If you started one already taht you wish to run in the background, press ctrl-z, then issue the bg command.
gadmin-rsync is a graphical front end to rsync if you wish use rsync ...rsynch is expecially good if you're copying somethin between machines that has already been copied before. Only the delta is transferred. The caveat with this is that you need rsync installed on the source and the target machine to get the 'delta' transfer capability. You can of course use the rsync command line rather than the gui.