I swear, I just can't make any progress >:-(
So as I'm transferring to my new VPS, I realize that my old VPS is totally out of storage. I need to transfer 40G but only have 1.2G left on the old VPS! But it does have a backup drive installed, so I'd like to move data from the accounts that are already transferred to that second drive... just to make sure everything's good until the end of the month.
I have one account with 22G of data in their /mail/ directory, so that's the first one I want to backup. I ran (with "example" shown here in place of the real account name):
I know that I can access /new100GBDisk/ via SSH and FTP, and that's the path to the second drive. It was only installed a few weeks ago and hasn't been used, but I double checked and could upload a simple text file to it via SFTP while logged in as root. So I don't think it's an issue of permissions or not being able to write to it.
The errors also popped up immediately, so it's not like it tried to write and gave up.
Any thoughts?
So as I'm transferring to my new VPS, I realize that my old VPS is totally out of storage. I need to transfer 40G but only have 1.2G left on the old VPS! But it does have a backup drive installed, so I'd like to move data from the accounts that are already transferred to that second drive... just to make sure everything's good until the end of the month.
I have one account with 22G of data in their /mail/ directory, so that's the first one I want to backup. I ran (with "example" shown here in place of the real account name):
Code:
# using -z for compression
# rsync -avuz --progress /home/example/mail/ /new100GBDisk/home/example/
sending incremental file list
rsync error: errors with program diagnostics (code 13) at log.c(235) [sender=3.0.6]
# not using -z
# rsync -avu --progress /home/example/mail/ /new100GBDisk/home/example/
sending incremental file list
rsync: writefd_unbuffered failed to write 4 bytes to socket [sender]: Broken pipe (32)
rsync: mkdir "/new100GBDisk/home/example" failed: No such file or directory (2)
rsync error: error in file IO (code 11) at main.c(576) [receiver=3.0.6]
rsync: connection unexpectedly closed (9 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(600) [sender=3.0.6]
The errors also popped up immediately, so it's not like it tried to write and gave up.
Any thoughts?
Last edited by a moderator: