View Single Post
Old 12-22-2014, 05:06 AM  
robwod
Confirmed User
 
Industry Role:
Join Date: Nov 2005
Posts: 2,539
Quote:
Originally Posted by ITraffic View Post
anything out there to backup all the images on your site? can't seen to find anything. thanks.
If you have a lot of images, a plugin may be rather inefficient. An easier, MUCH faster method, is to simply use "tar" from the command line.

To pack it:

tar -cpf tarfilename.tar ./folder-to-tar

To unpack it:

tar -xpf tarfilename.tar

Note, the above will create a single file archive of all files and folders in the specified folder, recursively. Additionally, it will preserve file and folder permissions. This is especially helpful when doing it from root and sftp'ing from one server to another.
__________________
NSFW
robwod is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote