<?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>unorganized.net (Entries tagged as Mac)</title>
    <link>http://unorganized.net/blog/</link>
    <description>directly from the brain of Eike Bernhardt</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.5.3 - http://www.s9y.org/</generator>
    
    

<item>
    <title>OS X: Ignore USB Storage device temporarily</title>
    <link>http://unorganized.net/blog/archives/144-OS-X-Ignore-USB-Storage-device-temporarily.html</link>
    
    <comments>http://unorganized.net/blog/archives/144-OS-X-Ignore-USB-Storage-device-temporarily.html#comments</comments>
    <wfw:comment>http://unorganized.net/blog/wfwcomment.php?cid=144</wfw:comment>

    <slash:comments>3</slash:comments>
    <wfw:commentRss>http://unorganized.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=144</wfw:commentRss>
    

    <author>nospam@example.com (Eike Bernhardt)</author>
    <content:encoded>
    	&lt;p&gt;I needed to ignore an &lt;span class=&quot;caps&quot;&gt;USB&lt;/span&gt; storage device, or at least disable the automount feature for it, because I wanted the &lt;span class=&quot;caps&quot;&gt;USB&lt;/span&gt; device to be available for VirtualBox.&lt;/p&gt;

	&lt;p&gt;There does not seem to be an device-specific ignore functionality, but in my case it was enough to temporarily unload the &lt;span class=&quot;caps&quot;&gt;USB&lt;/span&gt; storage kext:&lt;/p&gt;

	&lt;p&gt;&lt;code&gt;
sudo kextunload /System/Library/Extensions/IOUSBMassStorageClass.kext 
&lt;/code&gt;&lt;/p&gt;

	&lt;p&gt;&lt;strong&gt;This will disable all &lt;span class=&quot;caps&quot;&gt;USB&lt;/span&gt; storage media temporarily!&lt;/strong&gt;&lt;/p&gt;

	&lt;p&gt;When you are finished using the &lt;span class=&quot;caps&quot;&gt;USB&lt;/span&gt; storage device in VirtualBox, shut it down, and then do a&lt;/p&gt;

	&lt;p&gt;&lt;code&gt;
sudo kextload /System/Library/Extensions/IOUSBMassStorageClass.kext 
&lt;/code&gt;&lt;/p&gt;

	&lt;p&gt;to restore the &lt;span class=&quot;caps&quot;&gt;USB&lt;/span&gt; storage functionality.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Tue, 31 Mar 2009 20:21:28 +0200</pubDate>
    <guid isPermaLink="false">http://unorganized.net/blog/archives/144-guid.html</guid>
    <category>automount</category>
<category>disable</category>
<category>Mac</category>
<category>OS X</category>
<category>USB Storage</category>

</item>
<item>
    <title>Open SSH Connections with Butler</title>
    <link>http://unorganized.net/blog/archives/127-Open-SSH-Connections-with-Butler.html</link>
            <category>Mac</category>
    
    <comments>http://unorganized.net/blog/archives/127-Open-SSH-Connections-with-Butler.html#comments</comments>
    <wfw:comment>http://unorganized.net/blog/wfwcomment.php?cid=127</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://unorganized.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=127</wfw:commentRss>
    

    <author>nospam@example.com (Eike Bernhardt)</author>
    <content:encoded>
    	&lt;p&gt;How to use &lt;a href=&quot;http://www.manytricks.com/butler/&quot;&gt;Butler&lt;/a&gt;, &lt;a href=&quot;http://www.gnu.org/software/screen/screen.html&quot;&gt;screen&lt;/a&gt;, &lt;span class=&quot;caps&quot;&gt;SSH&lt;/span&gt; and some shell Skripts to open &lt;span class=&quot;caps&quot;&gt;SSH&lt;/span&gt; Connections to some servers.&lt;/p&gt;

	&lt;p&gt;First, create a directory which will contain the script(s) to connect to the servers &amp;#8211; I use &lt;code&gt;~/bin/Terminals&lt;/code&gt;. In that, place a file containing the following code:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;
#!/bin/sh
exec ssh -t `basename $0` screen -DR ; exit
&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;The filename should be the servername to connect to, you can use &lt;code&gt;~/.ssh/config&lt;/code&gt; to define short aliases for your servers:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;
Host myshortalias
  HostName long.hostname.tld
  User ausername
&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;This allows you to do &lt;code&gt;ssh myshortalias&lt;/code&gt; to connect to the server in question. So, to connect to this server, name the file in &lt;code&gt;~/bin/Terminals&lt;/code&gt; &lt;code&gt;myshortalias&lt;/code&gt;.&lt;/p&gt;

	&lt;p&gt;Make the &lt;code&gt;myshortalias&lt;/code&gt; file executable: &lt;code&gt;chmod 755 myshortalias&lt;/code&gt;&lt;/p&gt;

	&lt;p&gt;Try to open a connection via the &lt;code&gt;myshortalias&lt;/code&gt; file: &lt;code&gt;./myshortalias&lt;/code&gt; &amp;#8212; if this fails, you problably don&amp;#8217;t have &lt;code&gt;screen&lt;/code&gt; installed on the server &amp;#8211; I really recommend to install it.&lt;/p&gt;

	&lt;p&gt;OK, if that works, disconnect from the server, and open the Butler Configuration.&lt;/p&gt;

	&lt;p&gt;Expand the &amp;#8220;Hidden&amp;#8221; elements, if they are not visible. Select &amp;#8220;Add File&amp;#8221; from the plus button. Navigate to the &lt;code&gt;~/bin/&lt;/code&gt; folder and select the &amp;#8220;Terminals&amp;#8221; folder to add it to the Butler Configuration.&lt;/p&gt;

	&lt;p&gt;&lt;a class=&#039;serendipity_image_link&#039; href=&#039;http://unorganized.net/blog/uploads/butler.png&#039; onclick=&quot;F1 = window.open(&#039;/blog/uploads/butler.png&#039;,&#039;Zoom&#039;,&#039;height=705,width=1016,top=255,left=459.5,toolbar=no,menubar=no,location=no,resize=1,resizable=1,scrollbars=yes&#039;); return false;&quot;&gt;&lt;!-- s9ymdb:2 --&gt;&lt;img class=&quot;serendipity_image_left&quot; width=&quot;110&quot; height=&quot;76&quot; style=&quot;float: left; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://unorganized.net/blog/uploads/butler.serendipityThumb.png&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;Select the &amp;#8220;Terminals&amp;#8221; container, open the &amp;#8220;Triggers&amp;#8221; tab, assign a Hot Key, change mode to &amp;#8220;Opens a menu near the mouse&amp;#8221;.&lt;/p&gt;

	&lt;p&gt;&lt;a class=&#039;serendipity_image_link&#039; href=&#039;http://unorganized.net/blog/uploads/butler2.png&#039; onclick=&quot;F1 = window.open(&#039;/blog/uploads/butler2.png&#039;,&#039;Zoom&#039;,&#039;height=705,width=1016,top=255,left=459.5,toolbar=no,menubar=no,location=no,resize=1,resizable=1,scrollbars=yes&#039;); return false;&quot;&gt;&lt;!-- s9ymdb:3 --&gt;&lt;img class=&quot;serendipity_image_right&quot; width=&quot;110&quot; height=&quot;76&quot; style=&quot;float: right; border: 0px; padding-left: 5px; padding-right: 5px;&quot; src=&quot;http://unorganized.net/blog/uploads/butler2.serendipityThumb.png&quot; alt=&quot;&quot; /&gt;&lt;/a&gt; Select the &amp;#8220;Terminals&amp;#8221; folder, select the &amp;#8220;Menu Filter&amp;#8221; tab, change &amp;#8216;Menus show…&amp;#8217; to &amp;#8220;this folder&amp;#8217;s content with X levels of recursion&amp;#8221;, activate &amp;#8220;Translate subfolders into menus&amp;#8221;. &lt;/p&gt;

	&lt;p&gt;Select the &amp;#8220;Options&amp;#8221; tab and change the &amp;#8216;Open with…&amp;#8217; setting to &amp;#8220;Terminal&amp;#8221; (or iTerm or &amp;#8230;).&lt;/p&gt;

	&lt;p&gt;Pressing your hot key should now show a menu with the &lt;code&gt;myshortalias&lt;/code&gt; script. You can add subfolders to the &lt;code&gt;~/bin/Terminals&lt;/code&gt; folder to group your servers. To add a server, just copy (or even better: hard-link) the &lt;code&gt;myshortalias&lt;/code&gt; file to a new name which corresponds to a &lt;code&gt;Host&lt;/code&gt; config in &lt;code&gt;~/.ssh/config&lt;/code&gt;.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Mon, 19 Jan 2009 21:10:28 +0100</pubDate>
    <guid isPermaLink="false">http://unorganized.net/blog/archives/127-guid.html</guid>
    <category>butler</category>
<category>connection</category>
<category>mac</category>
<category>menu</category>
<category>screen</category>
<category>ssh</category>
<category>terminal</category>

</item>
<item>
    <title>Mail.app im vertikalen Layout</title>
    <link>http://unorganized.net/blog/archives/2-Mail.app-im-vertikalen-Layout.html</link>
            <category>Computers</category>
            <category>Mac</category>
    
    <comments>http://unorganized.net/blog/archives/2-Mail.app-im-vertikalen-Layout.html#comments</comments>
    <wfw:comment>http://unorganized.net/blog/wfwcomment.php?cid=2</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://unorganized.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=2</wfw:commentRss>
    

    <author>nospam@example.com (Eike Bernhardt)</author>
    <content:encoded>
    &lt;p&gt;Finally! Zufällig bin ich grade über &lt;a href=&quot;http://harnly.net/software/letterbox/&quot;&gt;http://harnly.net/software/letterbox/&lt;/a&gt; gestolpert, was Mail.app zu einem vertikalen Layout verhilft, was ich dann doch sehr vom Thunderbird gewöhnt bin.&lt;/p&gt;&lt;p&gt;Nice!&lt;/p&gt; 
    </content:encoded>

    <pubDate>Wed, 09 May 2007 10:43:00 +0200</pubDate>
    <guid isPermaLink="false">http://unorganized.net/blog/archives/2-guid.html</guid>
    <category>Computers</category>
<category>Mac</category>

</item>
<item>
    <title>Spass mit Druckern</title>
    <link>http://unorganized.net/blog/archives/5-Spass-mit-Druckern.html</link>
            <category>Computers</category>
            <category>Mac</category>
    
    <comments>http://unorganized.net/blog/archives/5-Spass-mit-Druckern.html#comments</comments>
    <wfw:comment>http://unorganized.net/blog/wfwcomment.php?cid=5</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://unorganized.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=5</wfw:commentRss>
    

    <author>nospam@example.com (Eike Bernhardt)</author>
    <content:encoded>
    &lt;p&gt;Auf der Suche nach der Möglichkeit, eine riesige Mindmap auszudrucken, bin ich über zwei nette Programme gestolpert:&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://fabien.iconus.ch/cocoabooklet/&quot;&gt;CocoaBooklet&lt;/a&gt; ermöglicht es, zusammenfaltbare Booklets auszudrucken&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://posterazor.sourceforge.net/&quot;&gt;PosteRazor&lt;/a&gt; erlaubt es, Grafiken auf mehreren Seiten auszudrucken, und sollte somit die Lösung zu meinem Problem sein.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Tue, 16 Jan 2007 21:23:32 +0100</pubDate>
    <guid isPermaLink="false">http://unorganized.net/blog/archives/5-guid.html</guid>
    <category>Computers</category>
<category>Mac</category>

</item>
<item>
    <title>Mac Mini und der Spachtel</title>
    <link>http://unorganized.net/blog/archives/6-Mac-Mini-und-der-Spachtel.html</link>
            <category>Computers</category>
            <category>Mac</category>
    
    <comments>http://unorganized.net/blog/archives/6-Mac-Mini-und-der-Spachtel.html#comments</comments>
    <wfw:comment>http://unorganized.net/blog/wfwcomment.php?cid=6</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://unorganized.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=6</wfw:commentRss>
    

    <author>nospam@example.com (Eike Bernhardt)</author>
    <content:encoded>
    &lt;p&gt;Wir haben auf der Arbeit einen neuen Mac Mini, der aber mit 512 MB etwas wenig Hauptspeicher hatte. Also mehr Speicher bestellt, und ich sollte den kleinen dann aufrüsten.&lt;/p&gt;&lt;p&gt;Nach etwas google befragen stellte sich dann heraus, das man dem Gehäuse wohl am besten mit einem Spachtel (!) zu Leibe rückt, um an das Innenleben ran zu kommen.&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;http://unorganized.net/pictures/macmini_aufruesten/thumbnails/thumb-1.jpg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;&lt;p&gt;Gesagt, getan, sowas hat man ja in der Werkzeugkiste, also ran an den Speck &amp;#8230; eeeh, Mac Mini. Nach einigem Fluchen hatte ich das Gehäuse dann endlich auf und konnte den Speicher ersetzen, das war dann alles relativ einfach.&lt;/p&gt;&lt;p&gt;Mehr Bilder gibt es unter &lt;a href=&quot;http://unorganized.net/pictures/macmini_aufruesten/&quot;&gt;http://unorganized.net/pictures/macmini_aufruesten/&lt;/a&gt;&lt;/p&gt; 
    </content:encoded>

    <pubDate>Thu, 04 Jan 2007 16:44:46 +0100</pubDate>
    <guid isPermaLink="false">http://unorganized.net/blog/archives/6-guid.html</guid>
    <category>Computers</category>
<category>Mac</category>

</item>

</channel>
</rss>