<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Abraxas &#187; Backup</title>
	<atom:link href="http://www.effinger.org/blog/tag/backup/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.effinger.org/blog</link>
	<description>a personal knowledge base</description>
	<lastBuildDate>Sun, 06 Jun 2010 17:41:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Berechtigungen nach Einspielen eines Backups anpassen</title>
		<link>http://www.effinger.org/blog/2009/12/11/berechtigungen-nach-einspielen-eines-backups-anpassen/</link>
		<comments>http://www.effinger.org/blog/2009/12/11/berechtigungen-nach-einspielen-eines-backups-anpassen/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 17:03:55 +0000</pubDate>
		<dc:creator>Markus Effinger</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Backup]]></category>

		<guid isPermaLink="false">http://www.effinger.org/blog/?p=840</guid>
		<description><![CDATA[<p>Das Erscheinen von Ubuntu Karmic Koala habe ich zum Anlass genommen, meinen Rechner komplett neu aufzusetzen, um Balast loszuwerden. Dabei habe ich natürlich vorher ein Backup gemacht, um später wieder auf meine alten Daten und Konfigurationsdateien zugreifen zu können. Doch leider reicht es nicht, die Dateien mit cp oder rsync an die entsprechende Stelle im [...]]]></description>
			<content:encoded><![CDATA[<p>Das Erscheinen von Ubuntu Karmic Koala habe ich zum Anlass genommen, meinen Rechner komplett neu aufzusetzen, um Balast loszuwerden. Dabei habe ich natürlich vorher ein Backup gemacht, um später wieder auf meine alten Daten und Konfigurationsdateien zugreifen zu können. Doch leider reicht es nicht, die Dateien mit cp oder rsync an die entsprechende Stelle im System zu kopieren, denn oft stimmen die User- und GruppenIDs im neuen System nicht mit dem alten überein, so dass man sie anpassen muss. Folgende Befehle ändern die alte UserID 118 in die neue UserID 114 bzw. die alte GroupID 130 in 122 ab:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">chown</span> <span style="color: #660033;">-R</span> <span style="color: #660033;">--from</span>=<span style="color: #000000;">118</span> <span style="color: #000000;">114</span> <span style="color: #000000; font-weight: bold;">*</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">chown</span> <span style="color: #660033;">-R</span> <span style="color: #660033;">--from</span>=:<span style="color: #000000;">130</span> :<span style="color: #000000;">122</span> <span style="color: #000000; font-weight: bold;">*</span></pre></div></div>

<p>Insgesamt sieht meine Vorgehensweise dann so aus, dass ich im ersten Schritt die Dateien mit rsync in ein temporäres Verzeichnis kopiere, wobei die Berechtigungen auch kopiert werden:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">rsync <span style="color: #660033;">-avHAX</span> <span style="color: #660033;">--progress</span> <span style="color: #000000; font-weight: bold;">/</span>backup<span style="color: #000000; font-weight: bold;">/</span>path <span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span>path</pre></div></div>

<p>Dann passe ich die Berechtigungen an mit obigen Befehlen und verschiebe schließlich das Verzeichnis ans Ziel</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mv</span> <span style="color: #000000; font-weight: bold;">/</span>tmp<span style="color: #000000; font-weight: bold;">/</span>path<span style="color: #000000; font-weight: bold;">/*</span> <span style="color: #000000; font-weight: bold;">/</span>target<span style="color: #000000; font-weight: bold;">/</span>path</pre></div></div>

<p>Der Zwischenschritt mit dem Verzeichnis /tmp ist nur nötig, wenn man neue und alte Dateien in einem Verzeichnis vermischt.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.effinger.org/blog/2009/12/11/berechtigungen-nach-einspielen-eines-backups-anpassen/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>DVD-Menü mit totem unter Ubuntu</title>
		<link>http://www.effinger.org/blog/2008/11/04/dvd-menu-mit-totem-unter-ubuntu/</link>
		<comments>http://www.effinger.org/blog/2008/11/04/dvd-menu-mit-totem-unter-ubuntu/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 23:08:58 +0000</pubDate>
		<dc:creator>Markus Effinger</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[DVD]]></category>
		<category><![CDATA[Multimedia]]></category>
		<category><![CDATA[totem]]></category>
		<category><![CDATA[xine]]></category>

		<guid isPermaLink="false">http://www.effinger.org/blog/?p=202</guid>
		<description><![CDATA[<p>Mit der Ubuntu-Standardinstallation hatte ich bei totem das Problem, dass das DVD-Menü einfach nicht erscheinen wollte &#8211; weder beim Start einer DVD noch beim expliziten Auswählen über Gehe zu&#62;DVD-Menü. Nach etwas Suchen im Internet bin ich auf einen Forumseintrag von steve.dreger gestoßen, der Abhilfe schafft. Mit</p>

sudo apt-get install totem-xine libxine1-plugins libxine1-ffmpeg

<p>installiert man das xine-library, so [...]]]></description>
			<content:encoded><![CDATA[<p>Mit der Ubuntu-Standardinstallation hatte ich bei totem das Problem, dass das DVD-Menü einfach nicht erscheinen wollte &#8211; weder beim Start einer DVD noch beim expliziten Auswählen über Gehe zu&gt;DVD-Menü. Nach etwas Suchen im Internet bin ich auf einen <a href="http://forum.ubuntuusers.de/topic/totem-zeigt-keine-dvd-menues-an-.../">Forumseintrag von steve.dreger</a> gestoßen, der Abhilfe schafft. Mit</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> totem-xine libxine1-plugins libxine1-ffmpeg</pre></div></div>

<p>installiert man das xine-library, so dass totem über diesen Alternativweg DVDs abspielen kann. Allerdings wird beim Start von totem standardmäßig weiterhin der Zugriff über gstreamer gewählt. Man muss totem also explizit aufrufen als</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">totem-xine</pre></div></div>

<p>oder sich einen entsprechenden Eintrag im Anwendungsmenü eintragen. Dazu einfach Rechtsklick auf &#8220;Anwendungen&#8221; (im Panel) &gt; Menüs bearbeiten und dann unter Unterhaltungsmedien das Häkchen bei &#8220;Video-Player (Xine)&#8221; setzen. So kann nun immer selbst entscheiden, welche Variante von totem man benutzen möchte.<br />
Und wenn wir schon beim Thema DVDs sind &#8211; diese lassen sich mit dvdbackup ganz einfach als Sicherungskopie auf die Festplatte kopieren. Nach einem</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> dvdbackup</pre></div></div>

<p>kann man durch Aufrufen von</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">dvdbackup <span style="color: #660033;">-M</span> -i<span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>cdrom -o<span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>user<span style="color: #000000; font-weight: bold;">/</span>dvd<span style="color: #000000; font-weight: bold;">/</span>backup<span style="color: #000000; font-weight: bold;">/</span></pre></div></div>

<p>die DVD ins Verzeichnis /home/user/dvd/backup/ sichern.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.effinger.org/blog/2008/11/04/dvd-menu-mit-totem-unter-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backup eines Ubuntu-Computers mit DAR</title>
		<link>http://www.effinger.org/blog/2008/10/05/backup-eines-ubuntu-computers-mit-dar/</link>
		<comments>http://www.effinger.org/blog/2008/10/05/backup-eines-ubuntu-computers-mit-dar/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 19:49:54 +0000</pubDate>
		<dc:creator>Markus Effinger</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[dar]]></category>

		<guid isPermaLink="false">http://www.effinger.org/blog/?p=3</guid>
		<description><![CDATA[<p>Es gibt mittlerweile viele Anleitungen, wie man ein Backup unter Ubuntu erstellen kann.  Entweder ist deren Einrichtung jedoch sehr kompliziert oder sie benutzen das Archiv-Programm tar. Letzeres muss aber stets das ganze Archiv lesen, auch wenn man nur eine einzige Datei des Backups wiederherstellen möchte und ist daher nur eingeschränkt zu empfehlen. Deshalb verwende [...]]]></description>
			<content:encoded><![CDATA[<p>Es gibt mittlerweile viele Anleitungen, wie man ein Backup unter Ubuntu erstellen kann.  Entweder ist deren Einrichtung jedoch sehr kompliziert oder sie benutzen das Archiv-Programm tar. Letzeres muss aber stets das ganze Archiv lesen, auch wenn man nur eine einzige Datei des Backups wiederherstellen möchte und ist daher nur eingeschränkt zu empfehlen. Deshalb verwende ich mittlerweile <a href="http://dar.linux.free.fr/">DAR (Disk ARchive)</a> zum Erstellen eines Backups. Dazu gibt es mittlerweile auch eine grafische Benutzeroberfläche names <a href="http://dargui.sourceforge.net/">DarGUI</a>. Auf Sourceforge wird sogar ein Debian-Paket zur Verfügung gestellt, das sich problemlos unter Ubuntu installieren lässt. Die Anwendung findet man nach der Installation unter Anwendungen/Zubehör/DarGUI.</p>
<p>Mit Hilfe von DarGUI habe ich eine Konfigurationsdatei zum Backup meiner persönlichen Daten und eine zum Backup der restlichen Dateien erstellt.<br />
databackup.cfg:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># DAR batch file written by DarGUI</span>
<span style="color: #666666; font-style: italic;"># dar -c &quot;/backup/data_20081005&quot; -B &quot;/path/to/databackup.cfg&quot; -v -X data_20081005.*.dar</span>
<span style="color: #660033;">-R</span> <span style="color: #ff0000;">&quot;/&quot;</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Dry run: this archive will not be written to file unless the next option is removed</span>
<span style="color: #666666; font-style: italic;">#--empty</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Directories to include in archive</span>
<span style="color: #660033;">-g</span> <span style="color: #ff0000;">&quot;etc&quot;</span>
<span style="color: #660033;">-g</span> <span style="color: #ff0000;">&quot;home&quot;</span>
<span style="color: #660033;">-g</span> <span style="color: #ff0000;">&quot;root&quot;</span>
<span style="color: #660033;">-g</span> <span style="color: #ff0000;">&quot;usr/local&quot;</span>
<span style="color: #660033;">-g</span> <span style="color: #ff0000;">&quot;var&quot;</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Directories to exclude from archive</span>
<span style="color: #660033;">-P</span> <span style="color: #ff0000;">&quot;lost+found&quot;</span>
<span style="color: #660033;">-P</span> <span style="color: #ff0000;">&quot;proc&quot;</span>
<span style="color: #660033;">-P</span> <span style="color: #ff0000;">&quot;var/tmp&quot;</span>
<span style="color: #660033;">-P</span> <span style="color: #ff0000;">&quot;sys&quot;</span>
<span style="color: #660033;">-P</span> <span style="color: #ff0000;">&quot;backup&quot;</span>
<span style="color: #660033;">-P</span> <span style="color: #ff0000;">&quot;bin&quot;</span>
<span style="color: #660033;">-P</span> <span style="color: #ff0000;">&quot;boot&quot;</span>
<span style="color: #660033;">-P</span> <span style="color: #ff0000;">&quot;initrd&quot;</span>
<span style="color: #660033;">-P</span> <span style="color: #ff0000;">&quot;lib&quot;</span>
<span style="color: #660033;">-P</span> <span style="color: #ff0000;">&quot;opt&quot;</span>
<span style="color: #660033;">-P</span> <span style="color: #ff0000;">&quot;sbin&quot;</span>
<span style="color: #660033;">-P</span> <span style="color: #ff0000;">&quot;srv&quot;</span>
<span style="color: #660033;">-P</span> <span style="color: #ff0000;">&quot;usr&quot;</span>
<span style="color: #660033;">-P</span> <span style="color: #ff0000;">&quot;media&quot;</span>
<span style="color: #660033;">-P</span> <span style="color: #ff0000;">&quot;cdrom&quot;</span>
<span style="color: #660033;">-P</span> <span style="color: #ff0000;">&quot;dev&quot;</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Use bzip2 compression</span>
<span style="color: #660033;">--bzip2</span>=<span style="color: #000000;">6</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Do not compress these files</span>
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.zip
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.jpg
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.bz2
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.gz
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.tgz
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.gif
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.png
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.rar
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.deb
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.avi
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.mpg
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.mpeg
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.ape
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.flac
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.mp3
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.mov
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.ace
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.7z
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.mpc
&nbsp;
<span style="color: #666666; font-style: italic;"># Preserve ignored directory names</span>
<span style="color: #660033;">-D</span></pre></div></div>

<p>programsbackup.cfg:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># DAR batch file written by DarGUI</span>
<span style="color: #666666; font-style: italic;"># dar -c &quot;/backup/programs_20081005&quot; -B &quot;/path/to/programsbackup.cfg&quot; -v -X programs_20081005.*.dar</span>
<span style="color: #660033;">-R</span> <span style="color: #ff0000;">&quot;/&quot;</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Dry run: this archive will not be written to file unless the next option is removed</span>
<span style="color: #666666; font-style: italic;">#--empty</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Directories to include in archive</span>
<span style="color: #660033;">-g</span> <span style="color: #ff0000;">&quot;bin&quot;</span>
<span style="color: #660033;">-g</span> <span style="color: #ff0000;">&quot;boot&quot;</span>
<span style="color: #660033;">-g</span> <span style="color: #ff0000;">&quot;cdrom&quot;</span>
<span style="color: #660033;">-g</span> <span style="color: #ff0000;">&quot;dev&quot;</span>
<span style="color: #660033;">-g</span> <span style="color: #ff0000;">&quot;initrd&quot;</span>
<span style="color: #660033;">-g</span> <span style="color: #ff0000;">&quot;lib&quot;</span>
<span style="color: #660033;">-g</span> <span style="color: #ff0000;">&quot;opt&quot;</span>
<span style="color: #660033;">-g</span> <span style="color: #ff0000;">&quot;sbin&quot;</span>
<span style="color: #660033;">-g</span> <span style="color: #ff0000;">&quot;srv&quot;</span>
<span style="color: #660033;">-g</span> <span style="color: #ff0000;">&quot;usr&quot;</span>
<span style="color: #660033;">-g</span> <span style="color: #ff0000;">&quot;media&quot;</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Directories to exclude from archive</span>
<span style="color: #660033;">-P</span> <span style="color: #ff0000;">&quot;lost+found&quot;</span>
<span style="color: #660033;">-P</span> <span style="color: #ff0000;">&quot;proc&quot;</span>
<span style="color: #660033;">-P</span> <span style="color: #ff0000;">&quot;var/tmp&quot;</span>
<span style="color: #660033;">-P</span> <span style="color: #ff0000;">&quot;sys&quot;</span>
<span style="color: #660033;">-P</span> <span style="color: #ff0000;">&quot;backup&quot;</span>
<span style="color: #660033;">-P</span> <span style="color: #ff0000;">&quot;usr/local&quot;</span>
<span style="color: #660033;">-P</span> <span style="color: #ff0000;">&quot;etc&quot;</span>
<span style="color: #660033;">-P</span> <span style="color: #ff0000;">&quot;home&quot;</span>
<span style="color: #660033;">-P</span> <span style="color: #ff0000;">&quot;root&quot;</span>
<span style="color: #660033;">-P</span> <span style="color: #ff0000;">&quot;usr/local&quot;</span>
<span style="color: #660033;">-P</span> <span style="color: #ff0000;">&quot;var&quot;</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Use bzip2 compression</span>
<span style="color: #660033;">--bzip2</span>=<span style="color: #000000;">6</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Do not compress these files</span>
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.zip
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.jpg
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.bz2
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.gz
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.tgz
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.gif
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.png
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.rar
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.deb
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.avi
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.mpg
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.mpeg
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.ape
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.flac
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.mp3
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.mov
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.ace
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.7z
<span style="color: #660033;">-Z</span> <span style="color: #000000; font-weight: bold;">*</span>.mpc
&nbsp;
<span style="color: #666666; font-style: italic;"># Preserve ignored directory names</span>
<span style="color: #660033;">-D</span></pre></div></div>

<p>Aufgerufen werden die Dateien so:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">dar <span style="color: #660033;">-c</span> <span style="color: #ff0000;">&quot;/path/tobackup/backupfile_date&quot;</span> <span style="color: #660033;">-B</span> <span style="color: #ff0000;">&quot;/path/to/file.cfg&quot;</span> <span style="color: #660033;">-v</span> <span style="color: #660033;">-X</span> backupfile_date.<span style="color: #000000; font-weight: bold;">*</span>.dar</pre></div></div>

<p>Falls man nun Knoppix verwendet, das leider dar noch nicht standardmäßig enthält, kann man sich behelfen, indem man die aktuellste Version des Pakets <a href="http://packages.debian.org/stable/dar-static">dar-static aus den Debian Repositories</a> herunterlädt und mit</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">dpkg</span> <span style="color: #660033;">-i</span> <span style="color: #000000; font-weight: bold;">/</span>path<span style="color: #000000; font-weight: bold;">/</span>to<span style="color: #000000; font-weight: bold;">/</span>dar-static<span style="color: #000000; font-weight: bold;">*</span>.deb</pre></div></div>

<p>installiert. Aufrufen lässt sich dar dann mit &#8220;dar_static&#8221;.</p>
<p>Ein Backup lässt sich mit folgendem Befehl wieder einspielen:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> dar <span style="color: #660033;">-x</span> <span style="color: #000000; font-weight: bold;">/</span>path<span style="color: #000000; font-weight: bold;">/</span>to<span style="color: #000000; font-weight: bold;">/</span>backup.dar <span style="color: #660033;">-R</span> <span style="color: #000000; font-weight: bold;">/</span>path<span style="color: #000000; font-weight: bold;">/</span>to<span style="color: #000000; font-weight: bold;">/</span>restore</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.effinger.org/blog/2008/10/05/backup-eines-ubuntu-computers-mit-dar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
