Results 1 to 4 of 4
I have been moving 800 Gb of files from one server to another with this command:
Code:
wget -r -c -nH -N --cut-dirs=3 ft p://user:pass at serverip/path/to/files
Now, for some ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 02-19-2013 #1Just Joined!
- Join Date
- Feb 2013
- Posts
- 33
too many space used
I have been moving 800 Gb of files from one server to another with this command:
Now, for some reason my 1 Tb hard drive got filled but that's not possible because it hasn't downloaded all files and my whole site is way smaller than 1 Tb, I guess the problem is the way how wget restore files what do you think ? how can i fix it ?Code:wget -r -c -nH -N --cut-dirs=3 ft p://user:pass at serverip/path/to/files
Thank you.
- 02-19-2013 #2Just Joined!
- Join Date
- Nov 2012
- Location
- Tunis, Tunisia
- Posts
- 9
Hi,
this can solve your problem, but i think the second solution is more reliable and secure.
you can use scp for secure copy, like this:Code:wget -nc -r ftp://user:pass at serverip/path/to/files
Best RegardsCode:scp -r directory1 directory2 .. user@IP_Address:/New_Local
- 02-19-2013 #3Just Joined!
- Join Date
- Feb 2013
- Posts
- 33
Do I have to delete all files and download them again ?
- 02-19-2013 #4Just Joined!
- Join Date
- Nov 2012
- Location
- Tunis, Tunisia
- Posts
- 9
yes, and try with the second mathed
good luck
Best Regaeds


Reply With Quote
