| Page | Description | Tags |
|
Home of dd_rescue is <http://www.garloff.de/kurt/linux/ddrescue/>
dd_rescue is your friend if you have to recover data from a crased harddrive. This tool will … |
tools,
backup,
rescue |
|
Have you ever encountered the problem to backup a complex webspace, only accessible via ftp? No chance to tar or rsync? Then you need a good ftp client capable … |
ftp,
backup |
|
robocopy comes with Windows Vista. If you're still using Windows XP you can download the Windows Server 2003 Resource Kit Tools from Mircrosoft which contains r… |
windows,
backup |
|
Home of rsync is <http://rsync.samba.org>
Example script using rsync to sync some directories from given remote host to the local system:
#!/bin/bash
#
# 20… |
backup,
ssh |
|
Use ssh to tar a directory on a remote host to a local directory:
cd /usr/src/somedir
ssh host.domain.tld "tar -czv -C /usr/src/somedir -f - ." | tar xzf -
… |
backup |