Welcome to the Linux Foundation Forum!
rsync is very slow between the linux and additional secure HDD
Dilip7597
Posts: 2
in Command Line
Hi,
I'm trying to copy the data between linux machine to an extra attached secure hdd, initially I mounted the secure hdd on the system. I have around 150GB of data to transfer in which there is tar file of around 132GB of size, I tried to copy the data by cp command. It broke frequently, then I tried with the rsync command. The rsync command it not breaking but its very slow, the rsync command is running from last three days continuously but still it transfered around 30% of the overall data.
Can somebody help to speed up the process of rsync.
Thanks,
Dilip G
0
Comments
-
The issue may be the transfer speed of the external disk or the cable system in use. An Internal 7200RPM+ SATA3 HDD would offer the best transfer speeds without getting too expensive.
Can you share the connection and disk information so we can see which is the cause? I expect that you are running a 5400 RPM HDD on USB2 or USB1.0 -
Generally a large amount of data, there is something that tar can't handle for whatever reason / might be process gets interrupted / if it is a filesystem migration(guessing), it is necessary to do initial copy before the actual task starts. For initial step: (cd /src; tar cf - .) | (cd /dst; tar xpf -)
Or u can use this command for making fast: rsync -aPhW --protocol=28, even u can use cpio command. See here for more info:
www.thegeekstuff.com/2010/09/rsync-command-examples/0 -
It shouldn't take that long to copy that amount of data. Are you sure the hard disck is correctly connected and/or configured?
What does "iotop" tell you?
Regards0 -
You say this is a secure drive, so I assume it is encrypted. If so, that is likely the cause of the slowness of the data transfer. Encryption (especially with modern strong encryption routines) can be quite slow, especially when it has to be done in software. My work laptop uses full-disc encryption, which is noticeably slower in copying large data sets than it would be if it weren't encrypted.0
-
Hi Guys,
Thanks for your reply..... but I did my job by an alternate method. I ran a tar command with split command. It created the 20GB part files of the overall directory and then I transferred it by cp command.
Thanks for your help guys.
Regards,
Dilip Gupta0
Categories
- All Categories
- 178 LFX Mentorship
- 178 LFX Mentorship: Linux Kernel
- 772 Linux Foundation IT Professional Programs
- 382 Cloud Engineer IT Professional Program
- 175 Advanced Cloud Engineer IT Professional Program
- 75 DevOps IT Professional Program - Discontinued
- 7 DevOps & GitOps IT Professional Program
- 102 Cloud Native Developer IT Professional Program
- 7.6K Training Courses & Learning Paths
- 7 AI & ML Training
- 1 Blockchain & Decentralized Identity Training
- 19 Cloud & Containers Training
- 2 Cybersecurity Training
- 2 DevOps & Site-Reliability Training
- 1 Linux Kernel Development Training
- 2 Networking Training
- 2 Open Source Best Practice Training
- 5 System Administration Training
- 1 System Engineering Training
- 3 Web & Application Development Training
- 797 Hardware
- 202 Drivers
- 68 I/O Devices
- 37 Monitors
- 96 Multimedia
- 173 Networking
- 91 Printers & Scanners
- 91 Storage
- 771 Linux Distributions
- 81 Debian
- 68 Fedora
- 23 Linux Mint
- 13 Mageia
- 24 openSUSE
- 151 Red Hat Enterprise
- 31 Slackware
- 13 SUSE Enterprise
- 356 Ubuntu
- 467 Linux System Administration
- 31 Cloud Computing
- 73 Command Line/Scripting
- Github systems admin projects
- 99 Linux Security
- 79 Network Management
- 101 System Management
- 46 Web Management
- 135 Mobile Computing
- 20 Android
- 100 Development
- 1.2K New to Linux
- 1K Getting Started with Linux
- 402 Off Topic
- 125 Introductions
- 33 Study Material
- 1K Programming and Development
- 310 Kernel Development
- 707 Software Development
- 1K Software
- 415 Applications
- 182 Command Line
- 5 Compiling/Installing
- 71 Games
- 319 Installation
- Archived
- 183 Small Talk
- 2 LFD140 Class Forum
- 1.4K LFS258 Class Forum
Upcoming Training
-
August 20, 2018
Kubernetes Administration (LFS458)
-
August 20, 2018
Linux System Administration (LFS301)
-
August 27, 2018
Open Source Virtualization (LFS462)
-
August 27, 2018
Linux Kernel Debugging and Security (LFD440)