|
|
Backup your website easily - Linux
|
Views : 266
|
|
Tagged in : Linux
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
Backup your website easily
If you want to back up a directory on a computer and only copy changed files to the backup computer instead of everything with each backup, you can use the rsync tool to do this. You will need an account on the remote computer that you are backing up from. Here is the command:
rsync -vare ssh raj@192.168.0.2:/home/raj/importantfiles/* /home/raj/backup/
Here we are backing up all of the files in /home/raj/importantfiles/ on 192.168.0.2 to /home/raj/backup on the current machine. |
|
By - Sanju, On - 2009-12-15 |
|
|
|