<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>
	Kommentare zu: [UPDATE] Linux-tauglicher Steckdosencomputer Pogoplug Classic für knapp 15 Euro	</title>
	<atom:link href="https://linuxundich.de/hardware/linux-tauglicher-steckdosencomputer-pogoplug-classic-fur-knapp-15-euro/feed/" rel="self" type="application/rss+xml" />
	<link>https://linuxundich.de/hardware/linux-tauglicher-steckdosencomputer-pogoplug-classic-fur-knapp-15-euro/</link>
	<description>Blog über Ubuntu, Linux, Android und IT</description>
	<lastBuildDate>Thu, 13 Mar 2025 11:28:26 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>
		Von: Steve		</title>
		<link>https://linuxundich.de/hardware/linux-tauglicher-steckdosencomputer-pogoplug-classic-fur-knapp-15-euro/#comment-47811</link>

		<dc:creator><![CDATA[Steve]]></dc:creator>
		<pubDate>Sat, 02 Mar 2013 12:56:38 +0000</pubDate>
		<guid isPermaLink="false">http://linuxundich.de/de/?p=20790#comment-47811</guid>

					<description><![CDATA[Hallo,

habe einen Pogoplug B04   (Daten wie bei Schokobecher von oben)

und nach dieser Anleitung ( http://openpogo.tumblr.com/ -&#062; Installing OpenPOGO)

das Script zum Mounten eines /opt Verzeichnisses auf dem USB stick in die rcS eingebunden.


#!/bin/sh
# This script tries to mount the first USB drive and checks for the .opt folder.
# If the .opt folder is not found then it un-mounts the first USB drive and
# sequentially mounts, checks and un-mounts (if not found) the second third
# and fourth USB drives looking for the .opt folder.
# if the .opt folder is found then the script exits leaving the USB drive
# with the .opt folder mounted at /tmp/mnt_opt
# If the .opt folder is NOT found then the script exits leaving no drives
# mounted at /tmp/mnt_opt
# GJ11: removed -t ext2
[ ! -d /tmp/mnt_opt ] &#038;&#038; `mkdir /tmp/mnt_opt` &#124;&#124; `umount /tmp/mnt_opt`
mount -o rw,nosuid,nodev,exec,noatime,sync /dev/sda1 /tmp/mnt_opt
if [ ! -d /tmp/mnt_opt/.opt ]
then
{
 umount /tmp/mnt_opt
 mount -o rw,nosuid,nodev,exec,noatime,sync /dev/sdb1 /tmp/mnt_opt
 if [ ! -d /tmp/mnt_opt/.opt ]
 then
 {
  umount /tmp/mnt_opt
  mount -o rw,nosuid,nodev,exec,noatime,sync /dev/sdc1 /tmp/mnt_opt
  if [ ! -d /tmp/mnt_opt/.opt ]
  then
  {
   umount /tmp/mnt_opt
   mount -o rw,nosuid,nodev,exec,noatime,sync /dev/sdd1 /tmp/mnt_opt
   if [ ! -d /tmp/mnt_opt/.opt ]
   then
   {
   umount /tmp/mnt_opt
   }
   fi
  }
  fi
 }
 fi
}
fi


Leider scheint das Script in der rcS nicht korrekt durchzulaufen. Auch in der  Shell gestartet erscheint beim ersten Starten:


umount: can&#039;t umount /tmp/mnt_opt: Invalid argument


bei zweiten Starten läuft es aber durch und das /opt Verzeichnis ist gemountet wie es sein soll.  D.h &quot;eigentlich&quot; sollten doch alle Voraussetzungen da sein, damit es auch beim ersten mal klappt.

Was ist hier schief gelaufen?

Gruß Steve]]></description>
			<content:encoded><![CDATA[<p>Hallo,</p>
<p>habe einen Pogoplug B04   (Daten wie bei Schokobecher von oben)</p>
<p>und nach dieser Anleitung ( <a href="http://openpogo.tumblr.com/" rel="nofollow ugc">http://openpogo.tumblr.com/</a> -&gt; Installing OpenPOGO)</p>
<p>das Script zum Mounten eines /opt Verzeichnisses auf dem USB stick in die rcS eingebunden.</p>
<p>#!/bin/sh<br>
# This script tries to mount the first USB drive and checks for the .opt folder.<br>
# If the .opt folder is not found then it un-mounts the first USB drive and<br>
# sequentially mounts, checks and un-mounts (if not found) the second third<br>
# and fourth USB drives looking for the .opt folder.<br>
# if the .opt folder is found then the script exits leaving the USB drive<br>
# with the .opt folder mounted at /tmp/mnt_opt<br>
# If the .opt folder is NOT found then the script exits leaving no drives<br>
# mounted at /tmp/mnt_opt<br>
# GJ11: removed -t ext2<br>
[ ! -d /tmp/mnt_opt ] &amp;&amp; `mkdir /tmp/mnt_opt` || `umount /tmp/mnt_opt`<br>
mount -o rw,nosuid,nodev,exec,noatime,sync /dev/sda1 /tmp/mnt_opt<br>
if [ ! -d /tmp/mnt_opt/.opt ]<br>
then<br>
{<br>
 umount /tmp/mnt_opt<br>
 mount -o rw,nosuid,nodev,exec,noatime,sync /dev/sdb1 /tmp/mnt_opt<br>
 if [ ! -d /tmp/mnt_opt/.opt ]<br>
 then<br>
 {<br>
  umount /tmp/mnt_opt<br>
  mount -o rw,nosuid,nodev,exec,noatime,sync /dev/sdc1 /tmp/mnt_opt<br>
  if [ ! -d /tmp/mnt_opt/.opt ]<br>
  then<br>
  {<br>
   umount /tmp/mnt_opt<br>
   mount -o rw,nosuid,nodev,exec,noatime,sync /dev/sdd1 /tmp/mnt_opt<br>
   if [ ! -d /tmp/mnt_opt/.opt ]<br>
   then<br>
   {<br>
   umount /tmp/mnt_opt<br>
   }<br>
   fi<br>
  }<br>
  fi<br>
 }<br>
 fi<br>
}<br>
fi</p>
<p>Leider scheint das Script in der rcS nicht korrekt durchzulaufen. Auch in der  Shell gestartet erscheint beim ersten Starten:</p>
<p>umount: can&#8217;t umount /tmp/mnt_opt: Invalid argument</p>
<p>bei zweiten Starten läuft es aber durch und das /opt Verzeichnis ist gemountet wie es sein soll.  D.h &#8222;eigentlich&#8220; sollten doch alle Voraussetzungen da sein, damit es auch beim ersten mal klappt.</p>
<p>Was ist hier schief gelaufen?</p>
<p>Gruß Steve</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: Obihörnchen		</title>
		<link>https://linuxundich.de/hardware/linux-tauglicher-steckdosencomputer-pogoplug-classic-fur-knapp-15-euro/#comment-47183</link>

		<dc:creator><![CDATA[Obihörnchen]]></dc:creator>
		<pubDate>Tue, 05 Feb 2013 01:03:09 +0000</pubDate>
		<guid isPermaLink="false">http://linuxundich.de/de/?p=20790#comment-47183</guid>

					<description><![CDATA[Hab mal eine kleine Anleitung wie man alles aufsetzt für den Pogoplug v2 verfasst:
http://obihoernchen.net
&lt;a href=&quot;http://obihoernchen.net&quot; rel=&quot;nofollow&quot;&gt;]]></description>
			<content:encoded><![CDATA[<p>Hab mal eine kleine Anleitung wie man alles aufsetzt für den Pogoplug v2 verfasst:<br>
<a href="http://obihoernchen.net" rel="nofollow ugc">http://obihoernchen.net</a><br>
<a href="http://obihoernchen.net" rel="nofollow"></a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: Anonym		</title>
		<link>https://linuxundich.de/hardware/linux-tauglicher-steckdosencomputer-pogoplug-classic-fur-knapp-15-euro/#comment-46986</link>

		<dc:creator><![CDATA[Anonym]]></dc:creator>
		<pubDate>Sun, 13 Jan 2013 19:41:47 +0000</pubDate>
		<guid isPermaLink="false">http://linuxundich.de/de/?p=20790#comment-46986</guid>

					<description><![CDATA[Kann man Den Pogoplug Classic noch für 10 Euro + 4.95 Euro kaufen oder ist das Angebot abgelaufen!]]></description>
			<content:encoded><![CDATA[<p>Kann man Den Pogoplug Classic noch für 10 Euro + 4.95 Euro kaufen oder ist das Angebot abgelaufen!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: heinz meier		</title>
		<link>https://linuxundich.de/hardware/linux-tauglicher-steckdosencomputer-pogoplug-classic-fur-knapp-15-euro/#comment-46970</link>

		<dc:creator><![CDATA[heinz meier]]></dc:creator>
		<pubDate>Wed, 09 Jan 2013 11:52:39 +0000</pubDate>
		<guid isPermaLink="false">http://linuxundich.de/de/?p=20790#comment-46970</guid>

					<description><![CDATA[Als Antwort auf &lt;a href=&quot;https://linuxundich.de/hardware/linux-tauglicher-steckdosencomputer-pogoplug-classic-fur-knapp-15-euro/#comment-46967&quot;&gt;Marcel&lt;/a&gt;.

Ja geht musst einfach bei der Kriminalpolizei anrufen]]></description>
			<content:encoded><![CDATA[<p>Als Antwort auf <a href="https://linuxundich.de/hardware/linux-tauglicher-steckdosencomputer-pogoplug-classic-fur-knapp-15-euro/#comment-46967">Marcel</a>.</p>
<p>Ja geht musst einfach bei der Kriminalpolizei anrufen</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: Marcel		</title>
		<link>https://linuxundich.de/hardware/linux-tauglicher-steckdosencomputer-pogoplug-classic-fur-knapp-15-euro/#comment-46967</link>

		<dc:creator><![CDATA[Marcel]]></dc:creator>
		<pubDate>Tue, 08 Jan 2013 13:15:28 +0000</pubDate>
		<guid isPermaLink="false">http://linuxundich.de/de/?p=20790#comment-46967</guid>

					<description><![CDATA[Kommt man nach der Linux Installation später wieder auf die Original Software vom Pogoplug zurück?]]></description>
			<content:encoded><![CDATA[<p>Kommt man nach der Linux Installation später wieder auf die Original Software vom Pogoplug zurück?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: Cedric		</title>
		<link>https://linuxundich.de/hardware/linux-tauglicher-steckdosencomputer-pogoplug-classic-fur-knapp-15-euro/#comment-46943</link>

		<dc:creator><![CDATA[Cedric]]></dc:creator>
		<pubDate>Sat, 05 Jan 2013 12:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://linuxundich.de/de/?p=20790#comment-46943</guid>

					<description><![CDATA[Als Antwort auf &lt;a href=&quot;https://linuxundich.de/hardware/linux-tauglicher-steckdosencomputer-pogoplug-classic-fur-knapp-15-euro/#comment-46942&quot;&gt;Gorja&lt;/a&gt;.

Danke, funktioniert bei mir problemlos mit der Anleitung!]]></description>
			<content:encoded><![CDATA[<p>Als Antwort auf <a href="https://linuxundich.de/hardware/linux-tauglicher-steckdosencomputer-pogoplug-classic-fur-knapp-15-euro/#comment-46942">Gorja</a>.</p>
<p>Danke, funktioniert bei mir problemlos mit der Anleitung!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: Gorja		</title>
		<link>https://linuxundich.de/hardware/linux-tauglicher-steckdosencomputer-pogoplug-classic-fur-knapp-15-euro/#comment-46942</link>

		<dc:creator><![CDATA[Gorja]]></dc:creator>
		<pubDate>Sat, 05 Jan 2013 01:46:01 +0000</pubDate>
		<guid isPermaLink="false">http://linuxundich.de/de/?p=20790#comment-46942</guid>

					<description><![CDATA[Als Antwort auf &lt;a href=&quot;https://linuxundich.de/hardware/linux-tauglicher-steckdosencomputer-pogoplug-classic-fur-knapp-15-euro/#comment-46923&quot;&gt;Cedric&lt;/a&gt;.

wurde hier schon genannt: http://wiki.daviddarts.com/Pogoplug

richtige Dokumentation ist es nicht, aber es läuft bis zu dem Update-auf-Wheezy-Teil auch super... ich kann mit squeeze (noch) leben :D

kleiner hinweis noch: von dem skript wird nur eine leichte modifikation des bootloaders vorgenommen, indem usb beim boot bevorzugt wird... klappt nicht immer zu 100%, dafür kann man wieder auf die pogo-software wechseln (--&#062; einfach KEIN USB-Gerät anschließen). der rest vom skript fördert dann squeeze auf den stick...]]></description>
			<content:encoded><![CDATA[<p>Als Antwort auf <a href="https://linuxundich.de/hardware/linux-tauglicher-steckdosencomputer-pogoplug-classic-fur-knapp-15-euro/#comment-46923">Cedric</a>.</p>
<p>wurde hier schon genannt: <a href="http://wiki.daviddarts.com/Pogoplug" rel="nofollow ugc">http://wiki.daviddarts.com/Pogoplug</a></p>
<p>richtige Dokumentation ist es nicht, aber es läuft bis zu dem Update-auf-Wheezy-Teil auch super&#8230; ich kann mit squeeze (noch) leben 😀</p>
<p>kleiner hinweis noch: von dem skript wird nur eine leichte modifikation des bootloaders vorgenommen, indem usb beim boot bevorzugt wird&#8230; klappt nicht immer zu 100%, dafür kann man wieder auf die pogo-software wechseln (&#8211;&gt; einfach KEIN USB-Gerät anschließen). der rest vom skript fördert dann squeeze auf den stick&#8230;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: Cedric		</title>
		<link>https://linuxundich.de/hardware/linux-tauglicher-steckdosencomputer-pogoplug-classic-fur-knapp-15-euro/#comment-46923</link>

		<dc:creator><![CDATA[Cedric]]></dc:creator>
		<pubDate>Fri, 04 Jan 2013 09:54:06 +0000</pubDate>
		<guid isPermaLink="false">http://linuxundich.de/de/?p=20790#comment-46923</guid>

					<description><![CDATA[Als Antwort auf &lt;a href=&quot;https://linuxundich.de/hardware/linux-tauglicher-steckdosencomputer-pogoplug-classic-fur-knapp-15-euro/#comment-46858&quot;&gt;Gorja&lt;/a&gt;.

@Gorja gibt es eine gute Doku zur Installation von Debian? Bisher schien mir nur die für Arch Linux sauber dokumentiert...]]></description>
			<content:encoded><![CDATA[<p>Als Antwort auf <a href="https://linuxundich.de/hardware/linux-tauglicher-steckdosencomputer-pogoplug-classic-fur-knapp-15-euro/#comment-46858">Gorja</a>.</p>
<p>@Gorja gibt es eine gute Doku zur Installation von Debian? Bisher schien mir nur die für Arch Linux sauber dokumentiert&#8230;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: Gorja		</title>
		<link>https://linuxundich.de/hardware/linux-tauglicher-steckdosencomputer-pogoplug-classic-fur-knapp-15-euro/#comment-46858</link>

		<dc:creator><![CDATA[Gorja]]></dc:creator>
		<pubDate>Thu, 27 Dec 2012 10:58:56 +0000</pubDate>
		<guid isPermaLink="false">http://linuxundich.de/de/?p=20790#comment-46858</guid>

					<description><![CDATA[E02 läuft mit Debian, apache, sqlite, nfs und 2 TB via 2x2,5&quot; USB... hauptsächlich für kleinere statische seiten im netzwerk und als datenschleuder via nfs...

kann mich bis jetzt echt nicht beschweren... erst recht nicht, wenn ich den Preis von 14,95 summa im Hinterkopf habe :D

hohen WAF hat das kleine rosa-weiße kerlchen ja... musste ihn bis jetzt noch nicht verstecken oder erklären :D die Augen wurden nur im ersten Moment riesengroß, als ich erzählte, dass ich mir für 15 Euro einen Plug gekauft habe und der rosa sein könnte... (:]]></description>
			<content:encoded><![CDATA[<p>E02 läuft mit Debian, apache, sqlite, nfs und 2 TB via 2&#215;2,5&#8243; USB&#8230; hauptsächlich für kleinere statische seiten im netzwerk und als datenschleuder via nfs&#8230;</p>
<p>kann mich bis jetzt echt nicht beschweren&#8230; erst recht nicht, wenn ich den Preis von 14,95 summa im Hinterkopf habe 😀</p>
<p>hohen WAF hat das kleine rosa-weiße kerlchen ja&#8230; musste ihn bis jetzt noch nicht verstecken oder erklären 😀 die Augen wurden nur im ersten Moment riesengroß, als ich erzählte, dass ich mir für 15 Euro einen Plug gekauft habe und der rosa sein könnte&#8230; (:</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: Hans-Christian		</title>
		<link>https://linuxundich.de/hardware/linux-tauglicher-steckdosencomputer-pogoplug-classic-fur-knapp-15-euro/#comment-46802</link>

		<dc:creator><![CDATA[Hans-Christian]]></dc:creator>
		<pubDate>Fri, 21 Dec 2012 18:02:18 +0000</pubDate>
		<guid isPermaLink="false">http://linuxundich.de/de/?p=20790#comment-46802</guid>

					<description><![CDATA[Als Antwort auf &lt;a href=&quot;https://linuxundich.de/hardware/linux-tauglicher-steckdosencomputer-pogoplug-classic-fur-knapp-15-euro/#comment-46798&quot;&gt;Anonym&lt;/a&gt;.

Bei RHIEM Services GmbH scheint er inzwischen nicht mehr erhältlich zu sein.]]></description>
			<content:encoded><![CDATA[<p>Als Antwort auf <a href="https://linuxundich.de/hardware/linux-tauglicher-steckdosencomputer-pogoplug-classic-fur-knapp-15-euro/#comment-46798">Anonym</a>.</p>
<p>Bei RHIEM Services GmbH scheint er inzwischen nicht mehr erhältlich zu sein.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
