<?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>mgBlog &#187; NAS</title>
	<atom:link href="http://mgsimon.de/tag/nas/feed/" rel="self" type="application/rss+xml" />
	<link>http://mgsimon.de</link>
	<description>Esc(ape), einfach ein anderes Blog über technische Spielerei ...</description>
	<lastBuildDate>Sun, 18 Dec 2011 08:52:23 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>MyBookWorld MioNet Bug</title>
		<link>http://mgsimon.de/2010/04/16/mybookworld-mionet-bug/</link>
		<comments>http://mgsimon.de/2010/04/16/mybookworld-mionet-bug/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 05:23:31 +0000</pubDate>
		<dc:creator>mg</dc:creator>
				<category><![CDATA[Linux & Unix]]></category>
		<category><![CDATA[uup]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[NAS]]></category>

		<guid isPermaLink="false">http://mgsimon.de/?p=2300</guid>
		<description><![CDATA[NAS MyBookWorld aktualisiert und der Ruhezustand ist in weite Ferne ger&#252;ckt? Auf der Suche nach dem &#220;belt&#228;ter sind mir Prozesse im Zusammenhang mit MioNet aufgefallen. Unabh&#228;ngig der Einstellung im Network Manager unter Remotezugriff wird der Dienst MioNet gestartet. Da muss sich im letzten Firmware-Update ein kleiner Fehler eingeschlichen haben. Das Start- / Stop-Skript /etc/init.d/S9M_mionet steuert [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://mgsimon.de/2009/12/27/mybookworld-und-firmware-aktualisierung/">NAS MyBookWorld aktualisiert</a> und der Ruhezustand ist in weite Ferne ger&#252;ckt? Auf der Suche nach dem &#220;belt&#228;ter sind mir Prozesse im Zusammenhang mit MioNet aufgefallen. </p>
<div id="attachment_2308" class="wp-caption alignnone" style="width: 452px"><img src="http://mgsimon.de/wp-content/uploads/2010/04/MyBookWorldEditionIINetworkmanagerRemotezugriffMioNet.png" alt="MyBookWorldEdition II :: Networkmanager / Remotezugriff MioNet" title="MyBookWorldEdition II :: Networkmanager / Remotezugriff MioNet" width="442" height="272" class="size-full wp-image-2308 stamp" /><p class="wp-caption-text">MyBookWorldEdition II :: Networkmanager / Remotezugriff MioNet</p></div>
<p>Unabh&#228;ngig der Einstellung im Network Manager unter Remotezugriff wird der Dienst MioNet gestartet. Da muss sich im letzten Firmware-Update ein kleiner Fehler eingeschlichen haben.</p>
<p><span id="more-2300"></span><div style="background-color: rgb(191, 228, 255); border:1px solid rgb(128, 201, 255); color: rgb(0, 0, 0); margin:0 0 1.5em; overflow:auto; padding: 3px;">
<img src="/wp-content/plugins/MyShortCodes/info.png" alt="Hinweis" title="Hinweis" width="24" height="24" style="margin: 4px 8px 0 0; float:left;"/>Der Fehler ist in der folgenden Konfiguration aufgetreten. Western Digital WDH2NC20000E My Book World Edition II 2TB NAS externe Festplatte, Firmware-Version 01.01.16 with MioNet 4.1.0.0.171</div></p>
<p>Das Start- / Stop-Skript /etc/init.d/S9M_mionet steuert mit der folgenden Bedingung &#252;ber die Semaphore /etc/.mionet_on_startup die Verf&#252;gbarkeit.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #000000; font-weight: bold;">!</span> <span style="color: #660033;">-f</span> <span style="color: #ff0000;">&quot;/etc/.mionet_on_startup&quot;</span>  <span style="color: #7a0874; font-weight: bold;">&#93;</span>; <span style="color: #000000; font-weight: bold;">then</span>
	<span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">1</span>
<span style="color: #000000; font-weight: bold;">fi</span></pre></div></div>

<p>Wer oder was startet MioNet in regelm&#228;&#223;igen Abst&#228;nden?</p>
<p>Die Suche im MioNet-Installationsverzeichnis (/usr/mionet) zeigt den merkw&#252;rdigen Eintrag in monitorCVM.sh.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">## This will be called by Wistron's HW monitoring daemon every 1330 seconds.</span></pre></div></div>

<p><strong>L&#246;sung</strong></p>
<p>Einfach die Bedingung aus S9M_mionet am Anfang in monitorCVM.sh einf&#252;gen, dann ist endlich in Abh&#228;ngigkeit der Konfiguration Ruhe im NAS. :-)</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/sh                                                                   </span>
...
<span style="color: #666666; font-style: italic;">#        do not add additional echos inside the function. (?)</span>
<span style="color: #666666; font-style: italic;">#                                                            </span>
&nbsp;
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #000000; font-weight: bold;">!</span> <span style="color: #660033;">-f</span> <span style="color: #ff0000;">&quot;/etc/.mionet_on_startup&quot;</span>  <span style="color: #7a0874; font-weight: bold;">&#93;</span>; <span style="color: #000000; font-weight: bold;">then</span>                 
 <span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">1</span>                                                      
<span style="color: #000000; font-weight: bold;">fi</span>                                                           
&nbsp;
<span style="color: #007800;">DATE</span>=<span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">date</span><span style="color: #000000; font-weight: bold;">`</span>;                                                 
...</pre></div></div>

<p>/usr/mionet/monitorCVM.sh</p>
]]></content:encoded>
			<wfw:commentRss>http://mgsimon.de/2010/04/16/mybookworld-mionet-bug/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MyBookWorld und Firmware-Aktualisierung</title>
		<link>http://mgsimon.de/2009/12/27/mybookworld-und-firmware-aktualisierung/</link>
		<comments>http://mgsimon.de/2009/12/27/mybookworld-und-firmware-aktualisierung/#comments</comments>
		<pubDate>Sun, 27 Dec 2009 10:57:40 +0000</pubDate>
		<dc:creator>mg</dc:creator>
				<category><![CDATA[Linux & Unix]]></category>
		<category><![CDATA[uup]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[NAS]]></category>

		<guid isPermaLink="false">http://mgsimon.de/?p=1946</guid>
		<description><![CDATA[Gestern habe ich &#252;ber den Network Storage Manger die Firmware vom MyBookWorld NAS aktualisiert. 01.01.16 with MioNet 2.4.0.62 **built on Fri Nov 6 13:28:12 CST 2009 Und was hat&#8217;s gebracht? $ crontab -l crontab: cannot change dir to /var/spool/cron/crontabs: No such file or directory Die Cron-Eintr&#228;ge sind nicht mehr vorhanden, das Skript &#8220;rsnyc.sh&#8221; und Start- [...]]]></description>
			<content:encoded><![CDATA[<p>Gestern habe ich &#252;ber den Network Storage Manger die Firmware vom <a target="_blank" href="http://www.amazon.de/dp/B0020MLQ3Q/ref=nosim?tag=mgs-21" rel="nofollow">MyBookWorld NAS</a> aktualisiert.</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">01.01.16 with MioNet 2.4.0.62
**built on Fri Nov 6 13:28:12 CST 2009</pre></div></div>

<p>Und was hat&#8217;s gebracht?</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ crontab <span style="color: #660033;">-l</span>
crontab: cannot change <span style="color: #c20cb9; font-weight: bold;">dir</span> to <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>spool<span style="color: #000000; font-weight: bold;">/</span>cron<span style="color: #000000; font-weight: bold;">/</span>crontabs: No such <span style="color: #c20cb9; font-weight: bold;">file</span> or directory</pre></div></div>

<p>Die Cron-Eintr&#228;ge sind nicht mehr vorhanden, das Skript &#8220;rsnyc.sh&#8221; und Start- / Stopskript &#8220;S92cron&#8221; wurden auch entfernt. :(</p>
<p>Eine kleine Erg&#228;nzung zu dem Artikel <a href="http://mgsimon.de/2009/11/15/mybookworld-backup/">MyBookWorld Backup</a> oder besser <a href="http://mgsimon.de/2009/12/09/mybookworld-backup-jbod/">MyBookWorld Backup JBOD</a> &#8230;</p>
<p><span id="more-1946"></span><div style="background-color: rgb(255, 204, 191); border:1px solid rgb(255, 153, 128); color: rgb(0, 0, 0); margin:0 0 1.5em; overflow:auto; padding: 3px;">
<img src="/wp-content/plugins/MyShortCodes/warn.png" alt="Warnung" title="Warnung" width="24" height="24" style="margin: 4px 8px 0 0; float:left;" />Nach einer Firmware-Aktualisierung und eigene &#196;nderungen im MyBookWorld System unbedingt das Backup u.&#228;. &#252;berpr&#252;fen.</div></p>
<p><strong>Skript</strong></p>
<p>Damit nicht nach jeder Firmware-Aktualisierung das NAS f&#252;r das Backup manuell eingerichtet werden muss, habe ich mir schnell das folgende Skript und notwendige Dateien zur einfachen Einrichtung auf einer Datenfreigabe abgelegt.</p>
<p>Skript setup.sh (<em>dirty</em>; f&#252;r die Einrichtung im Verzeichnis der anderen Dateien ausf&#252;hren ./setup.sh).</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/sh</span>
<span style="color: #c20cb9; font-weight: bold;">cp</span> rsync.sh <span style="color: #000000; font-weight: bold;">/</span>root<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">cp</span> S92cron <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>init.d<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #660033;">-p</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>spool<span style="color: #000000; font-weight: bold;">/</span>cron<span style="color: #000000; font-weight: bold;">/</span>crontabs
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;0 4 * * * /root/rsync.sh&quot;</span> <span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>spool<span style="color: #000000; font-weight: bold;">/</span>cron<span style="color: #000000; font-weight: bold;">/</span>crontabs<span style="color: #000000; font-weight: bold;">/</span>root
<span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>init.d<span style="color: #000000; font-weight: bold;">/</span>S92cron start</pre></div></div>

<p>Dateien (chmod 755 *)</p>
<ul>
<li>S92cron</li>
<li>rsync.sh</li>
<li>setup.sh</li>
</ul>
<p><strong>Aber wie gesagt &#8230;</strong></p>
<div style="background-color: rgb(191, 255, 191); border:1px solid rgb(128, 255, 128); color: rgb(0, 0, 0); margin:0 0 1.5em; overflow:auto; padding: 3px;">
<img src="/wp-content/plugins/MyShortCodes/tip.png" alt="Tipp" title="Tipp" width="24" height="24" style="margin: 4px 8px 0 0; float:left;" />Backup pr&#252;fen, pr&#252;fen und pr&#252;fen &#8230;<br />
Ein Backup ist immer nur so gut wie der Restore!</div>
<p><strong>Apropos; Und was hat&#8217;s gebracht?</strong></p>
<p>Der Medienserver &#8220;Twonky Media&#8221; scheint seit der Aktualisierung mit der PS3 besser zu laufen und <a href="http://www.wdc.com/wdproducts/updates/?family=mbworld">mehr (Release Notes)</a> &#8230;  :)</p>
]]></content:encoded>
			<wfw:commentRss>http://mgsimon.de/2009/12/27/mybookworld-und-firmware-aktualisierung/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>MyBookWorld Backup JBOD</title>
		<link>http://mgsimon.de/2009/12/09/mybookworld-backup-jbod/</link>
		<comments>http://mgsimon.de/2009/12/09/mybookworld-backup-jbod/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 17:00:10 +0000</pubDate>
		<dc:creator>mg</dc:creator>
				<category><![CDATA[Linux & Unix]]></category>
		<category><![CDATA[uup]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[NAS]]></category>

		<guid isPermaLink="false">http://mgsimon.de/?p=1614</guid>
		<description><![CDATA[Das NAS MyBookWolrd kann im Modus RAID-0, RAID-1 oder JBOD betrieben werden. Im Artikel MyBookWolrd Backup wurden im Modus RAID-1 zus&#228;tzlich die Daten mit rsync dupliziert. Leider verbraucht das MyBookWorld NAS viel Speicher im RAID-1-Modus f&#252;r die zus&#228;tzliche Sicherung (2 TB / 2 (Spiegelung) / 2 (rsync) = 500 GB). Wieso die Spiegelung, wenn schon [...]]]></description>
			<content:encoded><![CDATA[<p>Das NAS MyBookWolrd kann im Modus <a href="http://de.wikipedia.org/wiki/RAID">RAID-0</a>, <a href="http://de.wikipedia.org/wiki/RAID">RAID-1</a> oder <a href="http://de.wikipedia.org/wiki/RAID">JBOD</a> betrieben werden. Im Artikel <a href="http://mgsimon.de/2009/11/15/mybookworld-backup/">MyBookWolrd Backup</a> wurden im Modus RAID-1 zus&auml;tzlich die Daten mit rsync dupliziert. Leider verbraucht das <a target="_blank" href="http://www.amazon.de/dp/B0020MLQ3Q/ref=nosim?tag=mgs-21" rel="nofollow">MyBookWorld NAS</a> viel Speicher im RAID-1-Modus f&#252;r die zus&#228;tzliche Sicherung (2 TB / 2 (Spiegelung) / 2 (rsync) = 500 GB). Wieso die Spiegelung, wenn schon nach jeder Synchronisation durch rsync eine Sicherung vorhanden ist? Hier eine Idee &#8230;</p>
<div id="attachment_1628" class="wp-caption alignnone" style="width: 452px"><img src="http://mgsimon.de/wp-content/uploads/2009/11/MyBookWorldBackupJBOD.png" alt="Offline Notizen :: Backup JBOD" title="MyBookWorldBackupJBOD" width="442" height="332" class="size-full wp-image-1628 stamp" /><p class="wp-caption-text">Offline Notizen :: Backup JBOD</p></div>
<p>&#8230; und die Umsetzung.</p>
<p><span id="more-1614"></span><div style="background-color: rgb(191, 228, 255); border:1px solid rgb(128, 201, 255); color: rgb(0, 0, 0); margin:0 0 1.5em; overflow:auto; padding: 3px;">
<img src="/wp-content/plugins/MyShortCodes/info.png" alt="Hinweis" title="Hinweis" width="24" height="24" style="margin: 4px 8px 0 0; float:left;"/>Die Anpassungen beziehen sich auf die folgende Konfiguration.<br />
Western Digital WDH2NC20000E My Book World Edition II 2TB NAS externe Festplatte, Firmware-Version 01.01.14</div></p>
<p><strong>Modus JBOD</strong></p>
<p>JBOD (Just a Bunch of Disks) &#8211; Im JBOD-Modus werden zwei Laufwerke als<br />
zwei separate Datentr&#228;ger bereitgestellt. Dies ist der einzige Modus f&#252;r<br />
My Book World Edition II, bei dem es zwei Datenvolumes gibt. </p>
<p>Wenn eines der beiden Laufwerke in einem JBOD-Datentr&#228;ger ausf&#228;llt, sind nur die Daten auf diesem Laufwerk verloren.</p>
<div style="background-color: rgb(255, 204, 191); border:1px solid rgb(255, 153, 128); color: rgb(0, 0, 0); margin:0 0 1.5em; overflow:auto; padding: 3px;">
<img src="/wp-content/plugins/MyShortCodes/warn.png" alt="Warnung" title="Warnung" width="24" height="24" style="margin: 4px 8px 0 0; float:left;" />Alle Daten sichern, bevor die RAID-Konfiguration ge&#228;ndert wird. Alle auf den Festplatten gespeicherten Daten gehen beim &#196;ndern der RAID-Konfiguration verloren.<br />
Startkonfiguration RAID 1 (Gespiegelt) > Endekonfiguration JBOD (2 Datentr&#228;ger) = Benutzerdatenstatus: <strong>Gel&#246;scht</strong></div>
<p>Im erweiterten Modus unter &#8220;Speicherger&#228;t / Datentr&#228;ger &#038; RAID-Verwaltung / RAID verwalten&#8221; RAID Konfiguration JBOD ausw&#228;hlen.</p>
<div id="attachment_1621" class="wp-caption alignnone" style="width: 452px"><img src="http://mgsimon.de/wp-content/uploads/2009/11/MyBookWorldNetworkStorageManagerRAIDVerwaltung.png" alt="NetworkStorageManager :: RAID Verwaltung" title="MyBookWorldNetworkStorageManagerRAIDVerwaltung" width="442" height="254" class="size-full wp-image-1621 stamp" /><p class="wp-caption-text">NetworkStorageManager :: RAID Verwaltung</p></div>
<p><strong>Freigaben</strong></p>
<p>Die Freigabe zur Sicherung und f&#252;r die Daten auf separate Volumes einrichten!</p>
<p>Im NetworkStorageManager unter Ordnerfreigaben eine Freigabe “Trash” auf dem Quelllaufwerk (DataVolume) anlegen. </p>
<p>F&#252;r die Sicherung die Freigabe Snapshot auf dem zweiten Laufwerk (ExtendVolume) mit lesendem Zugriff erzeugen.</p>
<p><strong>rsync</strong></p>
<p>Der erste Test und das mit nur einem Befehl. :-)</p>
<p>Die Quelle und das Ziel auf separate Volumes angeben!</p>
<div style="background-color: rgb(255, 204, 191); border:1px solid rgb(255, 153, 128); color: rgb(0, 0, 0); margin:0 0 1.5em; overflow:auto; padding: 3px;">
<img src="/wp-content/plugins/MyShortCodes/warn.png" alt="Warnung" title="Warnung" width="24" height="24" style="margin: 4px 8px 0 0; float:left;" />rsync ist m&#228;chtig und kann mit falschen Parameter auch Schaden anrichten. Nur ein Slash in der Quellangabe zuviel und das Durcheinander ist vorprogrammiert. Lieber einmal zuviel RTFM (siehe <a href="http://wiki.ubuntuusers.de/rsync">rsync bei ubuntuusers.de</a>).</div>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ rsync <span style="color: #660033;">-ab</span> <span style="color: #660033;">--delete</span> <span style="color: #660033;">--backup-dir</span>=<span style="color: #000000; font-weight: bold;">/</span>DataVolume<span style="color: #000000; font-weight: bold;">/</span>Trash<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #660033;">--exclude</span>=Trash<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #660033;">--exclude</span>=_torrent_<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #660033;">--exclude</span>=jewab<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000; font-weight: bold;">/</span>DataVolume<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000; font-weight: bold;">/</span>ExtendVolume<span style="color: #000000; font-weight: bold;">/</span>Snapshot<span style="color: #000000; font-weight: bold;">/</span>
        <span style="color: #660033;">---</span> <span style="color: #660033;">--------</span> <span style="color: #660033;">-------------------------------</span> <span style="color: #660033;">------------------------------------------------------</span> <span style="color: #660033;">------------</span> <span style="color: #660033;">-----------------------</span>
         <span style="color: #000000; font-weight: bold;">|</span>     <span style="color: #000000; font-weight: bold;">|</span>                  <span style="color: #000000; font-weight: bold;">|</span>                                            <span style="color: #000000; font-weight: bold;">|</span>                                 <span style="color: #000000; font-weight: bold;">|</span>                 <span style="color: #000000; font-weight: bold;">|</span>
         <span style="color: #000000; font-weight: bold;">|</span>     <span style="color: #000000; font-weight: bold;">|</span>                  <span style="color: #000000; font-weight: bold;">|</span>                                            <span style="color: #000000; font-weight: bold;">|</span>                                 <span style="color: #000000; font-weight: bold;">|</span>       Zielverzeichnis
         <span style="color: #000000; font-weight: bold;">|</span>     <span style="color: #000000; font-weight: bold;">|</span>                  <span style="color: #000000; font-weight: bold;">|</span>                                            <span style="color: #000000; font-weight: bold;">|</span>                                 <span style="color: #000000; font-weight: bold;">|</span>
         <span style="color: #000000; font-weight: bold;">|</span>     <span style="color: #000000; font-weight: bold;">|</span>                  <span style="color: #000000; font-weight: bold;">|</span>                                            <span style="color: #000000; font-weight: bold;">|</span>                            Quellverzeichnis
         <span style="color: #000000; font-weight: bold;">|</span>     <span style="color: #000000; font-weight: bold;">|</span>                  <span style="color: #000000; font-weight: bold;">|</span>                                            <span style="color: #000000; font-weight: bold;">|</span>
         <span style="color: #000000; font-weight: bold;">|</span>     <span style="color: #000000; font-weight: bold;">|</span>                  <span style="color: #000000; font-weight: bold;">|</span>                  Auszuschliessende Verzeichnisse relativ zur Quelle <span style="color: #7a0874; font-weight: bold;">&#40;</span>insb. Trash<span style="color: #000000; font-weight: bold;">/</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
         <span style="color: #000000; font-weight: bold;">|</span>     <span style="color: #000000; font-weight: bold;">|</span>                  <span style="color: #000000; font-weight: bold;">|</span>
         <span style="color: #000000; font-weight: bold;">|</span>     <span style="color: #000000; font-weight: bold;">|</span>     Sicherungsverzeichnis für gelöschte oder veränderte Dateien
         <span style="color: #000000; font-weight: bold;">|</span>     <span style="color: #000000; font-weight: bold;">|</span>
         <span style="color: #000000; font-weight: bold;">|</span>  existierende Dateien im Zielverzeichnis löschen
         <span style="color: #000000; font-weight: bold;">|</span>
        Option Archiv und Backup</pre></div></div>

<p>Als Skript &#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/sh</span>
<span style="color: #c20cb9; font-weight: bold;">killall</span> rsync
rsync <span style="color: #660033;">-ab</span> <span style="color: #660033;">--delete</span> <span style="color: #660033;">--backup-dir</span>=<span style="color: #000000; font-weight: bold;">/</span>DataVolume<span style="color: #000000; font-weight: bold;">/</span>Trash<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #660033;">--exclude</span>=Trash<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #660033;">--exclude</span>=_torrent_<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #660033;">--exclude</span>=jewab<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000; font-weight: bold;">/</span>DataVolume<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000; font-weight: bold;">/</span>ExtendVolume<span style="color: #000000; font-weight: bold;">/</span>Snapshot<span style="color: #000000; font-weight: bold;">/</span></pre></div></div>

<p><strong>Sonstiges</strong></p>
<p>Siehe <a href="http://mgsimon.de/2009/11/15/mybookworld-backup/">MyBookWorld Backup</a> f&#252;r den <strong>SSH-Zugang</strong>, <strong>crond</strong> und <strong>cronjob</strong>.</p>
<p><strong>Backup</strong></p>
<p>Die im rsync-Skript eingetragene Verzeichnisse werden einmal pro Tag gesichert. Gel&#246;schte oder ge&#228;nderte Dateien (schon gesicherter) landen nach der n&#228;chsten Duplizierung in der Freigabe “Trash” und k&#246;nnen endg&#252;ltig gel&#246;scht oder zur&#252;ck kopiert werden. Einziger Nachteil … die Daten sind erst nach der n&#228;chsten Synchronisierung gesichert … </p>
<div style="background-color: rgb(191, 255, 191); border:1px solid rgb(128, 255, 128); color: rgb(0, 0, 0); margin:0 0 1.5em; overflow:auto; padding: 3px;">
<img src="/wp-content/plugins/MyShortCodes/tip.png" alt="Tipp" title="Tipp" width="24" height="24" style="margin: 4px 8px 0 0; float:left;" />Backup pr&#252;fen, pr&#252;fen und pr&#252;fen &#8230;<br />
Ein Backup ist immer nur so gut wie der Restore!</div>
<p>&#8230; danke Nachbar. :)</p>
]]></content:encoded>
			<wfw:commentRss>http://mgsimon.de/2009/12/09/mybookworld-backup-jbod/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MyBookWorld Backup</title>
		<link>http://mgsimon.de/2009/11/15/mybookworld-backup/</link>
		<comments>http://mgsimon.de/2009/11/15/mybookworld-backup/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 11:52:15 +0000</pubDate>
		<dc:creator>mg</dc:creator>
				<category><![CDATA[Linux & Unix]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[NAS]]></category>

		<guid isPermaLink="false">http://mgsimon.de/?p=1302</guid>
		<description><![CDATA[Der Netzwerkspeicher MyBookWorld NAS ist eine gute (siehe Testbericht bei Tom&#8217;s Hardware) und g&#252;nstige M&#246;glichkeit f&#252;r Datensicherungen im eigenen Netz. Zus&#228;tzlich k&#246;nnen die Daten durch die Spiegelung (RAID-1) vor Fehler in der harten Ware gesch&#252;tzt werden. Aber was ist mit den selbst erstellten oder gesammelten Daten auf dem NAS? Ein versehentliches L&#246;schen oder nicht funktionierende [...]]]></description>
			<content:encoded><![CDATA[<p>Der Netzwerkspeicher <a target="_blank" href="http://www.amazon.de/dp/B0020MLQ3Q/ref=nosim?tag=mgs-21" rel="nofollow">MyBookWorld NAS</a> ist eine gute (siehe <a href="http://www.tomshardware.com/de/NAS-MyBook-Thecus-WD,testberichte-240377-2.html">Testbericht bei Tom&#8217;s Hardware</a>) und g&#252;nstige M&#246;glichkeit f&#252;r Datensicherungen im eigenen Netz. Zus&#228;tzlich k&#246;nnen die Daten durch die Spiegelung (<a href="http://de.wikipedia.org/wiki/RAID">RAID-1</a>) vor Fehler in der harten Ware gesch&#252;tzt werden. Aber was ist mit den selbst erstellten oder gesammelten Daten auf dem NAS? Ein versehentliches L&#246;schen oder nicht funktionierende Weichware und die Daten sind hin. Hier eine Idee &#8230; </p>
<p><img src="http://mgsimon.de/wp-content/uploads/2009/11/NASBackup.png" alt="NASBackup" title="NASBackup" width="442" height="293" class="alignnone size-full wp-image-1537 stamp" /></p>
<p style="text-align: center;"><em>Offline Notizen :: Backup</em></p>
<p>&#8230; und die Umsetzung.</p>
<p><span id="more-1302"></span><div style="background-color: rgb(191, 228, 255); border:1px solid rgb(128, 201, 255); color: rgb(0, 0, 0); margin:0 0 1.5em; overflow:auto; padding: 3px;">
<img src="/wp-content/plugins/MyShortCodes/info.png" alt="Hinweis" title="Hinweis" width="24" height="24" style="margin: 4px 8px 0 0; float:left;"/>Die Anpassungen beziehen sich auf die folgende Konfiguration.<br />
Western Digital WDH2NC20000E My Book World Edition II 2TB NAS externe Festplatte, Firmware-Version 01.01.14</div></p>
<p><strong>Freigabe Trash</strong></p>
<p>Im NetworkStorageManager unter Ordnerfreigaben eine Freigabe &#8220;Trash&#8221; anlegen.</p>
<p><img src="http://mgsimon.de/wp-content/uploads/2009/11/MyBookWorldNetworkStorageManagerOrdnerfreigaben.png" alt="MyBookWorldNetworkStorageManagerOrdnerfreigaben" title="MyBookWorldNetworkStorageManagerOrdnerfreigaben" width="442" height="161" class="alignnone size-full wp-image-1352 stamp" /></p>
<p style="text-align: center;"><em>NetworkStorageManager :: Ordnerfreigaben</em></p>
<p><strong>SSH-Zugang</strong></p>
<p>Im NetworkStorageManager im erweiterten Modus unter &#8220;System / Erweitert&#8221; SSH-Zugriff aktivieren. </p>
<p><img src="http://mgsimon.de/wp-content/uploads/2009/11/MyBookWorldNetworkStorageManagerSystemErweitert.png" alt="MyBookWorldNetworkStorageManagerSystemErweitert" title="MyBookWorldNetworkStorageManagerSystemErweitert" width="442" height="138" class="alignnone size-full wp-image-1349 stamp" /></p>
<p style="text-align: center;"><em>NetworkStorageManager :: System / Erweitert</em></p>
<p><strong>rsync</strong></p>
<p>Snapshot-Verzeichnis erstellen.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">ssh</span> root<span style="color: #000000; font-weight: bold;">@</span>IP-Adresse
$ <span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #660033;">-p</span> <span style="color: #000000; font-weight: bold;">/</span>DataVolume<span style="color: #000000; font-weight: bold;">/</span>Snapshot</pre></div></div>

<p>Der erste Test und das mit nur einem Befehl. :-)</p>
<div style="background-color: rgb(255, 204, 191); border:1px solid rgb(255, 153, 128); color: rgb(0, 0, 0); margin:0 0 1.5em; overflow:auto; padding: 3px;">
<img src="/wp-content/plugins/MyShortCodes/warn.png" alt="Warnung" title="Warnung" width="24" height="24" style="margin: 4px 8px 0 0; float:left;" />rsync ist m&#228;chtig und kann mit falschen Parameter auch Schaden anrichten. Nur ein Slash in der Quellangabe zuviel und das Durcheinander ist vorprogrammiert. Lieber einmal zuviel RTFM (siehe <a href="http://wiki.ubuntuusers.de/rsync">rsync bei ubuntuusers.de</a>).</div>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ rsync <span style="color: #660033;">-ab</span> <span style="color: #660033;">--delete</span> <span style="color: #660033;">--backup-dir</span>=<span style="color: #000000; font-weight: bold;">/</span>DataVolume<span style="color: #000000; font-weight: bold;">/</span>Trash<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000; font-weight: bold;">/</span>DataVolume<span style="color: #000000; font-weight: bold;">/</span>Public <span style="color: #000000; font-weight: bold;">/</span>DataVolume<span style="color: #000000; font-weight: bold;">/</span>Snapshot<span style="color: #000000; font-weight: bold;">/</span>
        <span style="color: #660033;">---</span> <span style="color: #660033;">--------</span> <span style="color: #660033;">-------------------------------</span> <span style="color: #660033;">------------------</span> <span style="color: #660033;">---------------------</span>
         <span style="color: #000000; font-weight: bold;">|</span>     <span style="color: #000000; font-weight: bold;">|</span>                  <span style="color: #000000; font-weight: bold;">|</span>                         <span style="color: #000000; font-weight: bold;">|</span>                    <span style="color: #000000; font-weight: bold;">|</span>
         <span style="color: #000000; font-weight: bold;">|</span>     <span style="color: #000000; font-weight: bold;">|</span>                  <span style="color: #000000; font-weight: bold;">|</span>                         <span style="color: #000000; font-weight: bold;">|</span>          Zielverzeichnis
         <span style="color: #000000; font-weight: bold;">|</span>     <span style="color: #000000; font-weight: bold;">|</span>                  <span style="color: #000000; font-weight: bold;">|</span>                         <span style="color: #000000; font-weight: bold;">|</span>          
         <span style="color: #000000; font-weight: bold;">|</span>     <span style="color: #000000; font-weight: bold;">|</span>                  <span style="color: #000000; font-weight: bold;">|</span>                 Quellverzeichnis wichtig ohne abschliessendem <span style="color: #000000; font-weight: bold;">/</span>
         <span style="color: #000000; font-weight: bold;">|</span>     <span style="color: #000000; font-weight: bold;">|</span>                  <span style="color: #000000; font-weight: bold;">|</span>
         <span style="color: #000000; font-weight: bold;">|</span>     <span style="color: #000000; font-weight: bold;">|</span>    Sicherungsverzeichnis für gelöschte oder veränderte Dateien 
         <span style="color: #000000; font-weight: bold;">|</span>     <span style="color: #000000; font-weight: bold;">|</span>
         <span style="color: #000000; font-weight: bold;">|</span> existierende Dateien im Zielverzeichnis löschen
         <span style="color: #000000; font-weight: bold;">|</span>
        Option Archiv und Backup</pre></div></div>

<p>Als Skript &#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/sh</span>
<span style="color: #c20cb9; font-weight: bold;">killall</span> rsync
rsync <span style="color: #660033;">-ab</span> <span style="color: #660033;">--delete</span> <span style="color: #660033;">--backup-dir</span>=<span style="color: #000000; font-weight: bold;">/</span>DataVolume<span style="color: #000000; font-weight: bold;">/</span>Trash<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000; font-weight: bold;">/</span>DataVolume<span style="color: #000000; font-weight: bold;">/</span>Public <span style="color: #000000; font-weight: bold;">/</span>DataVolume<span style="color: #000000; font-weight: bold;">/</span>Snapshot<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>log<span style="color: #000000; font-weight: bold;">/</span>rsync.log <span style="color: #000000;">2</span><span style="color: #000000; font-weight: bold;">&gt;&amp;</span><span style="color: #000000;">1</span>        
rsync <span style="color: #660033;">-ab</span> <span style="color: #660033;">--delete</span> <span style="color: #660033;">--backup-dir</span>=<span style="color: #000000; font-weight: bold;">/</span>DataVolume<span style="color: #000000; font-weight: bold;">/</span>Trash<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000; font-weight: bold;">/</span>DataVolume<span style="color: #000000; font-weight: bold;">/</span>MeineFreigabe <span style="color: #000000; font-weight: bold;">/</span>DataVolume<span style="color: #000000; font-weight: bold;">/</span>Snapshot<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>log<span style="color: #000000; font-weight: bold;">/</span>rsync.log <span style="color: #000000;">2</span><span style="color: #000000; font-weight: bold;">&gt;&amp;</span><span style="color: #000000;">1</span>
...</pre></div></div>

<p>&#8230; auf das NAS kopiert.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">scp</span> rsync.sh root<span style="color: #000000; font-weight: bold;">@</span>IP-Adresse:<span style="color: #000000; font-weight: bold;">/</span>root<span style="color: #000000; font-weight: bold;">/</span></pre></div></div>

<p><strong>crond</strong></p>
<p>Der Scheduler cron ist auf dem NAS unter <a href="http://de.wikipedia.org/wiki/Busybox">BusyBox</a> v1.1.1. noch nicht eingerichtet. Alle notwendigen Programme sind vorhanden. Einfach wie folgt gleich der schon vorhandenen Dienste konfigurieren.  </p>
<p>Verzeichnis f&#252;r die Cron Eintr&#228;ge erstellen.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #660033;">-p</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>spool<span style="color: #000000; font-weight: bold;">/</span>cron<span style="color: #000000; font-weight: bold;">/</span>crontabs</pre></div></div>

<p>Start Skript S92cron</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/sh</span>
<span style="color: #000000; font-weight: bold;">case</span> <span style="color: #ff0000;">&quot;$1&quot;</span> <span style="color: #000000; font-weight: bold;">in</span>
  start<span style="color: #7a0874; font-weight: bold;">&#41;</span>
	<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>sbin<span style="color: #000000; font-weight: bold;">/</span>crond
	<span style="color: #000000; font-weight: bold;">;;</span>
  stop<span style="color: #7a0874; font-weight: bold;">&#41;</span>
	<span style="color: #c20cb9; font-weight: bold;">killall</span> crond
	<span style="color: #000000; font-weight: bold;">;;</span>
  restart<span style="color: #7a0874; font-weight: bold;">&#41;</span>
	<span style="color: #007800;">$0</span> stop
	<span style="color: #007800;">$0</span> start
	<span style="color: #000000; font-weight: bold;">;;</span>
  <span style="color: #000000; font-weight: bold;">*</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Usage: $0 {start|stop|restart|status}&quot;</span>
	<span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">1</span>
<span style="color: #000000; font-weight: bold;">esac</span></pre></div></div>

<p>Datei auf das NAS kopieren.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">scp</span> S92cron root<span style="color: #000000; font-weight: bold;">@</span>IP-Adresse:<span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>init.d<span style="color: #000000; font-weight: bold;">/</span></pre></div></div>

<p>Dateiattribute f&#252;r das cron- und rsync-Skript anpassen.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">ssh</span> root<span style="color: #000000; font-weight: bold;">@</span>IP-Adresse
$ <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">755</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>init.d<span style="color: #000000; font-weight: bold;">/</span>S92cron
$ <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">755</span> <span style="color: #000000; font-weight: bold;">/</span>root<span style="color: #000000; font-weight: bold;">/</span>rsync.sh</pre></div></div>

<p>NAS neu starten.</p>
<p><strong>cronjob</strong></p>
<p>rsync.sh in der crontab eintragen.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">ssh</span> root<span style="color: #000000; font-weight: bold;">@</span>IP-Adresse
$ crontab <span style="color: #660033;">-e</span></pre></div></div>

<p>Beispiel f&#252;r jeden Tag um 4 Uhr (siehe <a href="http://wiki.ubuntuusers.de/Cron">cron bei ubuntuusers.de</a>).</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000;">0</span> <span style="color: #000000;">4</span> <span style="color: #000000; font-weight: bold;">*</span> <span style="color: #000000; font-weight: bold;">*</span> <span style="color: #000000; font-weight: bold;">*</span> <span style="color: #000000; font-weight: bold;">/</span>root<span style="color: #000000; font-weight: bold;">/</span>rsync.sh</pre></div></div>

<p>:wq und fertig. :-)</p>
<p><strong>Backup</strong></p>
<p>Die im rsync-Skript eingetragene Verzeichnisse werden einmal pro Tag gesichert. Gel&#246;schte oder ge&#228;nderte Dateien (schon gesicherter) landen nach der n&#228;chsten Duplizierung in der Freigabe &#8220;Trash&#8221; und k&#246;nnen endg&#252;ltig gel&#246;scht oder zur&#252;ck kopiert werden. Einziger Nachteil &#8230; es wird etwas mehr &#8211; genau das doppelte &#8211; Speicherplatz verschwendet &#8230; </p>
]]></content:encoded>
			<wfw:commentRss>http://mgsimon.de/2009/11/15/mybookworld-backup/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>NFS &amp; MyBookWorld NAS</title>
		<link>http://mgsimon.de/2009/11/08/nfs-mybookworld-nas/</link>
		<comments>http://mgsimon.de/2009/11/08/nfs-mybookworld-nas/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 12:20:53 +0000</pubDate>
		<dc:creator>mg</dc:creator>
				<category><![CDATA[Linux & Unix]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[NAS]]></category>
		<category><![CDATA[NFS]]></category>

		<guid isPermaLink="false">http://mgsimon.de/?p=1285</guid>
		<description><![CDATA[Laufwerke &#252;ber das Netz k&#246;nnen unter Linux auf mehreren Wegen benutzt werden. Die folgenden Schritte binden ein Laufwerk &#252;ber NFS ein. nfs-common installieren $ sudo apt-get install nfs-common NFS mounten $ sudo mkdir /mnt/MeineFreigabe $ sudo mount IP-Adresse:/nfs/MeineFreigabe /mnt/MeineFreigabe Damit eine Freigabe vom MyBookWorld NAS eingebunden werden kann, m&#252;ssen im erweiterten Modus die folgende Einstellungen [...]]]></description>
			<content:encoded><![CDATA[<p>Laufwerke &#252;ber das Netz k&#246;nnen unter Linux auf mehreren Wegen benutzt werden. Die folgenden Schritte binden ein Laufwerk &#252;ber NFS ein.</p>
<p>nfs-common installieren</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> nfs-common</pre></div></div>

<p>NFS mounten</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;">mkdir</span> <span style="color: #000000; font-weight: bold;">/</span>mnt<span style="color: #000000; font-weight: bold;">/</span>MeineFreigabe
$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">mount</span> IP-Adresse:<span style="color: #000000; font-weight: bold;">/</span>nfs<span style="color: #000000; font-weight: bold;">/</span>MeineFreigabe <span style="color: #000000; font-weight: bold;">/</span>mnt<span style="color: #000000; font-weight: bold;">/</span>MeineFreigabe</pre></div></div>

<p>Damit eine Freigabe vom <strong><a target="_blank" href="http://www.amazon.de/dp/B0020MLQ3Q/ref=nosim?tag=mgs-21" rel="nofollow">MyBookWorld NAS</a></strong> eingebunden werden kann, m&#252;ssen im erweiterten Modus die folgende Einstellungen vorgenommen werden.</p>
<p><span id="more-1285"></span><strong>MyBookWorld Konfiguration</strong></p>
<p>Netzwerk / Serviceleistungen</p>
<p>- NFS aktivieren<br />
- IP-Adressen</p>
<p><img src="http://mgsimon.de/wp-content/uploads/2009/11/MyBookWorldNetworkStorageManagerNetzwerkServiceleistungen.png" alt="MyBookWorldNetworkStorageManagerNetzwerkServiceleistungen" title="MyBookWorldNetworkStorageManagerNetzwerkServiceleistungen" width="442" height="154" class="alignnone size-full wp-image-1320 stamp" /></p>
<p style="text-align: center;"><em>NetworkStorageManager :: Netzwerk / Serviceleistungen</em></p>
<p>Speicherger&#228;t / Ordnerfreigaben</p>
<p> &#8211; NFS aktivieren</p>
<p><img src="http://mgsimon.de/wp-content/uploads/2009/11/MyBookWorldNetworkStorageManagerSpeichergeraetOrdnerfreigaben.png" alt="MyBookWorldNetworkStorageManagerSpeichergeraetOrdnerfreigaben" title="MyBookWorldNetworkStorageManagerSpeichergeraetOrdnerfreigaben" width="442" height="158" class="alignnone size-full wp-image-1321 stamp" /></p>
<p style="text-align: center;"><em>NetworkStorageManager :: Speicherger&#228;t / Ordnerfreigaben</em></p>
<p>Benutzer / Ordner Freigabe Berechtigungen</p>
<p>- NFS-Zugriff &#8220;Umfassender Zugriff aktivieren&#8221;</p>
<p><img src="http://mgsimon.de/wp-content/uploads/2009/11/MyBookWorldNetworkStorageManagerBenutzerOrdnerFreigabeBerechtigungen.png" alt="MyBookWorldNetworkStorageManagerBenutzerOrdnerFreigabeBerechtigungen" title="MyBookWorldNetworkStorageManagerBenutzerOrdnerFreigabeBerechtigungen" width="442" height="227" class="alignnone size-full wp-image-1319 center stamp" /></p>
<p style="text-align: center;"><em>NetworkStorageManager :: Benutzer / Ordner Freigabe Berechtigungen</em></p>
<p><strong>automatisch</strong></p>
<p>Damit das Laufwerk bei jedem Neustart eingebunden wird.</p>
<p>/etc/fstab</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">IP-Adresse:/nfs/MeineFreigabe /mnt/MeineFreigabe nfs rw 0 0</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://mgsimon.de/2009/11/08/nfs-mybookworld-nas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

