<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>blog@strompost - *nix zeug</title>
    <link>http://www.strompost.ch/blog/</link>
    <description>life, the universe and everything</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.3.1 - http://www.s9y.org/</generator>
    <pubDate>Fri, 29 Jan 2010 23:36:34 GMT</pubDate>

    <image>
        <url>http://www.strompost.ch/blog/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: blog@strompost - *nix zeug - life, the universe and everything</title>
        <link>http://www.strompost.ch/blog/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>TimeMachine Disk switch in Snow Leopard</title>
    <link>http://www.strompost.ch/blog/archives/37-TimeMachine-Disk-switch-in-Snow-Leopard.html</link>
            <category>*nix zeug</category>
    
    <comments>http://www.strompost.ch/blog/archives/37-TimeMachine-Disk-switch-in-Snow-Leopard.html#comments</comments>
    <wfw:comment>http://www.strompost.ch/blog/wfwcomment.php?cid=37</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.strompost.ch/blog/rss.php?version=2.0&amp;type=comments&amp;cid=37</wfw:commentRss>
    

    <author>nospam@example.com (Adrian)</author>
    <content:encoded>
    Da ich sowohl im BÃ¼ro als auch zu Hause eine Backup-Harddisk fÃ¼r TimeMachine Backups habe, wollte ich eine einfache (sprich automatische) LÃ¶sung um zwischen den beiden Harddisks umzuschalten. Chregu hat vor einiger Zeit bereits eine &lt;a href=&quot;http://www.strompost.ch/blog/exit.php?url_id=67&amp;amp;entry_id=37&quot;  onmouseover=&quot;window.status=&#039;http://blog.liip.ch/archive/2009/01/20/automatically-switching-between-different-time-machine-disks.html&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;TimeMachine disks automatisch umschalten&quot;&gt;LÃ¶sung&lt;/a&gt; fÃ¼r das Problem gefunden. Allerdings hat diese LÃ¶sung unter Snow Leopard bei mir nicht funktioniert. Der Hauptunterschied scheint zu sein, dass neben dem BackupAlias nun auch noch die DestinationVolumeUUID gesetzt werden muss.&lt;br /&gt;
Da ich zudem nicht zwei Shell-Skripte fÃ¼r dieselbe Aufgabe wollte, habe ich das alles in ein Skript gepackt:&lt;br /&gt;
&lt;br /&gt;
tmdiskswitch.sh&lt;br /&gt;
&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;br /&gt;&lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;#!/bin/sh&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;# home backup&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #007800;&quot;&gt;DISK_HOME_ALIAS&lt;/span&gt;=&lt;span style=&quot;color: #ff0000;&quot;&gt;&#039;&amp;lt;00000000 .... 0000&amp;gt;&#039;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #007800;&quot;&gt;DISK_HOME_UUID&lt;/span&gt;=&lt;span style=&quot;color: #ff0000;&quot;&gt;&#039;&amp;quot;DE5435B1-...&amp;quot;&#039;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;# work backup&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #007800;&quot;&gt;DISK_WORK_ALIAS&lt;/span&gt;=&lt;span style=&quot;color: #ff0000;&quot;&gt;&#039;&amp;lt;00000000 .... 0000&amp;gt;&#039;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #007800;&quot;&gt;DISK_WORK_UUID&lt;/span&gt;=&lt;span style=&quot;color: #ff0000;&quot;&gt;&#039;&amp;quot;B1405E27-...&amp;quot;&#039;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;if&lt;/span&gt; &lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#91;&lt;/span&gt; &lt;span style=&quot;color: #660033;&quot;&gt;-z&lt;/span&gt; &lt;span style=&quot;color: #ff0000;&quot;&gt;&amp;quot;$1&amp;quot;&lt;/span&gt; &lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#93;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;then&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;echo&lt;/span&gt; &lt;span style=&quot;color: #ff0000;&quot;&gt;&amp;quot;usage: $0 &amp;lt;environmnet&amp;gt;&amp;quot;&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;exit&lt;/span&gt; &lt;span style=&quot;color: #000000;&quot;&gt;1&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;fi&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;case&lt;/span&gt; $&lt;span style=&quot;color: #000000;&quot;&gt;1&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;in&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; home&lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &lt;span style=&quot;color: #007800;&quot;&gt;DISKALIAS&lt;/span&gt;=&lt;span style=&quot;color: #007800;&quot;&gt;$DISK_HOME_ALIAS&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &lt;span style=&quot;color: #007800;&quot;&gt;DISKUUID&lt;/span&gt;=&lt;span style=&quot;color: #007800;&quot;&gt;$DISK_HOME_UUID&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;;;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&amp;#160; &amp;#160; work&lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &lt;span style=&quot;color: #007800;&quot;&gt;DISKALIAS&lt;/span&gt;=&lt;span style=&quot;color: #007800;&quot;&gt;$DISK_WORK_ALIAS&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &lt;span style=&quot;color: #007800;&quot;&gt;DISKUUID&lt;/span&gt;=&lt;span style=&quot;color: #007800;&quot;&gt;$DISK_WORK_UUID&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;;;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&amp;#160; &amp;#160; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;*&lt;/span&gt;&lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;echo&lt;/span&gt; &lt;span style=&quot;color: #ff0000;&quot;&gt;&amp;quot;unknown environment!&amp;quot;&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &lt;span style=&quot;color: #7a0874; font-weight: bold;&quot;&gt;exit&lt;/span&gt; &lt;span style=&quot;color: #000000;&quot;&gt;1&lt;/span&gt;&lt;br /&gt;&amp;#160; &amp;#160; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;;;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;esac&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;defaults &lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;write&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;Library&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;Preferences&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;com.apple.TimeMachine BackupAlias &lt;span style=&quot;color: #ff0000;&quot;&gt;&amp;quot;&lt;span style=&quot;color: #007800;&quot;&gt;$DISKALIAS&lt;/span&gt;&amp;quot;&lt;/span&gt;&lt;br /&gt;defaults &lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;write&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;Library&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;Preferences&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;com.apple.TimeMachine DestinationVolumeUUID &lt;span style=&quot;color: #007800;&quot;&gt;$DISKUUID&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&amp;#160;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
Vorgehen:&lt;br /&gt;
Um BackupAlias und DestinationVolumeUUID herauszufinden muss man die jeweilige HD als Backup-HD in TimeMachine definieren. Danach die folgenden Befehle im Terminal ausfÃ¼hren:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;br /&gt;defaults &lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;read&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;Library&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;Preferences&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;com.apple.TimeMachine BackupAlias&lt;br /&gt;defaults &lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;read&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;Library&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;Preferences&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;com.apple.TimeMachine DestinationVolumeUUID&lt;br /&gt;&amp;#160;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
Die Ausgabe des ersten Befehls muss im obenstehenden Skript eingetragen werden (alles zwischen den einfachen AnfÃ¼hrungszeichen muss ersetzt werden mit der Ausgabe):&lt;br /&gt;
&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;br /&gt;&lt;span style=&quot;color: #007800;&quot;&gt;DISK_HOME_ALIAS&lt;/span&gt;=&lt;span style=&quot;color: #ff0000;&quot;&gt;&#039;&amp;lt;00000000 .... 0000&amp;gt;&#039;&lt;/span&gt;&lt;br /&gt;&amp;#160;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
bzw. &lt;br /&gt;
&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;br /&gt;&lt;span style=&quot;color: #007800;&quot;&gt;DISK_WORK_ALIAS&lt;/span&gt;=&lt;span style=&quot;color: #ff0000;&quot;&gt;&#039;&amp;lt;00000000 .... 0000&amp;gt;&#039;&lt;/span&gt;&lt;br /&gt;&amp;#160;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
FÃ¼r den zweiten Befehl (alles zwischen den doppelten AnfÃ¼hrungszeichen muss mit der Ausgabe ersetzt werden):&lt;br /&gt;
&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;br /&gt;&lt;span style=&quot;color: #007800;&quot;&gt;DISK_HOME_UUID&lt;/span&gt;=&lt;span style=&quot;color: #ff0000;&quot;&gt;&#039;&amp;quot;DE5435B1-...&amp;quot;&#039;&lt;/span&gt;&lt;br /&gt;&amp;#160;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
bzw.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;br /&gt;&lt;span style=&quot;color: #007800;&quot;&gt;DISK_WORK_UUID&lt;/span&gt;=&lt;span style=&quot;color: #ff0000;&quot;&gt;&#039;&amp;quot;B1405E27-...&amp;quot;&#039;&lt;/span&gt;&lt;br /&gt;&amp;#160;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
Das Skript kann in den Ordner &#039;bin&#039; im Home-Verzeichnis abgelegt werden. Das Skript sollte zudem noch ausfÃ¼hrbar gemacht werden:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;bash geshi&quot; style=&quot;text-align: left&quot;&gt;&lt;br /&gt;&lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;chmod&lt;/span&gt; u+x bin&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;/&lt;/span&gt;tmdiskswitch.sh&lt;br /&gt;&amp;#160;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
Danach muss man in &lt;a href=&quot;http://www.strompost.ch/blog/exit.php?url_id=68&amp;amp;entry_id=37&quot;  onmouseover=&quot;window.status=&#039;http://www.symonds.id.au/marcopolo/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;MarcoPolo&quot;&gt;MarcoPolo&lt;/a&gt; nur noch die entsprechenden Aktionen konfigurieren.&lt;br /&gt;
FÃ¼r das Backup zu Hause:&lt;br /&gt;
&lt;!-- s9ymdb:29 --&gt;&lt;img class=&quot;serendipity_image_center&quot; width=&quot;479&quot; height=&quot;184&quot; style=&quot;border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://www.strompost.ch/blog/uploads/MarcoPolo_setting1.png&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
FÃ¼r das Backup im BÃ¼ro:&lt;br /&gt;
&lt;!-- s9ymdb:30 --&gt;&lt;img class=&quot;serendipity_image_center&quot; width=&quot;472&quot; height=&quot;187&quot; style=&quot;border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://www.strompost.ch/blog/uploads/MarcoPolo_setting2.png&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
Danach wechselt MarcoPolo automatisch je nach Umgebung die Backup-HD.&lt;br /&gt;
&lt;br /&gt;
Hinweis:&lt;br /&gt;
Ich Ã¼bernehme keinerlei Verantwortung fÃ¼r SchÃ¤den die durch die Verwendung dieses Skriptes entstehen. Die Verwendung geschieht auf eigene Gefahr. 
    </content:encoded>

    <pubDate>Sat, 30 Jan 2010 00:36:34 +0100</pubDate>
    <guid isPermaLink="false">http://www.strompost.ch/blog/archives/37-guid.html</guid>
    
</item>
<item>
    <title>Fileserver mit FreeBSD und ZFS</title>
    <link>http://www.strompost.ch/blog/archives/36-Fileserver-mit-FreeBSD-und-ZFS.html</link>
            <category>*nix zeug</category>
            <category>development</category>
    
    <comments>http://www.strompost.ch/blog/archives/36-Fileserver-mit-FreeBSD-und-ZFS.html#comments</comments>
    <wfw:comment>http://www.strompost.ch/blog/wfwcomment.php?cid=36</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.strompost.ch/blog/rss.php?version=2.0&amp;type=comments&amp;cid=36</wfw:commentRss>
    

    <author>nospam@example.com (Adrian)</author>
    <content:encoded>
    Hardware:&lt;br /&gt;
&lt;ul&gt;&lt;br /&gt;
&lt;li&gt;Intel D945GCLF2&lt;/li&gt;&lt;br /&gt;
&lt;li&gt;2 x Samsung HM320JI 320GB 2.5&quot; HDD&lt;/li&gt;&lt;br /&gt;
&lt;/ul&gt;&lt;br /&gt;
Installation von der FreeBSD 8.0 DVD&lt;br /&gt;
Ressourcen:&lt;br /&gt;
[1] &lt;a href=&quot;http://www.strompost.ch/blog/exit.php?url_id=65&amp;amp;entry_id=36&quot;  onmouseover=&quot;window.status=&#039;http://www.chruetertee.ch/blog/archive/2009/07/29/freebsd-nur-auf-zfs-installieren.html&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;FreeBSD nur auf ZFS installieren&quot;&gt;http://www.chruetertee.ch/blog/archive/2009/07/29/freebsd-nur-auf-zfs-installieren.html&lt;/a&gt;&lt;br /&gt;
[2] &lt;a href=&quot;http://www.strompost.ch/blog/exit.php?url_id=66&amp;amp;entry_id=36&quot;  onmouseover=&quot;window.status=&#039;http://rhyous.com/2009/12/01/how-to-install-freebsd-8-0-using-only-zfs-partitions/&#039;;return true;&quot; onmouseout=&quot;window.status=&#039;&#039;;return true;&quot; title=&quot;How to install FreeBSD 8.0 using only zfs partitions&quot;&gt;http://rhyous.com/2009/12/01/how-to-install-freebsd-8-0-using-only-zfs-partitions/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Ein erster Versuch nach der Anleitung von [1] schlug leider fehl. Nach eingehender Nachforschung bin ich auf den Hinweis gestossen, dass das BIOS auf dem verwendeten Motherboard offenbar nicht von Festplatten mit GPT booten kann. Im zweiten Anlauf hab ich daher eine MBR-Partitionstabelle verwendet. &lt;br /&gt;&lt;a href=&quot;http://www.strompost.ch/blog/archives/36-Fileserver-mit-FreeBSD-und-ZFS.html#extended&quot;&gt;Continue reading &quot;Fileserver mit FreeBSD und ZFS&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Sun, 06 Dec 2009 23:00:00 +0100</pubDate>
    <guid isPermaLink="false">http://www.strompost.ch/blog/archives/36-guid.html</guid>
    
</item>
<item>
    <title>Neues Spielzeug ;-)</title>
    <link>http://www.strompost.ch/blog/archives/15-Neues-Spielzeug-;.html</link>
            <category>*nix zeug</category>
            <category>toys</category>
    
    <comments>http://www.strompost.ch/blog/archives/15-Neues-Spielzeug-;.html#comments</comments>
    <wfw:comment>http://www.strompost.ch/blog/wfwcomment.php?cid=15</wfw:comment>

    <slash:comments>2</slash:comments>
    <wfw:commentRss>http://www.strompost.ch/blog/rss.php?version=2.0&amp;type=comments&amp;cid=15</wfw:commentRss>
    

    <author>nospam@example.com (Adrian)</author>
    <content:encoded>
    &lt;img width=&quot;400&quot; hspace=&quot;5&quot; height=&quot;363&quot; border=&quot;0&quot; src=&quot;http://www.strompost.ch/blog/uploads/mbpro.jpg&quot; /&gt;&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Fri, 10 Nov 2006 10:24:34 +0100</pubDate>
    <guid isPermaLink="false">http://www.strompost.ch/blog/archives/15-guid.html</guid>
    
</item>
<item>
    <title>K750i</title>
    <link>http://www.strompost.ch/blog/archives/4-K750i.html</link>
            <category>*nix zeug</category>
            <category>vermischtes</category>
    
    <comments>http://www.strompost.ch/blog/archives/4-K750i.html#comments</comments>
    <wfw:comment>http://www.strompost.ch/blog/wfwcomment.php?cid=4</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.strompost.ch/blog/rss.php?version=2.0&amp;type=comments&amp;cid=4</wfw:commentRss>
    

    <author>nospam@example.com (Adrian)</author>
    <content:encoded>
    &lt;br /&gt;
Seit einer Woche bin ich nun im Besitz eines SonyEricsson K750i. Es wurde langsam Zeit, dass mein bisheriger &amp;quot;Backstein&amp;quot; (SonyEricsson T300) ersetzt wurde, da die Tasten nach zweieinhalb Jahren immer schlechter funktionierten. &lt;br /&gt;&lt;a href=&quot;http://www.strompost.ch/blog/archives/4-K750i.html#extended&quot;&gt;Continue reading &quot;K750i&quot;&lt;/a&gt;
    </content:encoded>

    <pubDate>Mon, 12 Sep 2005 13:41:15 +0200</pubDate>
    <guid isPermaLink="false">http://www.strompost.ch/blog/archives/4-guid.html</guid>
    
</item>
<item>
    <title>Epson Stylus C86 und CUPS</title>
    <link>http://www.strompost.ch/blog/archives/1-Epson-Stylus-C86-und-CUPS.html</link>
            <category>*nix zeug</category>
    
    <comments>http://www.strompost.ch/blog/archives/1-Epson-Stylus-C86-und-CUPS.html#comments</comments>
    <wfw:comment>http://www.strompost.ch/blog/wfwcomment.php?cid=1</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.strompost.ch/blog/rss.php?version=2.0&amp;type=comments&amp;cid=1</wfw:commentRss>
    

    <author>nospam@example.com (Adrian)</author>
    <content:encoded>
    &lt;br /&gt;
&lt;p&gt;Um eine ppd-Datei für den Epson C86 zu erzeugen kann man auf der Kommandozeile folgenden Befehl eingeben:&lt;/p&gt;&lt;p&gt;foomatic-ppdfile -d gimp-print-ijs -p Epson_Stylus_C84 &amp;gt; StylusC86.ppd&lt;/p&gt;&lt;p&gt;(foomatic und gimp-print muss natürlich installiert sein). Für den C86 gibt es keinen eigenen gimp-print Treiber, aber der des C84 funktioniert einwandfrei.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Sun, 24 Apr 2005 15:30:04 +0200</pubDate>
    <guid isPermaLink="false">http://www.strompost.ch/blog/archives/1-guid.html</guid>
    
</item>

</channel>
</rss>
