Backup organizer
Le Jeudi, mai 6th, 2010Backuping data is real easy (with linux). I use three different ways: For a data base BDD : mysqldump [cnx infos] |gzip > backupbdd.sql.gz For not too numerous files, which data is important, like configuration ones: tar czvf yoyobackup.tar.gz dafiles/ For files I want to access easily and/or numerous : rsync -av me/ othercomputer:me/ In [...]