<?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>klein2 blog &#187; mac</title>
	<atom:link href="http://www.klein2.de/tag/mac/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.klein2.de</link>
	<description></description>
	<lastBuildDate>Sat, 04 Feb 2012 10:16:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Screencast: How to create a graph with rrdtool &amp; shell scripts</title>
		<link>http://www.klein2.de/2011/11/01/screencast-how-to-create-a-graph-with-rrdtool-shell-scripts/</link>
		<comments>http://www.klein2.de/2011/11/01/screencast-how-to-create-a-graph-with-rrdtool-shell-scripts/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 20:08:13 +0000</pubDate>
		<dc:creator>Dennis Klein</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technique Stuff]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[rrdtool]]></category>
		<category><![CDATA[statistics]]></category>

		<guid isPermaLink="false">http://www.klein2.de/?p=2483</guid>
		<description><![CDATA[This video shows how to create a graph with rrdtool, shell scripts &#038; 2 cron jobs. Vimeo (great quality) YouTube (not so nice quality) QuickTime (great quality) Sources of the files shown in the video. load/createdb.sh #!/bin/bash STEP=300 rrdtool create load.rrd --step $STEP \ DS:load:GAUGE:600:0:U \ RRA:AVERAGE:0.5:1:2160 \ RRA:AVERAGE:0.5:5:2016 \ RRA:AVERAGE:0.5:15:2880 \ RRA:AVERAGE:0.5:60:8760 load/load.sh #!/bin/bash [...]]]></description>
			<content:encoded><![CDATA[<p>This video shows how to create a graph with rrdtool, shell scripts &#038; 2 cron jobs. <span id="more-2483"></span></p>
<h2>Vimeo (great quality)</h2>
<div class="aussen">
<div class="innen"><iframe src="http://player.vimeo.com/video/31448355?title=0&amp;byline=0&amp;portrait=0" width="640" height="480" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe></div>
</div>
<h2>YouTube (not so nice quality)</h2>
<div class="aussen">
<div class="innen"><iframe width="640" height="480" src="http://www.youtube.com/embed/4lSrv7E3Tu4" frameborder="0" allowfullscreen></iframe></div>
</div>
<h2>QuickTime (great quality)</h2>
<div class="aussen">
<div class="innen"><object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="490" width="640"><param name="src" value="http://www.klein2.de/wp-content/uploads/2011/11/rrdtool.mov"><param name="autoplay" value="false"><param name="type" value="video/quicktime" height="490" width="640"><embed src="http://www.klein2.de/wp-content/uploads/2011/11/rrdtool.mov" height="496" width="640" autoplay="false" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/"></p>
<p></object></div>
</div>
<p>Sources of the files shown in the video.</p>
<h2>load/createdb.sh</h2>
<pre class="brush:bash">#!/bin/bash
STEP=300

rrdtool create load.rrd --step $STEP \
DS:load:GAUGE:600:0:U \
RRA:AVERAGE:0.5:1:2160 \
RRA:AVERAGE:0.5:5:2016 \
RRA:AVERAGE:0.5:15:2880 \
RRA:AVERAGE:0.5:60:8760</pre>
<h2>load/load.sh</h2>
<pre class="brush:bash">#!/bin/bash
load=`cat /proc/loadavg | awk -F' '  '{print $1}'`
/usr/bin/rrdtool update /srv/www/statistik/load/load.rrd N:$load</pre>
<h2>create_load.sh</h2>
<pre class="brush:bash">nice -n 19 /usr/bin/rrdtool graph /srv/www/statistik/load/loadg.png -a PNG -b 1024 --start -126900 \
-l 0 -u 10 -t "Load" --vertical-label "Current load" -w 600 -h 300 \
--color BACK#1e1816 --color FONT#ffffff --color CANVAS#1e1816 --color GRID#4E403C --color MGRID#4e403c --color FRAME#EEEEEE --color ARROW#4E403C \
--border 0  --grid-dash 1:0 --dynamic-labels --x-grid HOUR:8:DAY:1:DAY:1:43200:%A \
DEF:g1=/srv/www/statistik/load/load.rrd:load:AVERAGE \
LINE2:g1#ff3d00:"Load" \</pre>
<h2>/etc/crontab (last 2 lines)</h2>
<pre class="brush:bash">*/2 * * * *	root	/srv/www/statistik/load/load.sh
*/2 * * * *	root	/srv/www/statistik/create_load.sh 1>/dev/null</pre>
<p>If you are wondering why the load is that high; it&#8217;s a QuadCore Xeon processor with HyperThreading &#8211; 4 threads are 24/7 crunching <a href="http://setiathome.berkeley.edu">SETI@home</a> files <img src='http://www.klein2.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h2>Graph after several hours</h2>
<div class="aussen">
<div class="innen"><img src="http://www.klein2.de/wp-content/uploads/2011/11/loadg1.jpg" alt="" title="loadg" width="640" height="300" class="aligncenter size-full wp-image-2500" /></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.klein2.de/2011/11/01/screencast-how-to-create-a-graph-with-rrdtool-shell-scripts/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
<enclosure url="http://www.klein2.de/wp-content/uploads/2011/11/rrdtool.mov" length="45924542" type="video/quicktime" />
	<enclosure url="http://www.klein2.de/wp-content/uploads/2011/11/loadg-150x150.jpg" length="3775" type="image/jpg" />	</item>
		<item>
		<title>AirPort Express Roaming</title>
		<link>http://www.klein2.de/2011/07/08/airport-express-roaming/</link>
		<comments>http://www.klein2.de/2011/07/08/airport-express-roaming/#comments</comments>
		<pubDate>Fri, 08 Jul 2011 14:53:16 +0000</pubDate>
		<dc:creator>Dennis Klein</dc:creator>
				<category><![CDATA[Experiences]]></category>
		<category><![CDATA[Technique Stuff]]></category>
		<category><![CDATA[airport]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[wifi]]></category>

		<guid isPermaLink="false">http://www.klein2.de/?p=2315</guid>
		<description><![CDATA[Yesterday, I&#8217;ve blogged about my issues with the 3x AirPort Express stations that I&#8217;m running throughout my house. Well, luckily there is a pretty easy solution that &#8220;just&#8221; requieres me to have each station in the near of a LAN socket. No problem here! I just had to move one APE from the kitchen into [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday, I&#8217;ve blogged about my issues with the 3x AirPort Express stations that I&#8217;m running throughout my house. Well, luckily there is a pretty easy solution that &#8220;just&#8221; requieres me to have each station in the near of a LAN socket.</p>
<p><span id="more-2315"></span>No problem here! I just had to move one APE from the kitchen into the dorm room, where we have a LAN socket and also a power socket next to it.</p>
<p>The simplicity behind the setup is to do something that sounds (at least in my ears) a bit &#8220;uncommon&#8221;. You have to create 3 separate WiFi networks, all with the same SSID, password (WPA2 recommended!) &#038; channel. Then, connect each station to the LAN sockets and voilá &#8211; it works!</p>
<p>Here&#8217;s are some screenshots of my setup:<br />
<img src="http://www.klein2.de/wp-content/uploads/2011/07/1.png" alt="" title="1" width="640" height="474" class="aligncenter size-full wp-image-2318" /></p>
<p>At the &#8220;wireless&#8221; tab, be sure to have the same settings on all your access points!</p>
<p><img src="http://www.klein2.de/wp-content/uploads/2011/07/3.png" alt="" title="3" width="640" height="474" class="aligncenter size-full wp-image-2316" /></p>
<p>On the internet section &#8211; select &#8220;Bridge mode&#8221;&#8230;</p>
<p><img src="http://www.klein2.de/wp-content/uploads/2011/07/2.png" alt="" title="2" width="640" height="474" class="aligncenter size-full wp-image-2317" /></p>
<p>I prefer static local IPs for this kind of device <img src='http://www.klein2.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>That&#8217;s all! I tested it and got the max. speed out of the DSL connection throughout the whole house!</p>
<p>Many thanks to <a href="http://twitter.com/sl1974">@sl1974</a> for pointing my nose onto page 40 of <a href="http://manuals.info.apple.com/en/designing_airport_networks_10.5-windows.pdf">this document</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.klein2.de/2011/07/08/airport-express-roaming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url="http://www.klein2.de/wp-content/uploads/2011/07/3-150x150.png" length="13258" type="image/jpg" />	</item>
		<item>
		<title>Home Office page updated</title>
		<link>http://www.klein2.de/2011/06/30/home-office-page-updated/</link>
		<comments>http://www.klein2.de/2011/06/30/home-office-page-updated/#comments</comments>
		<pubDate>Thu, 30 Jun 2011 10:00:14 +0000</pubDate>
		<dc:creator>Dennis Klein</dc:creator>
				<category><![CDATA[Animé]]></category>
		<category><![CDATA[Home Office]]></category>
		<category><![CDATA[Overhauling]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Technique Stuff]]></category>
		<category><![CDATA[home]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[office]]></category>
		<category><![CDATA[overhauling]]></category>

		<guid isPermaLink="false">http://www.klein2.de/?p=2274</guid>
		<description><![CDATA[With an overhaul last week, the era of the black/orange wallpapers is over. I&#8217;ve just updated the Home Office page this morning with some new photos, more text and more computer details! Learn more]]></description>
			<content:encoded><![CDATA[<p>With an overhaul last week, the era of the black/orange wallpapers is over. I&#8217;ve just updated the Home Office page this morning with some new photos, more text and more computer details! <a href="http://www.klein2.de/office/">Learn more</a> <img src='http://www.klein2.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.klein2.de/2011/06/30/home-office-page-updated/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Planning the new Home Office (8.0a)</title>
		<link>http://www.klein2.de/2011/05/21/planning-the-new-home-office-8-0a/</link>
		<comments>http://www.klein2.de/2011/05/21/planning-the-new-home-office-8-0a/#comments</comments>
		<pubDate>Sat, 21 May 2011 18:21:08 +0000</pubDate>
		<dc:creator>Dennis Klein</dc:creator>
				<category><![CDATA[Overhauling]]></category>
		<category><![CDATA[Technique Stuff]]></category>
		<category><![CDATA[attic]]></category>
		<category><![CDATA[home office]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[moving]]></category>
		<category><![CDATA[overhaul]]></category>

		<guid isPermaLink="false">http://www.klein2.de/?p=2004</guid>
		<description><![CDATA[Yey! The headline is a rip-off of Stefan&#8217;s latest post about home offices. I highly recommend reading his post! While Stefan takes it slowly with moving around stuff (well until this time), I have a fable for moving stuff around and also moving between rooms. You may wonder why I plan to move my office [...]]]></description>
			<content:encoded><![CDATA[<p>Yey! The headline is a <a href="http://www.stefandidak.com/2011/05/planning-the-new-home-office-7-0-beta/">rip-off of Stefan&#8217;s latest post</a> about home offices. I highly recommend  reading his post! <span id="more-2004"></span></p>
<p>While Stefan takes it slowly with moving around stuff (well until this time), I have a fable for moving stuff around and also moving between rooms. You may wonder why I plan to move my office again. The answer is a bit delicate and I&#8217;ll try to explain it without sounding rude (what I am NOT).</p>
<p>It&#8217;s pretty easy: I work at home and our house was build in a new housing estate with the result that we have a lot gardens here. My office is (currently) facing our garden, and also the neighbors one. When it turns to spring and summer, neighbors put their kids (and friends of them) into their garden which increases the noise level dramatically. As mentioned before &#8211; <strong>this is not meant rude</strong> &#8211; I just prefer to sit in a silent room and rarely listen to music while working. As this is a housing estate that&#8217;s my own fault &#8211; I could rent a small office in a technology park, but that&#8217;s kinda expensive. So I spend some days on measuring the temperatures of the current office and the attic. The results are kinda funny: At 3pm, it&#8217;s around 24.7°C in my current office with the Mac Pro running + 2 HP screens creating heat. The attic is at 23.1°C &#8211; I was a bit surprised &#8211; sure, the Mac Pro will add some heat to the attic but I think it&#8217;s not as worse as I thought before, looking at the thermometers.</p>
<p>But back to the planning. I plan to use the following hardware in the attic office (8.0beta) (will not buy new stuff).</p>
<p>- Mac Pro Quad Core 2.8 2010 model / 16GB RAM / SSD<br />
- ATI Radeon 5770 &#8211; 3x HP Z24r 24&#8243; screens<br />
- GeForce GT120 &#8211; 2x Samsung 22&#8243; screens</p>
<p>† As long as she survives †<br />
- MacBook Alu 2008 13&#8243; / 4GB RAM / SSD</p>
<p>And my wifes stuff<br />
- iMac 21.5&#8243; i3 / 12GB RAM<br />
- MacBook White</p>
<p>I went through the process of testing a lot different variations of desktops. Even buying new VIKA AMON or GALANT series was planned. The best option would be to get 2x GALANT with some additional stuff from this series, but that would be expensive &#8211; ~900€ + transportation home (too huge for our car <img src='http://www.klein2.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ). So we planned again using the IKEA Home Planner tool (2010 version &#8211; not available from IKEA directly &#8211; but Google is your friend <img src='http://www.klein2.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ) and this is the result:</p>
<p><center><img src="http://dl.dropbox.com/u/157973/Bildschirmfoto%202011-05-21%20um%2016.05.32.png" alt="Home Office 8.0a" /></center></p>
<p><strong>Heat</strong><br />
In the past I had complained about the heat at the attic sometimes &#8211; that was the main reason I moved downstairs into the current home office 2 years ago, but because of already mentioned reasons, I will get used to it. In the end, it&#8217;s not much warmer there. If it get&#8217;s way too warm, I need to escape with a MacBook or finally get a cooling unit (which is more expensive in using (power costs) than buying it initially.</p>
<p><strong>Lines</strong><br />
The good thing is, that I have a lot great connections upstairs. Ok &#8211; I don&#8217;t need ISDN anymore and Sat is meanwhile tunneled via the Network, too, but to be able to use 2-3 lines of GBit/s speed is always welcome <img src='http://www.klein2.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Storage</strong><br />
Of course &#8211; no overhauling talk without also highlighting this topic. Currently, and I say currently, because it&#8217;s a kinda imperfect situation, but it works, I&#8217;m running a Mac mini in the basement, pimped to 8GB of RAM and 80GB Intel SSD. I&#8217;ve installed OS X SL Server on this particular machine and connected 2x Onnto boxes (4x 1TB + 4x 1.5TB) to it. The speeds are &#8220;ok&#8221; &#8211; up to 60MB/s via the GBit network and I would not complain if playing a media file (even a simple MP3 files) would work without interrupting while I just browse on the same RAID device. That it kinda annoying. I&#8217;ve tried to sell the components of my Filer, but the truth is, that this stuff seems to be too special &#8211; not one single person is interested in my LSI/Intel SASUC8i, 24GB ECC RAM or my AMD 245e CPU. I will let it run for the next few days, but when I can&#8217;t sell it, the idea of a dedicated filer will come back into my mind &#8211; and believe me &#8211; I currently have WAY to much HDs laying around (somewhat of 25TB). So &#8211; let&#8217;s see what will happen here <img src='http://www.klein2.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  The pro with the lines is, that I could theoretically use up to 2Gbps between the basement and the Mac Pro if I connect it directly.</p>
<p><strong>Otaku</strong><br />
Started this hobby in the mid of last year before I paused for several years. Meanwhile more than 20 figures made their way to our Home Office (it&#8217;s a mixed collection of my wifes figures &#038; wall scrolls and mine). Also, a bunch of wall scrolls are hanging in the current office. OF COURSE, all this stuff will move to the new office <img src='http://www.klein2.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Screens / Cinewall</strong><br />
Looks like a lot people liked the &#8220;cinewall&#8221; I had installed, got some &#8220;shocked&#8221; feedback when I said &#8220;Hey, I can live fine with only one screen&#8221;. Oh me fool <img src='http://www.klein2.de/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  Luckily I haven&#8217;t sold any display &#8211; I love multiple screens &#8211; it&#8217;s somewhat handy when coding on complicated functions and modules for <a href="http://www.ctrltweet.com">ctrltweet</a>. So, yes &#8211; the cinewall will be back (and better) in the new office. I will upgrade my desk to 5 screens. Yes. 5 <img src='http://www.klein2.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  2x 22&#8243; will make it to the left and right (onto the brown/black Expedits you can see on the graphic above).</p>
<p>That&#8217;s it for the plans &#8211; we already bought some nice stuff (like a 3rd 4&#215;2 Expedit) today and the main movement day will be tomorrow. I will keep you updated!</p>
<p>Ciao<br />
Dennis</p>
]]></content:encoded>
			<wfw:commentRss>http://www.klein2.de/2011/05/21/planning-the-new-home-office-8-0a/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url="http://www.klein2.de/wp-content/uploads/2011/05/Bildschirmfoto-2011-05-21-um-16.05.32-150x150.png" length="17569" type="image/jpg" />	</item>
		<item>
		<title>nohup, HD serial numbers, DMG to ISO &amp; high Windows CPU load in VirtualBox</title>
		<link>http://www.klein2.de/2011/02/11/nohup-hd-serial-numbers-dmg-to-iso-high-windows-cpu-load-in-virtualbox/</link>
		<comments>http://www.klein2.de/2011/02/11/nohup-hd-serial-numbers-dmg-to-iso-high-windows-cpu-load-in-virtualbox/#comments</comments>
		<pubDate>Fri, 11 Feb 2011 14:44:16 +0000</pubDate>
		<dc:creator>Dennis Klein</dc:creator>
				<category><![CDATA[Experiences]]></category>
		<category><![CDATA[Technique Stuff]]></category>
		<category><![CDATA[cpu]]></category>
		<category><![CDATA[dmg]]></category>
		<category><![CDATA[iso]]></category>
		<category><![CDATA[load]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[nexenta]]></category>
		<category><![CDATA[nohup]]></category>
		<category><![CDATA[serial number hd]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.klein2.de/?p=1689</guid>
		<description><![CDATA[In this post, I cover 4 complete different things that I found out this week. This is what I&#8217;ve expected on Nexenta Core 3 and VirtualBox 3.1.6 on it. nohup What sounds a bit familiar dutch to me is a command that puts a process into the system background and not your users background. I [...]]]></description>
			<content:encoded><![CDATA[<p>In this post, I cover 4 complete different things that I found out this week. This is what I&#8217;ve expected on Nexenta Core 3 and VirtualBox 3.1.6 on it. <span id="more-1689"></span></p>
<p><strong>nohup</strong><br />
What sounds a bit familiar dutch to me is a command that puts a process into the system background and not your users background. I think screen is based on it.</p>
<p>Example:</p>
<pre class="brush:bash">$ VirtualBox -s "Nyu" &#038;</pre>
<p>This would launch the VM &#8220;Nyu&#8221; and when you press Enter one time, you will be back in the terminal while it&#8217;s running. The &#8220;&#038;&#8221; at the end of the line does this, it put&#8217;s the process into the background.</p>
<p>What I had not in mind was to put it into the session&#8217;s background. Once I close the terminal, the VM will be shut down (and maybe damaged).</p>
<p>The right way:</p>
<pre class="brush:bash">$ nohup VirtualBox -s "Nyu" &#038;</pre>
<p>This will put your VM process into the system&#8217;s background. There&#8217;s no need to run your session anymore, you can close it and the VM will continue running.</p>
<p>Another option is to use the tool &#8220;screen&#8221; which is available on a lot UNIX or Linux systems. Screen is fine for processes you want to watch. I personally use it for irssi (IRC chat client, based on the console). You can detach it and come back later, attach the console and you see all what happend when you were away.</p>
<hr />
<p><strong>HD serial numbers</strong><br />
ZFS is great. It&#8217;s very stable, fast and secure. But &#8211; what will happen is that HDs will fail. It&#8217;s not a question of &#8220;if&#8221;, but &#8220;when&#8221;. Yesterday, @gotteshand asked me how I know which HD is broken, especially when I run more than one of the same HDs. A very good question &#8211; but there&#8217;s a solution.</p>
<p>What you need:<br />
1. smartctl must be installed </p>
<pre class="brush:bash"># apt-get install smartmontools</pre>
<p>2. you need the information of the format command</p>
<pre class="brush:bash">root@karinka:/export/home/dieta# format
Searching for disks...done

AVAILABLE DISK SELECTIONS:
       0. c0t0d0 <ATA-Hitachi HDS72101-A39C-931.51GB>
          /pci@0,0/pci1458,b002@11/disk@0,0
       1. c0t1d0 <ATA-Hitachi HDS72101-A3EA-931.51GB>
          /pci@0,0/pci1458,b002@11/disk@1,0
       2. c0t2d0 <ATA-Hitachi HDS72101-A3EA-931.51GB>
          /pci@0,0/pci1458,b002@11/disk@2,0
       3. c0t3d0 <ATA-Hitachi HDS72101-A3EA-931.51GB>
          /pci@0,0/pci1458,b002@11/disk@3,0
       4. c0t4d0 <ATA-Hitachi HDS72101-A39C-931.51GB>
          /pci@0,0/pci1458,b002@11/disk@4,0
       5. c0t5d0 <ATA-Hitachi HDS72101-A3EA-931.51GB>
          /pci@0,0/pci1458,b002@11/disk@5,0
       6. c2d0 <DEFAULT cyl 19454 alt 2 hd 255 sec 63>
          /pci@0,0/pci-ide@14,1/ide@0/cmdk@0,0
       7. c3t0d0 <ATA-WDC WD10EADS-65L-1A01-931.51GB>
          /pci@0,0/pci1002,5978@2/pci1000,3140@0/sd@0,0
       8. c3t1d0 <ATA-WDC WD10EADS-65L-1A01-931.51GB>
          /pci@0,0/pci1002,5978@2/pci1000,3140@0/sd@1,0
       9. c3t2d0 <ATA-WDC WD10EADS-65L-1A01-931.51GB>
          /pci@0,0/pci1002,5978@2/pci1000,3140@0/sd@2,0
      10. c3t3d0 <ATA-WDC WD10EADS-00L-1A01-931.51GB>
          /pci@0,0/pci1002,5978@2/pci1000,3140@0/sd@3,0
      11. c3t4d0 <ATA-WDC WD15EARS-00Z-0A80-1.36TB>
          /pci@0,0/pci1002,5978@2/pci1000,3140@0/sd@4,0
      12. c3t5d0 <ATA-WDC WD15EARS-00Z-0A80-1.36TB>
          /pci@0,0/pci1002,5978@2/pci1000,3140@0/sd@5,0
      13. c3t6d0 <ATA-WDC WD15EARS-00Z-0A80-1.36TB>
          /pci@0,0/pci1002,5978@2/pci1000,3140@0/sd@6,0
      14. c3t7d0 <ATA-SAMSUNG HD154UI-1118-1.36TB>
          /pci@0,0/pci1002,5978@2/pci1000,3140@0/sd@7,0</pre>
<p>(Press CTRL+C to leave the command)</p>
<p>3. This little script:</p>
<pre class="brush:bash">#!/bin/bash
smartctl -a -d sat,12 /dev/rdsk/$1</pre>
<p>Save it as hddsn.sh and set it to a+x:</p>
<pre class="brush:bash"># chmod a+x hddsn.sh</pre>
<p>4. Run it!</p>
<pre class="brush:bash"># ./hddsn.sh c0t0d0
smartctl 5.39.1 2010-01-28 r3054 [i386-pc-solaris2.11] (local build)
Copyright (C) 2002-10 by Bruce Allen, http://smartmontools.sourceforge.net

=== START OF INFORMATION SECTION ===
Device Model:     Hitachi HDS721010CLA332
Serial Number:    JPxxxxHQxHDxxx
[...]</pre>
<p>You will receive a real bunch with a lot information about your drive, but the serial number is the one you want to know. Do this for ALL you drives and note them like this:</p>
<p>c0t0d0 | RAIDz1 storage | Hitachi 1TB | JPxxxxHQxHDxxx</p>
<p>and maybe shut down the server, remove your HDs ONE BY ONE (remove, note the serial, print it with a dymo, tape it on the back that you see and put the HD back to the case, NOW, go on with the next!). Be careful NOT to mix the SATA cables. This will also help you identify a broken HD &#8211; it&#8217;s pretty easy to replace them knowing which one is the right one.</p>
<p><img src="http://www.klein2.de/wp-content/uploads/2011/02/hddsnliste.png" alt="" title="hddsnliste" width="597" height="591" class="aligncenter size-full wp-image-1699" /></p>
<hr />
<p><strong>DMG to ISO</strong><br />
When you are a Mac user, you know DMG&#8217;s. Ripping a DVD or CD for installing a software on your VirtualBox using the harddisk utility creates a DMG by default &#8211; maybe you have older images in that format.</p>
<p>There&#8217;s a little command line that helps your to convert DMG&#8217;s to ISO&#8217;s.</p>
<pre class="brush:bash">$ hdiutil convert debian-netinstall.dmg -format UDTO -o debian-netinstall.iso
$ mv debian-netinstall.iso.cdr debian-netinstall.iso</pre>
<p>I&#8217;ve no idea why it creates a .iso.cdr first, but the renaming works fine, and so you are able to push it to your server to install it virtually.</p>
<hr />
<p><strong>High Windows CPU load in VirtualBox</strong><br />
A few days ago, I&#8217;ve explained how to quickly migrate VMware Fusion VMs to VirtualBox. This works pretty fine for Linux/Debian, but not with Windows. I was sick of having a Windows XP on my Mac Pro and also one on my MacBook, so I decided to create a VM on the Nexenta server that I could also access from on the road.</p>
<p>I&#8217;ve followed my own steps to move the VMware Fusion installation to VirtualBox, but I noticed that the core it was running on (1) was creating full load. I thought: Ok &#8211; maybe Windows XP is not a good idea &#8211; will check it later &#8211; and stopped working on that issue.</p>
<p>A few days later, I installed Windows Server 2008 R2 x64 in a VM, being surprised by the low load it creates. Running 3x Debian VMs + 1x Windows Server 2008 R2 x64 created a load of just 5-6%. That&#8217;s amazing for a small DualCore 2.9GHz 45W AMD X2 245e CPU.</p>
<p>I then started to install Windows XP SP3 today fresh &#8211; from the ISO I&#8217;ve ripped from my original CD. It works fine! Installation increased the load for a short time, but once it&#8217;s booted and has not much to do, it will drop down to 6-7% of CPU usage (the Nexenta, not the Windows XP itself <img src='http://www.klein2.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ).</p>
<p>To be able to access it easily, I enabled Remote Access on this virtual machine which is a bit snappier than the VirtualBox (X-forwarded) interface.</p>
<p>Resumé: Install Windows VMs from scratch on VirtualBox. It&#8217;s nice fast here and welcome, even if I just need it for IE test &#038; some rare Office stuff.<br />
<img src="http://www.klein2.de/wp-content/uploads/2011/02/Bildschirmfoto-2011-02-11-um-15.41.58.png" alt="" title="Bildschirmfoto 2011-02-11 um 15.41.58" class="aligncenter size-full wp-image-1696" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.klein2.de/2011/02/11/nohup-hd-serial-numbers-dmg-to-iso-high-windows-cpu-load-in-virtualbox/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	<enclosure url="http://www.klein2.de/wp-content/uploads/2011/02/Bildschirmfoto-2011-02-11-um-15.41.58-150x150.png" length="16276" type="image/jpg" />	</item>
		<item>
		<title>Time Machine Volumes with ZFS &amp; AFP</title>
		<link>http://www.klein2.de/2011/01/09/time-machine-volumes-with-zfs-afp/</link>
		<comments>http://www.klein2.de/2011/01/09/time-machine-volumes-with-zfs-afp/#comments</comments>
		<pubDate>Sun, 09 Jan 2011 11:49:33 +0000</pubDate>
		<dc:creator>Dennis Klein</dc:creator>
				<category><![CDATA[Technique Stuff]]></category>
		<category><![CDATA[afp]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[mac os x]]></category>
		<category><![CDATA[netatalk]]></category>
		<category><![CDATA[time machine]]></category>
		<category><![CDATA[zfs]]></category>

		<guid isPermaLink="false">http://www.klein2.de/?p=1550</guid>
		<description><![CDATA[After moving to Nexenta with ZFS, I of course wanted to keep hourly backups of the Macs in the network. We&#8217;re currently running 6 of them: - Mac Pro &#8220;Kurumi&#8221; in the office - iMac &#8220;Indy&#8221; in the office - MacBook &#8220;Dawn&#8221; &#8211; everywhere - MacBook &#8220;Hammy&#8221; &#8211; everywhere - Mac mini &#8220;Belldandy&#8221; in the [...]]]></description>
			<content:encoded><![CDATA[<p>After moving to Nexenta with ZFS, I of course wanted to keep hourly backups of the Macs in the network. We&#8217;re currently running 6 of them: <span id="more-1550"></span></p>
<p>- Mac Pro &#8220;Kurumi&#8221; in the office<br />
- iMac &#8220;Indy&#8221; in the office<br />
- MacBook &#8220;Dawn&#8221; &#8211; everywhere<br />
- MacBook &#8220;Hammy&#8221; &#8211; everywhere<br />
- Mac mini &#8220;Belldandy&#8221; in the living room<br />
- Mac mini &#8220;Saki&#8221; in the office</p>
<p>As both Mac minis are &#8220;just&#8221; used to playback videos (from the Nexenta server), TV (Sat) &#038; Radio (Sat), I don&#8217;t think a backup makes any sense. So &#8211; still 4 Macs to backup left. On Debian it was a hassle to create new partitions now and oh &#8211; the backup pool (4x 1.5TB RAIDz1) was already created and data is stored onto.</p>
<p>Luckily, ZFS is a fantastic filesystem. I simply create new pools below the mainpool.</p>
<pre class="brush:plain">zfs create backup/tm-kurumi</pre>
<p>Done! This took just a few seconds. Now I want that Time Machine does not fill up the complete space of the backup pool, so I set a quota. 500GB sounds reasonable, since I save most of my stuff directly to my server and my Mac Pro&#8217;s OS drive is a 240GB SSD.</p>
<pre class="brush:plain">zfs set quota=500G backup/tm-kurumi</pre>
<p>Let&#8217;s see if it works:</p>
<pre class="brush:plain">root@karinka:/var/spool/cron/crontabs# zfs list
NAME                     USED  AVAIL  REFER  MOUNTPOINT
backup                  1.15T  2.85T   578G  /backup
backup/tm-kurumi         65K   500G   65K  /backup/tm-kurumi</pre>
<p>Looks good! The next step is to assign the correct rights to this volume, so that the user can really use it when logging on to it via AFP and later using Time Machine.</p>
<pre class="brush:plain">chmod 770 -R /backup/tm-kurumi
chown -R dieta /backup/tm-kurumi</pre>
<p>&#8220;dieta&#8221; is my username to access the AFP network.</p>
<p>Last step on the UNIX side is to make this volume &#8220;supported&#8221;. In the past a lot people were working with the following command on the CLIENT</p>
<pre class="brush:plain">defaults write com.apple.systempreferences TMShowUnsupportedNetworkVolumes 1</pre>
<p>but this is a bad idea &#8211; you need to redo this on every single client. There&#8217;s an easier option (especially from admins point of view) to make a volume supported from the server&#8217;s side.</p>
<pre class="brush:plain">touch /backup/tm-kurumi/.com.apple.timemachine.supported</pre>
<p>That&#8217;s all you need to do (sure, per volume, but it saves you to touch others Macs from the terminal). Now this is a fully supported Time Machine volume <img src='http://www.klein2.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Oh! It seems like this also works for Debian &#038; other systems and not only Nexenta/OpenSolaris, so give it a try!</p>
<p>To share it, we need to add a single line (per Time Machine) to the <strong>/etc/netatalk/AppleVolumes.default</strong>:</p>
<pre class="brush:plain">/backup/tm-kurumi       "Time Machine Kurumi"   allow:dieta cnidscheme:dbd options:tm</pre>
<p>Maybe you want to restart netatalk now using</p>
<pre class="brush:plain">/etc/init.d/netatalk restart</pre>
<p>But I found out, that&#8217;s it&#8217;s not needed. AFP loads the netatalk config files when you log on to the server via Finder.</p>
<p>At last, connect to your server via AFP and log in to the new volume and them tell Time Machine to use this volume. Here&#8217;s a screenshot how it looks when the backup is done <img src='http://www.klein2.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><img src="http://www.klein2.de/wp-content/uploads/2011/01/Bildschirmfoto-2011-01-09-um-12.47.01.png" alt="" title="Bildschirmfoto 2011-01-09 um 12.47.01" class="aligncenter size-full wp-image-1553" /></p>
<p>Hope you enjoyed this post and have learned some stuff!</p>
<p>By the way: did it for all 4 Macs and this looks like this on Nexenta:<br />
<img src="http://www.klein2.de/wp-content/uploads/2011/01/Bildschirmfoto-2011-01-09-um-12.53.53.png" alt="" title="Bildschirmfoto 2011-01-09 um 12.53.53" class="aligncenter size-full wp-image-1556" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.klein2.de/2011/01/09/time-machine-volumes-with-zfs-afp/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	<enclosure url="http://www.klein2.de/wp-content/uploads/2011/01/Bildschirmfoto-2011-01-09-um-12.47.01-150x150.png" length="18814" type="image/jpg" />	</item>
		<item>
		<title>3x HP ZR24w</title>
		<link>http://www.klein2.de/2010/12/07/3x-hp-zr24w/</link>
		<comments>http://www.klein2.de/2010/12/07/3x-hp-zr24w/#comments</comments>
		<pubDate>Tue, 07 Dec 2010 16:00:15 +0000</pubDate>
		<dc:creator>Dennis Klein</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[Technique Stuff]]></category>
		<category><![CDATA[1920x1200]]></category>
		<category><![CDATA[24"]]></category>
		<category><![CDATA[hp]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[screen]]></category>
		<category><![CDATA[triple screen]]></category>
		<category><![CDATA[ZR24w]]></category>

		<guid isPermaLink="false">http://www.klein2.de/?p=1330</guid>
		<description><![CDATA[As mentioned in my last post, after returning the 27&#8243; ACD (a second time) after experiencing bad headache with it, I gave up on Apple screens and ordered 3x HP ZR24w screens &#8211; non-glossy and not that huge per screen. Here are the photos Cat-scan I was doing support for several years in the past, [...]]]></description>
			<content:encoded><![CDATA[<p>As mentioned in my last post, after returning the 27&#8243; ACD (a second time) after experiencing bad headache with it, I gave up on Apple screens and ordered 3x HP ZR24w screens &#8211; non-glossy and not that huge per screen. Here are the photos <img src='http://www.klein2.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <span id="more-1330"></span></p>
<div class="aussen">
<div class="innen"><img src="http://www.klein2.de/wp-content/uploads/2010/12/catscan.jpg" alt="" title="catscan" class="aligncenter size-full wp-image-1331" /></div>
</div>
<p><em>Cat-scan <img src='http://www.klein2.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </em></p>
<div class="aussen">
<div class="innen"><img src="http://www.klein2.de/wp-content/uploads/2010/12/hp-boxes.jpg" alt="" title="hp-boxes" class="aligncenter size-full wp-image-1333" /></div>
</div>
<div class="aussen">
<div class="innen"><img src="http://www.klein2.de/wp-content/uploads/2010/12/ports.jpg" alt="" title="ports" class="aligncenter size-full wp-image-1336" /></div>
</div>
<div class="aussen">
<div class="innen"><img src="http://www.klein2.de/wp-content/uploads/2010/12/front.jpg" alt="" title="front" class="aligncenter size-full wp-image-1332" /></div>
</div>
<div class="aussen">
<div class="innen"><img src="http://www.klein2.de/wp-content/uploads/2010/12/pivot.jpg" alt="" title="pivot" class="aligncenter size-full wp-image-1335" /></div>
</div>
<div class="aussen">
<div class="innen"><img src="http://www.klein2.de/wp-content/uploads/2010/12/pivot-rotated.jpg" alt="" title="pivot-rotated" class="aligncenter size-full wp-image-1334" /></div>
</div>
<div class="aussen">
<div class="innen"><img src="http://www.klein2.de/wp-content/uploads/2010/12/triple-front.jpg" alt="" title="triple-front" class="aligncenter size-full wp-image-1338" /></div>
</div>
<div class="aussen">
<div class="innen"><img src="http://www.klein2.de/wp-content/uploads/2010/12/triple-back.jpg" alt="" title="triple-back" class="aligncenter size-full wp-image-1337" /></div>
</div>
<p>I was doing support for several years in the past, and so I know about the importance to especially let displays join the room temperature. This means: I will post &#8220;on desk&#8221; photos later into this post. So please stay tuned!</p>
<p><strong>UPDATE</strong></p>
<div class="aussen">
<div class="innen"><img src="http://www.klein2.de/wp-content/uploads/2010/12/hps-set-up.jpg" alt="" title="hps-set-up" class="aligncenter size-full wp-image-1340" /></div>
</div>
<p>Unfortunately, the Radeon 5770 in my Mac Pro does not support more than 2x DVI the same time. I&#8217;m still waiting for the two Mini DisplayPort to DisplayPort cables that I&#8217;ve ordered on Friday. They were sent out today &#8211; with Hermes &#8211; urgs. So hopefully anytime tomorrow they will be here and then I&#8217;m ready to boost all 3 screens <img src='http://www.klein2.de/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Those screens are AWESOME &#8211; showing me a very homogeneous picture. Like the 30&#8243; ACD they also have an anti-glare coating, but by far not that intensive, so you don&#8217;t really recognize it.</p>
<p>The brightness is very high, delivered with 90%, reduced to 40% and now to 20% they are showing more than enough brightness to work with them. Also contrast should be reduced as mentioned by <a href="http://twitter.com/stefandidak">@StefanDidak</a> via Twitter. I will take a look at this later.</p>
<p>For 360€/display, it&#8217;s a fantastic deal that HP offers. They are capable to be put into Pivot mode (90° rotated) and OS X offers an option to rotate the screen content. In my mind that&#8217;s a bit too high. It feels like watching upwards on a skyscraper &#8211; nothing I want to use <img src='http://www.klein2.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Nether the less I should mention that the S-IPS panel is great! Having one screen rotated you can clearly read and see the content on the screen from bottom to top. I tried that with my old Samsung 22&#8243; (226BW) a year ago and this was just ugly &#8211; well, that&#8217;s one of the differences between a TN and a S-IPS panel.</p>
<p>1920&#215;1200 is a good size. The pixels on this 24&#8243; screen are of course bigger than on the 27&#8243; Apple Cinema Display, but I think, for me &#8211; it&#8217;s the better deal!</p>
<p>I zapped into a bit 1080p material and it&#8217;s great to see. The screen is very responsive and watching a movie works fine. But this is in my mind a domain of a glossy screen &#8211; the HPs are non-glossy and so, of course the blacks are not as black as on glossy screens. That&#8217;s why we have a glossy 42&#8243; Panasonic Plasma in the living room &#8211; this one is made for watching movies while this workstation here is made for work. Fine to watch an episode of &#8220;The Big Bang Theory&#8221; when having lunch, but nothing for a blockbuster movie. And that&#8217;s fine for me!</p>
<p>The feet of the displays are very sturdy and heavy. Shaking the desk a bit doesn&#8217;t make them shake and so you don&#8217;t feel sea-sick when writing a blog post <img src='http://www.klein2.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;m using 8 of the 12 USB ports. Why? Because each display has 2 where the ports are and 2 on the left side. Having 3 stacked into a triple screen setup blocks 2x 2 USB ports on the sides. I&#8217;ve connected all 3 displays via USB to the Mac Pro and connected the keyboard, mouse, webcam and the UPS to the displays &#8211; and still have a lot free ports for my card reader, headset etc pp.</p>
<p>More tomorrow &#8211; when hopefully the cables were delivered.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.klein2.de/2010/12/07/3x-hp-zr24w/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	<enclosure url="http://www.klein2.de/wp-content/uploads/2010/12/catscan-150x150.jpg" length="7394" type="image/jpg" />	</item>
		<item>
		<title>The new Mac</title>
		<link>http://www.klein2.de/2010/12/04/the-new-mac/</link>
		<comments>http://www.klein2.de/2010/12/04/the-new-mac/#comments</comments>
		<pubDate>Sat, 04 Dec 2010 12:16:44 +0000</pubDate>
		<dc:creator>Dennis Klein</dc:creator>
				<category><![CDATA[Technique Stuff]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[centro]]></category>
		<category><![CDATA[i7]]></category>
		<category><![CDATA[imac]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[mac pro]]></category>
		<category><![CDATA[ocz]]></category>
		<category><![CDATA[ram]]></category>
		<category><![CDATA[ssd]]></category>
		<category><![CDATA[store]]></category>
		<category><![CDATA[xeon]]></category>

		<guid isPermaLink="false">http://www.klein2.de/?p=1300</guid>
		<description><![CDATA[I continue this story with this new post. If you don&#8217;t know what had happened in the last few weeks &#8211; please go to this post and read it On Thursday, I should have been able to grab my shiny new iMac &#8220;Mid 2010&#8243; edition from the Apple Store CentrO. I&#8217;ve got the UPS tracking [...]]]></description>
			<content:encoded><![CDATA[<p>I continue <a href="http://www.klein2.de/2010/11/25/still-no-new-imac-in-sight/">this story</a> with this new post. If you don&#8217;t know what had happened in the last few weeks &#8211; please go to this post and read it <img src='http://www.klein2.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  <span id="more-1300"></span></p>
<p>On Thursday, I should have been able to grab my shiny new iMac &#8220;Mid 2010&#8243; edition from the Apple Store CentrO. I&#8217;ve got the UPS tracking code from AppleCare in Cork, IE and saw that it arrived on time. But to be sure, I thought: better give them a call. They guy on the hotline was not really in the mood the check it for me. He said &#8220;If the UPS tracking says it&#8217;s here, you can pick it up &#8211; no worries!&#8221;. Ok.</p>
<p>So we went to the Store again, happy to close this chapter. Couldn&#8217;t be that hard to simply get a machine that you paid for a few months ago, right? Let me take a look on how the iMac should be configured&#8230; ah yes:</p>
<p>iMac &#8220;Mid 2010&#8243; 27&#8243;<br />
2.93GHz i7 CPU<br />
4GB of RAM (upgraded to 8GB as promised)<br />
256GB Apple SSD (maybe most important)<br />
1TB HD</p>
<p>When we arrived and went to the Store, I directly asked for the Store Manager (name of course hidden here). Turns out that he was there and came to me, with the Genius/Technician who supports my case. Both were very friendly, but &#8211; the Manager told me that (again) something went wrong. Eeeeeek! Seriously!? It was not a bad joke as I thought in the very first moment. No &#8211; they really had forgotten to built in the SSD. The had already booked the 675€ upgrade price from my VISA. Uncool. Really. Was a bit upset and so we sat down and talked about options. He mentioned that I had asked to replace the iMac with a Mac Pro last week. That time he said that this is not possible, because everything was already in process. But now, and he also seemed a bit annoyed by AppleCare, he asked me if I want to get a Mac Pro and take it home directly. I answered that I need some time to think about it and so Soja and I went out of the Store, deeply disappointed and went to the &#8220;Coca-Cola Oase&#8221;, a huge round hall in the front of the CentrO. to get some food. (No &#8211; I&#8217;m still &#8220;dry&#8221; of Coke &#8211; and went with a Sprite &#8211; uargs :S).</p>
<p>After getting new jackets for the upcoming (or already arrived) pretty cold winter, we went back to the Store and the Genius said: &#8220;We will give you the Quad Core Mac Pro with a 27&#8243; Cinema Display&#8221; &#8211; just as we had discussed before. Great. It was all on stock. Carrying this beast to the car was horrible. Uh.. very heavy and of course, there are no caddies in the CentrO.</p>
<div class="aussen">
<div class="innen"><img src="http://www.klein2.de/wp-content/uploads/2010/12/macpro27.jpg" alt="" title="macpro27" class="aligncenter size-full wp-image-1303" id="img-20101204-1" /></div>
</div>
<div class="aussen">
<div class="innen"><img src="http://www.klein2.de/wp-content/uploads/2010/12/schluepf.jpg" alt="" title="schluepf" class="aligncenter size-full wp-image-1304" id="img-20101204-2" /></div>
</div>
<p>The Mac Pro has the following configuration:</p>
<p>Mac Pro &#8220;2010&#8243;<br />
Quad Core 2.8GHz Intel Xeon CPU (1)<br />
3GB RAM<br />
1TB HD<br />
SuperDrive<br />
ATI Radeon 5770</p>
<p>Nice base to start with. I was really hard thinking if I should get the 8 Core model instead, but those CPUs are just clocked to 2.4GHz, which makes it for my daily work slower than the Quad core. They don&#8217;t had the 3.2GHz Quad model on stock and I really wanted to complete this &#8220;task&#8221; that day.</p>
<p>Meanwhile I had already ordered some hardware to &#8220;max it out&#8221;.</p>
<p>240GB OCZ Agility2 E SSD (275MB/s read, 285MB/s write)<br />
16GB of RAM from a contact on Twitter</p>
<p>Friday, I started using the Mac Pro by trying to get my iMac content to the Mac Pro. I thought: Well, I&#8217;ve a TimeMachine backup on the OS X Server, can&#8217;t be that hard to move it back to the Mac Pro. It was <img src='http://www.klein2.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  In the end I used the Migration-Assitant to copy over my stuff. Bad idea, because my account was already in use &#8211; so I decided to use my MacBook for the work and wait for today when the SSD should arrive for a fresh install.</p>
<p>But there&#8217;s one thing that didn&#8217;t fit into my plan &#8211; headache. Yes &#8211; again. I don&#8217;t know why, but using the Apple Cinema Display with 27&#8243; makes my head feel bad. After 4h&#8217;s I was ready to switch the Mac Pro off and call the Store. They already had a complicated case with mine. The Store Manager asked my to wait until he would come back to me.</p>
<p>At 21:55 CET, a few minutes before the close, I received an eMail from the Genius. No problem! I can bring the display back. He also mentioned that my DDR3-1066 RAM from my old iMac is still in the Store and I can pick this up, too.</p>
<p>Speaking of RAM/memory, however you call it &#8211; I had ordered 4x4GB of RAM for the iMac so that it&#8217;s here when the iMac should arrive. Of course this will NOT fit into a Mac Pro, but I found a very useful job for those RAMs. I upgraded <a href="http://www.klein2.de/2010/11/12/a-new-imac-moved-in/">Soja&#8217;s &#8220;Indy&#8221;</a> to 12GB of RAM and my MacBook to 8GB. Putting it into the MacBook was more like &#8220;let&#8217;s see if it boots&#8221;, because I had read that this MacBook &#8220;Late 2008&#8243; does support up to 6GB of RAM (which is a strange number &#8211; there are no 3GB RAMs and it has just 2 slots &#8211; hmm). I can herewith say, that the 2x4GB DDR3-1333 MHz RAM works great in my MacBook! I&#8217;ve used a VM to see if it really uses more than 6GB &#8211; and it does.</p>
<p><img alt="" src="http://dl.dropbox.com/u/157973/macbook8gb.png" class="aligncenter" /></p>
<p>Soja is now also really happy, because 4GB is around about nothing for an iMac, today. I also had set the bootdrive to the right one. A known &#8220;bug&#8221; in the current iMacs &#8211; if you are not sure it&#8217;s selected, your iMac will take some time to find the right drive which will push your boot back about 10-20 seconds. Simply go to:</p>
<p>System Preferences -> Startup Disk and make sure your volume is highlighted (regular settings: in blue)</p>
<p><img src="http://www.klein2.de/wp-content/uploads/2010/12/startupdisk.png" alt="" title="startupdisk" class="aligncenter size-full wp-image-1315" /></p>
<p>When the display will be brought back today, you may wonder what I will use as a display for the Mac Pro. Good one! <img src='http://www.klein2.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  I will use 2 of my old Samsung 226BW screens for the next days (already set it up this morning). But for future expansion, I ordered <a href="http://h10010.www1.hp.com/wwpc/us/en/sm/WF05a/382087-382087-64283-72270-3884471-4101131.html">3x HP ZR24w</a> displays.</p>
<p>Yeah &#8211; seriously! Those are extreme cheap if you see that they are S-IPS panels with DisplayPort, DVI-D &#038; VGA. They also come with integrated USB Hubs (1x in = 4x out / 2 on the bottom, 2 on the side). DisplayPort is VERY good, because my ATI Radeon 5770 in the Mac Pro has 2x Mini DisplayPort and 1x DVI (DualLink), so I also bought 2x Mini DisplayPort to DisplayPort cables. This stuff should arrive around Tuesday/Wednesday. I will keep you updated on this <img src='http://www.klein2.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>For the price of ONE 27&#8243; Apple Cinema Display, I was able to buy all 3 of them + the cables &#8211; and still could spend 10€ on anything else <img src='http://www.klein2.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  That&#8217;s amazing.</p>
<p>Something that is still a bit annoying is the bluetooth. When using the (delivered) Magic Mouse with the Mac Pro 2010, it stucks. I now have replaced the large keyboard with the wired small one and attached an older Mighty Mouse to this. This works, but &#8211; the cable is a BIT annoying <img src='http://www.klein2.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>While I wrote this post, DHL has delivered the SSD &#8211; photos:</p>
<div class="aussen">
<div class="innen"><img src="http://www.klein2.de/wp-content/uploads/2010/12/ssd.jpg" alt="" title="ssd" class="aligncenter size-full wp-image-1306" id="img-20101204-3" /></div>
</div>
<div class="aussen">
<div class="innen"><img src="http://www.klein2.de/wp-content/uploads/2010/12/boxback.jpg" alt="" title="boxback" class="aligncenter size-full wp-image-1307" id="img-20101204-4" /></div>
</div>
<div class="aussen">
<div class="innen"><img src="http://www.klein2.de/wp-content/uploads/2010/12/ssdunboxed.jpg" alt="" title="ssdunboxed" class="aligncenter size-full wp-image-1308" id="img-20101204-5" /></div>
</div>
<p>Hmm &#8211; cool <img src='http://www.klein2.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Mac compatibility logo on it. When we return from our &#8220;taking back&#8221; CentrO. visit today, I will put it into the Mac Pro and give it a fresh install. Very excited for the speed.</p>
<p>PS. You may ask &#8220;what happens to your iMac 27&#8243; i3 you got last week?&#8221; &#8211; Answer is: it was a temp iMac &#8211; I will return it. i3 is nice for normal tasks, but VMs on it is a nightmare <img src='http://www.klein2.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.klein2.de/2010/12/04/the-new-mac/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	<enclosure url="http://www.klein2.de/wp-content/uploads/2010/12/macpro27-150x150.jpg" length="6692" type="image/jpg" />	</item>
		<item>
		<title>What&#8217;s on my Mac</title>
		<link>http://www.klein2.de/2010/10/19/whats-on-my-mac/</link>
		<comments>http://www.klein2.de/2010/10/19/whats-on-my-mac/#comments</comments>
		<pubDate>Tue, 19 Oct 2010 19:03:28 +0000</pubDate>
		<dc:creator>Dennis Klein</dc:creator>
				<category><![CDATA[Technique Stuff]]></category>
		<category><![CDATA[extensions]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.klein2.de/?p=1138</guid>
		<description><![CDATA[I&#8217;ve just reinstalled my MacBook today. Reason is that I&#8217;m back on Mac OS X Server on my Mac Mini and I dig into it slowly. Believe me it&#8217;s not as easy as Apple says, but I&#8217;ve a great video tutorial that is VERY detailed. Anyway &#8211; I reinstalled my MacBook because it was encrypted. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just reinstalled my MacBook today. Reason is that I&#8217;m back on Mac OS X Server on my Mac Mini and I dig into it slowly. Believe me it&#8217;s not as easy as Apple says, but I&#8217;ve a great video tutorial that is VERY detailed. Anyway &#8211; I reinstalled my MacBook because it was encrypted. Hm.. that makes sense on a mobile device, doesn&#8217;t it? Yeah, but backups is maybe more important. OS X Server allows me to create a Time Machine on an external HD for ALL my clients. So &#8211; here we go: Time Machine does not work w/ an encrypted volume. Too bad. <span id="more-1138"></span></p>
<p>That gives me the chance to directly blog what I&#8217;m downloading from the different developers websites. Here&#8217;s a list of the software I would go nuts without having them <img src='http://www.klein2.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><strong>Software</strong></p>
<ul style="line-height:18px;">
<li><a href="http://www.apple.com/mobileme/">MobileMe</a> $/Y</li>
<li><a href="http://growl.info/">Growl &#038; Growl Mail</a></li>
<li><a href="http://widemailplugin.com/">WideMail</a></li>
<li><a href="http://www.panic.com/transmit">Transmit</a> $</li>
<li><a href="http://www.macromates.com">TextMate</a> $</li>
<li><a href="http://www.adium.im">Adium</a></li>
<li><a href="http://www.echofon.com/">Echofon</a> /$</li>
<li><a href="http://www.blacktree.com">QuickSilver</a></li>
<li><a href="http://www.telestream.net/screen-flow/overview.htm">ScreenFlow</a> $</li>
<li><a href="http://totalfinder.binaryage.com/">TotalFinder</a> $</li>
<li><a href="http://hyperdock.bahoom.de/">HyperDock</a> D$</li>
<li><a href="http://www.grumlapp.de/">Gruml</a></li>
<li><a href="http://www.dropbox.com/">Dropbox</a> /$</li>
<li><a href="http://bjango.com/apps/istatmenus/">iStat Menu</a> $</li>
<li><a href="http://agilewebsolutions.com/products/1Password">1Password</a> $</li>
<li><a href="http://agilewebsolutions.com/knox">Knox</a> $</li>
<li><a href="http://www.madrau.com/SRXv3/html/SRX/About.html">SwitchResX</a> $</li>
<li><a href="http://www.layersapp.com/">LayersApp</a> $</li>
<li><a href="http://rucksackapp.com/">Rucksack</a> $</li>
<li><a href="http://www.apple.com/de/aperture/">Aperture</a> $</li>
<li><a href="http://www.apple.com/de/iwork/">iWork &#8217;09</a> $</li>
<li><a href="http://www.videolan.org/">VLC</a></li>
<li><a href="http://www.vmware.com/products/fusion/">VMWare Fusion</a> $</li>
<li><a href="http://pqrs.org/macosx/keyremap4macbook/index.html">KeyRemap4MacBook</a></li>
</ul>
<p>$ = Shareware<br />
/$ = Costs or limited free Version<br />
$/Y = Costs per year<br />
D$ = Donationware</p>
<p><strong><a href="https://extensions.apple.com/">Safari Extensions</a></strong></p>
<ul style="line-height:18px;">
<li>Safari AdBlock</li>
<li>Safari Restore</li>
<li>Facebook Cleaner</li>
<li>Reload Button</li>
</ul>
<p><strong>Dashboard Widgets</strong></p>
<ul style="line-height:18px;">
<li><a href="http://junecloud.com/">Delivery Status</a></li>
<li><a href="http://www.klein2.de/2010/10/18/uin-checker-developed-back-in-2005/">UIN-Checker</a></li>
</ul>
<p>I think I&#8217;ve forgot some Apps, but I will update the list as soon as I remember <img src='http://www.klein2.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.klein2.de/2010/10/19/whats-on-my-mac/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Quick Review: Winstar USB2 DVI Adapter</title>
		<link>http://www.klein2.de/2010/10/19/quick-review-winstar-usb2-dvi-adapter/</link>
		<comments>http://www.klein2.de/2010/10/19/quick-review-winstar-usb2-dvi-adapter/#comments</comments>
		<pubDate>Tue, 19 Oct 2010 10:37:32 +0000</pubDate>
		<dc:creator>Dennis Klein</dc:creator>
				<category><![CDATA[Technique Stuff]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[imac]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[screen]]></category>
		<category><![CDATA[triple]]></category>
		<category><![CDATA[usb2dvi]]></category>

		<guid isPermaLink="false">http://www.klein2.de/?p=1110</guid>
		<description><![CDATA[When I was crawling through the desktop photos over at WorkstationSetups, I saw some people using 3 displays just connected to their MacBook Pro. Huh?! And no, they don&#8217;t use the Matrox solution that centers your popup windows in the middle between 2 displays. That&#8217;s a bad one in my mind. No. This particular person [...]]]></description>
			<content:encoded><![CDATA[<p>When I was crawling through the desktop photos over at <a href="http://www.workstationsetups.com/">WorkstationSetups</a>, I saw some people using <a href="http://www.workstationsetups.com/mac/luke-whitsons-home-office/">3 displays just connected to their MacBook Pro</a>. Huh?! <span id="more-1110"></span></p>
<p>And no, they don&#8217;t use the Matrox solution that centers your popup windows in the middle between 2 displays. That&#8217;s a bad one in my mind. No. This particular person is using an USB2DVI connector to drive the 2 additional displays (while one is connected via DVI).</p>
<p>Hmm&#8230; Until last week I was using a Mac Mini that was sitting on the little rack next to my desk to drive the 3rd display and TelePort does the rest of the trick to simulate 3 displays attached to my iMac. So &#8211; of course &#8211; I couldn&#8217;t resist and ordered a USB2DVI adapter via Amazon from Winstar. I maybe should mention that I need the Mac Mini in the basement, because I started to dig into Mac OS X Server carefully (thanks to a fantastic Lynda.com videotutorial). Anyway. Here comes the Quick Review.</p>
<div class="aussen">
<div class="innen"><img src="http://www.klein2.de/wp-content/uploads/2010/10/karton.jpg" alt="" title="karton" class="aligncenter size-full wp-image-1114" id="img-20101019-01" /></div>
</div>
<p>It all arrived in this little box.</p>
<div class="aussen">
<div class="innen"><img src="http://www.klein2.de/wp-content/uploads/2010/10/karton1auf.jpg" alt="" title="karton1auf" class="aligncenter size-full wp-image-1115" id="img-20101019-02" /></div>
</div>
<p>Inside the box &#8211; another box. Ok <img src='http://www.klein2.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="aussen">
<div class="innen"><img src="http://www.klein2.de/wp-content/uploads/2010/10/karton2auf.jpg" alt="" title="karton2auf" class="aligncenter size-full wp-image-1116" id="img-20101019-03" /></div>
</div>
<div class="aussen">
<div class="innen"><img src="http://www.klein2.de/wp-content/uploads/2010/10/karton3.jpg" alt="" title="karton3" class="aligncenter size-full wp-image-1117" id="img-20101019-05" /></div>
</div>
<p>Inside this box &#8211; you guess it &#8211; another box! Felt like a Matrushka game (you know these russian figurines you can stack together).</p>
<div class="aussen">
<div class="innen"><img src="http://www.klein2.de/wp-content/uploads/2010/10/karton3auf.jpg" alt="" title="karton3auf" class="aligncenter size-full wp-image-1118" id="img-20101019-04" /></div>
</div>
<p>Finally &#8211; the adapter and a few adapters for HDMI &#038; VGA from DVI, a USB cable and a driver CD.</p>
<div class="aussen">
<div class="innen"><img src="http://www.klein2.de/wp-content/uploads/2010/10/adapter.jpg" alt="" title="adapter" class="aligncenter size-full wp-image-1111" id="img-20101019-06" /></div>
</div>
<p>The USB2DVI adapter itself is very small. Just a wide as a regular DVI-I port.</p>
<p>Luckily, there&#8217;s no power supply needed to drive the adapter. It&#8217;s bus-powered. That&#8217;s pretty good, I&#8217;ve connected already dozens of power supplies to my hardware in the house :S There should be a universal one you can use to connect MORE than just one device to.</p>
<p>The installation has a little trap: They deliver a SMALL CD (6 or 5cm, not sure) with the drivers. Uhm.. not a good idea to put this small CD into your slot-in drive <img src='http://www.klein2.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  I have an external LG USB2 DVD-Writer that helped me out. I guess there are drivers somewhere on the web, but I couldn&#8217;t find them fast enough, so I just got the external drive from the basement.</p>
<p>On the CD there are some folders and a bunch of files within the &#8220;MAC&#8221; (ah! Wrong spelled guys! A Mac != MAC) folder &#8211; I grabbed the one with the highest version number and installed it. Then &#8211; reboot. Of course, the display was already connected.</p>
<p>When booting into the system, the display was already recognized by OS X. Just had to move it around in the System Preferences.</p>
<p><img src="http://www.klein2.de/wp-content/uploads/2010/10/Bildschirmfoto-2010-10-19-um-12.16.08.png" alt="" title="Bildschirmfoto 2010-10-19 um 12.16.08" class="aligncenter size-full wp-image-1127" /><br />
The right display is connected to the Mini DisplayPort to DVI Apple adapter, while the left display is connected to the USB2DVI connector.</p>
<p><strong>Using the adapter</strong><br />
Just connected you start moving windows to this new screen and you see the only issue that adapter has: It lags a bit. Of course it does, a DVI signal needs at least 400MBit/s to work good, USB2 has a &#8220;theroetical&#8221; bandwith of 480MBit/s, it seems like it&#8217;s not enough. I was aware of this before and so I knew it will <strong>lag a bit</strong>. It&#8217;s ok to use this display for more static stuff like surfing, your Twitter client, your iTunes player, Mailclient, messenger or whatever you want that does not have to respond superfast.</p>
<p><strong>Resumé</strong><br />
This extension is great for attaching palettes onto it or &#8220;background task tools&#8221;. Don&#8217;t use it as a Photoshop editing screen or Final Cut Videoflow screen &#8211; you will be unhappy with the result. I think it&#8217;s made for those <a href="http://www.realtimesoft.com/multimon/gallery_browse.asp?ID=259&#038;date=desc&#038;nummon=true&#038;mon=desc">crazy brooker guys</a> with a <a href="http://www.realtimesoft.com/multimon/gallery_browse.asp?ID=676&#038;date=desc&#038;nummon=true&#038;mon=desc">bunch of displays</a> to watch the stock market in real-time.</p>
<p><strong>Costs</strong><br />
It&#8217;s amazing unexpensive in my mind. This adapter here just costs 54€. Of course it depends (like all IT stuff) on the brand and version you choose.</p>
<p><strong>Compatibility</strong><br />
Drivers are available (on the little CD) for Windows, Mac OS X and Linux.</p>
<p><strong>Max. screen resolution</strong><br />
This depends on the version you choose. Looking a bit into the future, I&#8217;ve selected a model that supports up to 1920&#215;1200, even if my 22&#8243; displays are just 1680&#215;1050.</p>
<p>Be careful when buying such an adapter to select the one that fits to your screen resolution <img src='http://www.klein2.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Own usage</strong><br />
I will use (and keep) it as &#8220;left&#8221; screen. Connected is one of my old 22&#8243; Samsung displays (that sadly has some cracks in the plastic panel).</p>
<p>I already moved stuff onto that makes sense in my mind on this kind of display/connection:<br />
- Echofon (Twitter client)<br />
- Adium (Messenger)<br />
- iTunes<br />
- Gruml (RSS Reader)<br />
&#8230; and then the screen was full <img src='http://www.klein2.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Oops!</p>
<p>My desk now looks like this:</p>
<div class="aussen">
<div class="innen"><img src="http://www.klein2.de/wp-content/uploads/2010/10/desktop.jpg" alt="" title="desktop" class="aligncenter size-full wp-image-1113" id="img-20101019-07" /></div>
</div>
<p><em>You can mark areas, if you have any question about stuff you see on this photo, don&#8217;t hesitate to use this function (it works like the flickr stuff!) <img src='http://www.klein2.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </em></p>
<p>I though it&#8217;s time for a new panorama shot <img src='http://www.klein2.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<div class="aussen">
<div class="innen"><a href="http://www.klein2.de/wp-content/uploads/2010/10/panorama_1280.jpg" target="_blank"><img src="http://www.klein2.de/wp-content/uploads/2010/10/panorama_870.jpg" alt="" title="panorama_870" class="aligncenter size-full wp-image-1119" /></a></div>
</div>
<p><em>Click onto the photo to see a larger version in a new window</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.klein2.de/2010/10/19/quick-review-winstar-usb2-dvi-adapter/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
	<enclosure url="http://www.klein2.de/wp-content/uploads/2010/10/adapter-150x150.jpg" length="5113" type="image/jpg" />	</item>
	</channel>
</rss>

