Sponsorised links
This year
How-To: Configure and Schedule Automated Backups in Linux - Page 1 | Maximum PC
This guide will help you automate your backups on your Linux rig so you will always have your files up to date.
Easy Automated Snapshot-Style Backups with Rsync
As of rsync-2.5.6, the --link-dest option is now standard! That can be used instead of the separate cp -al and rsync stages, and it eliminates the ownerships/permissions bug. I now recommend using it. Also, I'm proud to report this article is mentioned in Linux Server Hacks, a new (and very good, in my opinion) O'Reilly book by compiled by Rob Flickenger.
How to Copy a Filesystem and Preserve Hard Links in Linux (by Jeremy Zawodny)
But since much of the data consists of remote filesystem snapshots produced using rsnapshot, which makes copious use of hard links, it's rather important that I do this correctly. If I don't, the data won't even
rsnapshot
rsnapshot is a filesystem snapshot utility for making backups of local and remote systems.
Sponsorised links
2008
Synchronisation de deux répertoires avec rsync
Rsync est un utilitaire présent sur tout les systèmes Unix (de Linux à FreeBSD en passant par Mac OS X et même sous Windows en passant par Cygwin) et ayant pour but la synchronisation de fichiers/répertoires. Cette synchronisation peut se faire soit de manière locale (par exemple deux répertoire d’un même disque) soit par le réseau (via le protocole SSH).
Linux.com :: Parallel SSH execution and a single shell to control them all
Many people use SSH to log in to remote machines, copy files around, and perform general system administration. If you want to increase your productivity with SSH, you can try a tool that lets you run commands on more than one remote machine at the same time. Parallel ssh, Cluster SSH, and ClusterIt let you specify commands in a single terminal window and send them to a collection of remote machines where they can be executed.
Why you would need a utility like this when, using openSSH, you can create a file containing your commands and use a bash for loop to run it on a list of remote hosts, one at a time? One advantage of a parallel SSH utility is that commands can be run on several hosts at the same time. For a short-running task this might not matter much, but if a task needs an hour to complete and you need to run it on 20 hosts, parallel execution beats serial by a mile. Also, if you want to interactively edit the same file on multiple machines, it might be quicker to use a parallel SSH utility and edit the file on all nodes with vi rather than concoct a script to do the same edit.
Many of these parallel SSH tools include support for copying to many hosts at once (a parallel version of scp) or using rsync on a collection of hosts at once. Because the parallel SSH implementations know about all the hosts in a group, some of them also offer the ability to execute a command "on one host" and will work out which host to pick using load balancing. Finally, some parallel SSH projects let you use barriers so that you can execute a collection of commands and explicitly have each node in the group wait until all the nodes have completed a stage before moving on to the next stage of processing.
rsnapshot
rsnapshot is a filesystem snapshot utility for making backups of local and remote systems.
Using rsync and hard links, it is possible to keep multiple, full backups instantly available. The disk space required is just a little more than the space of one full backup, plus incrementals.
Depending on your configuration, it is quite possible to set up in just a few minutes. Files can be restored by the users who own them, without the root user getting involved.
There are no tapes to change, so once it's set up, your backups can happen automatically untouched by human hands. And because rsnapshot only keeps a fixed (but configurable) number of snapshots, the amount of disk space used will not continuously grow.
Virtualize a Server with Minimal Downtime
When it's time to convert a physical machine to a virtual one, use these steps to make the move safely and with a small maintenance window.
Sauvegarde de postes Windows XP Quick’n’Dirty » UNIX Garden
A ce jour, il existe plusieurs solutions de synchronisation de données sous Linux. Les plus connues demeurent certainement Rsync ainsi qu’Unison. Leur fonctionnement est possible sur une plateforme Windows lorsque utilisées avec Cygwin, un environnement « Linux-like » pour Windows. Ces méthodes de sauvegardes sont fréquemment utilisées sous Windows, mais restent cependant, à mon goût, lourdes à mettre en place.
Je me suis donc penché sur un outil de mirroring appelé « Mirrodir » très simple d’utilisation. Combiné à une mise en route des machines par wake on lan et une extinction de ces dernières via un accès ssh. Vous serez en mesure de mettre en place très rapidement une solution de sauvegarde efficace de vos postes Windows2000 ou Windows XP. Cet article sera aussi l’occasion de présenter OpenSSH pour Windows, une alternative à l’installation complète de Cygwin, que je trouve personnellement plus simple à installer et à configurer, bien que moins complète.
Serveur de sauvegardes incrémentales » UNIX Garden
Retrouvez cet article dans : Linux Pratique 32
Dans cet article, nous allons vous apprendre comment mettre en place un serveur de sauvegardes incrémentales pour les données d'un petit réseau hétérogène.
2007
Sauvegarder ses données avec rsync
C’est simple copie est assez simple à mettre en place, et peut s’avérer très pratique en cas de crash du disque dur. La sauvegarde peut paraitre un peut basique, mais qui à besoin (et qui à assez d’espace disque) pour avoir une sauvegarde jours par jours avec les modifications ?
Automatiser les copies de sauvegarde avec rsync
rsync est un logiciel pour copier des fichiers rapidement d’une source vers une destination (localement, ou à travers le réseau). Les copies par le réseau utilisent par défaut SSH (sous Debian GNU/Linux).
