The important directories are /etc
, /home
, /var
, and /srv
. You may want to add /root
, and remove unneeded bits from /var
.
rsync
is good if you want the files to be directly accessible, tar
is fine if you don't.
Ich verwende einen Ubuntu 9.10 Linux-Server. Ich versuche, einen Weg zu finden, um die Maschine während des Betriebs zu sichern, und aus dem, was ich sehe, werden die Disk-Clone-Dienstprogramme eliminiert. Für das gesamte Disk-Clone-Zeug, das ich für Linux gesehen habe, ist ein Neustart auf einer speziellen Live-CD erforderlich.
Meine Frage lautet also: Was ist die beste Lösung, um das System zu sichern, während es läuft? Ich interessiere mich auch nicht wirklich für die Konfiguration des Betriebssystems, ich möchte nur meine gespeicherten Dateien und meine darauf installierten Programme aufbewahren können.
Vielen Dank
The important directories are /etc
, /home
, /var
, and /srv
. You may want to add /root
, and remove unneeded bits from /var
.
rsync
is good if you want the files to be directly accessible, tar
is fine if you don't.
I agree with Ignacio Vazquez-Abrams about /etc/ /home/ and some parts in /var/.
But don't forget to save a list of the installed packages, so you know what programs was installed...
dpkg --get-selections > dpkg.list
I'm using backup2l to backup my Debian server (AFAIK Ubuntu is a derivate of Debian). If configured correctly it automates your backup, e.g. getting the dpkg selections, creating differential and incremental backups (depending on your settings) and storing it an an archive. A post backup hook triggers rsync which syncs my archive with a remote copy.
I'm backing up /etc
/var
(with some exclusions like caches), /root
, /home
. Just think about what you have changed in addition to that and add it to the list. I for instance dumy my sql databases in a special directory and save it, too.