<?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>About My Days</title>
	<atom:link href="http://henning-brinkmann.dyndns.org/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://henning-brinkmann.dyndns.org/wordpress</link>
	<description>Everything that crosses my way</description>
	<lastBuildDate>Sun, 07 Feb 2010 22:07:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>links for 2010-02-07</title>
		<link>http://henning-brinkmann.dyndns.org/wordpress/2010/02/links-for-2010-02-07/</link>
		<comments>http://henning-brinkmann.dyndns.org/wordpress/2010/02/links-for-2010-02-07/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 19:04:30 +0000</pubDate>
		<dc:creator>delicious</dc:creator>
				<category><![CDATA[delicious]]></category>

		<guid isPermaLink="false">http://henning-brinkmann.dyndns.org/wordpress/2010/02/links-for-2010-02-07/</guid>
		<description><![CDATA[

COMSTAR Administration (Printer Friendly) &#8211; OpenSolaris Information Resources &#8211; wikis.sun.com
(tags: comstar administration opensolaris)


]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://wikis.sun.com/display/OpenSolarisInfo/COMSTAR+Administration+(Printer+Friendly)">COMSTAR Administration (Printer Friendly) &#8211; OpenSolaris Information Resources &#8211; wikis.sun.com</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/hebrinkmann/comstar">comstar</a> <a href="http://delicious.com/hebrinkmann/administration">administration</a> <a href="http://delicious.com/hebrinkmann/opensolaris">opensolaris</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://henning-brinkmann.dyndns.org/wordpress/2010/02/links-for-2010-02-07/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NAS and Web-Server: Time Machine Backup</title>
		<link>http://henning-brinkmann.dyndns.org/wordpress/2010/02/nas-and-web-server-timemachine-backup/</link>
		<comments>http://henning-brinkmann.dyndns.org/wordpress/2010/02/nas-and-web-server-timemachine-backup/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 17:49:36 +0000</pubDate>
		<dc:creator>hbr</dc:creator>
				<category><![CDATA[NAS]]></category>
		<category><![CDATA[iscsi]]></category>
		<category><![CDATA[OpenSolaris]]></category>
		<category><![CDATA[SS4200]]></category>
		<category><![CDATA[timemachine]]></category>
		<category><![CDATA[zfs]]></category>

		<guid isPermaLink="false">http://henning-brinkmann.dyndns.org/wordpress/?p=895</guid>
		<description><![CDATA[Research
Before I set up the SS4200 as a backup server for my Apple machines I did some research. The first blog I found was &#8220;OpenSolaris ZFS iSCSI Time Machine in 20 Minutes&#8221; by Michael Sullivan. The MacOS part worked fine for me. However, Michael uses the package SUNWiscsitgt which seems to be outdated. The current way [...]]]></description>
			<content:encoded><![CDATA[<h4>Research</h4>
<p>Before I set up the SS4200 as a backup server for my Apple machines I did some research. The first blog I found was <a href="http://www.kamiogi.net/Kamiogi/Frame_Dragging/Entries/2009/5/25_OpenSolaris_ZFS_iSCSI_Time_Machine_in_20_Minutes_or_Less.html">&#8220;OpenSolaris ZFS iSCSI Time Machine in 20 Minutes&#8221;</a> by Michael Sullivan. The MacOS part worked fine for me. However, Michael uses the package SUNWiscsitgt which seems to be outdated. The current way to export iSCSI devices seems to be <a title="COMSTAR Administration" href="http://wikis.sun.com/display/OpenSolarisInfo/COMSTAR+Administration">COMSTAR</a>. So, what I configured on my SS4200 is COMSTAR and I use the <a title="globalSAN" href="http://www.studionetworksolutions.com/support/faq.php?pi=11&amp;fi=51">globalSAN</a> iSCSI initiator on Snow Leopard.<br />
<span id="more-895"></span></p>
<h4>Installing Packages on the Server</h4>
<p>I needed to install two packages on the server. First the target mode framework (stmf):</p>
<div class="code">
<pre>master@tank:~# pkg install SUNWstmf
DOWNLOAD                                    PKGS       FILES     XFER (MB)
Completed                                    1/1       36/36     1.03/1.03 

PHASE                                        ACTIONS
Install Phase</pre>
</div>
<p>Second the iSCSI target provider</p>
<div class="code">
<pre>master@tank:~# pkg install SUNWiscsit
DOWNLOAD                                    PKGS       FILES     XFER (MB)
Completed                                    2/2       23/23     0.66/0.66 

PHASE                                        ACTIONS
Install Phase</pre>
</div>
<p>To activate the service stmf I needed to reboot.</p>
<h4>Installing globalSAN on Snow Leopard</h4>
<p>This step is straight forward. Download globalSAN from <a title="globalSAN" href="http://www.studionetworksolutions.com/support/faq.php?pi=11&amp;fi=51">here</a>. Install the mpkg from the downloaded DMG.</p>
<h4>Starting the iSCSI target provider</h4>
<p>The target provider service is named <em>svc:/network/iscsi/target:default</em>. Check if the service is enable and if not enable it.</p>
<div class="code">
<pre>master@tank:~# svcs -a | grep iscsi
disabled       20:21:19 svc:/network/iscsi/target:default
master@tank:~# svcadm enable -r svc:/network/iscsi/target:default
svcadm: svc:/milestone/network depends on svc:/network/physical, which has
multiple instances.</pre>
</div>
<h4>Per Time Machine Client Setup</h4>
<p>You can have multiple devices (aka. logical unit or lu) per iSCSI target. For a Time Machine client you only want one logical unit per target. This way you will only connect the backup volume for the machine in question and no other volume. My experience is that more than one Mac accessing a backup volume at the same time is likely to cause inconsistencies. I had to reinitiate some backup volumes due to multiple logical units on one target.</p>
<p>To start the configuration of targets, stop the stmf service first.</p>
<div class="code">
<pre>master@tank:~# svcadm disable stmf</pre>
</div>
<p>For each Mac you want to backup follow these steps:</p>
<ol>
<li>Create a target group.  The target group is used to associate the logical unit with the target.
<div class="code">
<pre>master@tank:~# stmfadm create-tg electra</pre>
</div>
</li>
<li>Create a target.
<div class="code">
<pre>master@tank:~# itadm create-target
Target iqn.1986-03.com.sun:02:f39f064c-9528-c9ff-bd34-f0e0e2c3ccb1
successfully created</pre>
</div>
<p>Remember the target name. You will need it to select the right target when connecting the initiator from the client.</li>
<li>Add the target to the target group.
<div class="code">
<pre>master@tank:~# stmfadm add-tg-member -g electra \
iqn.1986-03.com.sun:02:f39f064c-9528-c9ff-bd34-f0e0e2c3ccb1</pre>
</div>
</li>
<li>Create a ZFS volume.
<div class="code">
<pre>master@tank:~# zfs create -s -V 1G tank/electra</pre>
</div>
</li>
<li>Create logical unit for the volume.
<div class="code">
<pre>master@tank:~# sbdadm create-lu /dev/zvol/dsk/tank/electra 

Created the following LU:

              GUID                    DATA SIZE           SOURCE
--------------------------------  -------------------  ----------------
600144f00220050000004b6dc30e0001      1073676288       /dev/zvol/dsk/tank/electra</pre>
</div>
<p>Be sure to use the device in <em>/dev/zvol/dsk</em> not <em>/dev/zvol/rdsk</em>. Remember the GUID. You will need it to connect logical unit and target.</li>
<li>Add a view for the logical unit to the target group.
<div class="code">
<pre>master@tank:~# stmfadm add-view -t electra 600144f00220050000004b6dc30e0001</pre>
</div>
<p>Here you need the GUID again. <img src='http://henning-brinkmann.dyndns.org/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </li>
</ol>
<p>After you set up the iSCSI targets for all Time Machine clients you can activate the stmf service again.</p>
<div class="code">
<pre>master@tank:~# svcadm enable stmf</pre>
</div>
<p>That&#8217;s it on the server side.</p>
<h4>Setting up a iSCSI initiator (client) on Snow Leopard</h4>
<p style="text-align: left;">Open the globanSAN preference pane and click on the &#8220;+&#8221;. Select &#8220;Portal&#8221;.  <a href="http://henning-brinkmann.dyndns.org/wordpress/wp-content/uploads/2010/02/System-Preferences1.png" rel="lightbox[895]"><img class="size-thumbnail wp-image-924 aligncenter" title="globalSAN 1" src="http://henning-brinkmann.dyndns.org/wordpress/wp-content/uploads/2010/02/System-Preferences1-150x149.png" alt="globalSAN 1" width="150" height="149" /></a></p>
<p style="text-align: left;">Enter the IP address of the iSCSI server.</p>
<p style="text-align: left;"><a href="http://henning-brinkmann.dyndns.org/wordpress/wp-content/uploads/2010/02/System-Preferences2.png" rel="lightbox[895]"><img class="aligncenter size-medium wp-image-928" title="System Preferences" src="http://henning-brinkmann.dyndns.org/wordpress/wp-content/uploads/2010/02/System-Preferences2-300x110.png" alt="" width="300" height="110" /></a>The discovered targets will appear in the target list. Identify the target you remembered in step 2 above and select it. There will only be one connection. Select it and click &#8220;Connect&#8221;.</p>
<p style="text-align: left;"><a href="http://henning-brinkmann.dyndns.org/wordpress/wp-content/uploads/2010/02/System-Preferences-3.png" rel="lightbox[895]"><img class="aligncenter size-medium wp-image-929" title="globalSAN 3" src="http://henning-brinkmann.dyndns.org/wordpress/wp-content/uploads/2010/02/System-Preferences-3-300x230.png" alt="" width="300" height="230" /></a>Snow Leopard will discover an uninitialized device. Use diskutil to initialize the device and select it as backup drive in the Time Machine preference pane.</p>
<p style="text-align: left;">That&#8217;s it on the client side. Time Machine should now backup happily over iSCSI.</p>
]]></content:encoded>
			<wfw:commentRss>http://henning-brinkmann.dyndns.org/wordpress/2010/02/nas-and-web-server-timemachine-backup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NAS and Web-Server: Setting Up the Storage</title>
		<link>http://henning-brinkmann.dyndns.org/wordpress/2010/02/nas-and-web-server-setting-up-the-storage/</link>
		<comments>http://henning-brinkmann.dyndns.org/wordpress/2010/02/nas-and-web-server-setting-up-the-storage/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 20:30:46 +0000</pubDate>
		<dc:creator>hbr</dc:creator>
				<category><![CDATA[NAS]]></category>
		<category><![CDATA[OpenSolaris]]></category>
		<category><![CDATA[raidz]]></category>
		<category><![CDATA[SS4200]]></category>
		<category><![CDATA[zfs]]></category>

		<guid isPermaLink="false">http://henning-brinkmann.dyndns.org/wordpress/?p=881</guid>
		<description><![CDATA[Considerations
After OpenSolaris was installed on my SS4200 the next step was to setup the ZFS pool. First you have to decide what kind of data redundancy you need. I started with two disks, but want to be able to increase the capacity by adding a disk at a time. Consequently I decided to go for [...]]]></description>
			<content:encoded><![CDATA[<h4>Considerations</h4>
<p>After OpenSolaris was installed on my SS4200 the next step was to setup the ZFS pool. First you have to decide what kind of data redundancy you need. I started with two disks, but want to be able to increase the capacity by adding a disk at a time. Consequently I decided to go for a raidz which uses one parity disk. A mirror might give more performance in a two disk setup, but the ability to add disk by disk to ramp up the capacity lead to the decision for raidz.</p>
<div class="update">Actually, I am blind. The manpage for zpool states that you cannot do a</p>
<div class="code">
<pre>zpool attach pool raidz-vdev device</pre>
</div>
<p>However there are rumors that there might be plans to add such support. (See <a href="http://blogs.sun.com/ahl/entry/expand_o_matic_raid_z">&#8220;Expand-O-Matic RAID-Z&#8221; </a>)
</div>
<p><span id="more-881"></span></p>
<h4>Creating the zpool</h4>
<p>First you need to find out which devices to use for the pool:</p>
<div class="code">
<pre>master@tank:~# format
Searching for disks...done

AVAILABLE DISK SELECTIONS:
       0. c7d0
          /pci@0,0/pci-ide@1,1/ide@0/cmdk@0,0
       1. c7d1
          /pci@0,0/pci-ide@1,1/ide@0/cmdk@1,0
       2. c8d1
          /pci@0,0/pci-ide@1,1/ide@1/cmdk@1,0
Specify disk (enter its number): ^C</pre>
</div>
<p>c7d0 is the device the root file system and c7d1 and c8d1 are the empty disks prepared for the pool. Now lets create the pool:</p>
<div class="code">
<pre>master@tank:~# zpool create tank raidz c7d1 c8d1
master@tank:~# zpool status tank
  pool: tank
 state: ONLINE
 scrub: none requested
config:

        NAME        STATE     READ WRITE CKSUM
        tank        ONLINE       0     0     0
          raidz1    ONLINE       0     0     0
            c7d1    ONLINE       0     0     0
            c8d1    ONLINE       0     0     0

errors: No known data errors</pre>
</div>
<p>The pool is now up and running as the status output shows.</p>
<h4>Creating the file systems and sharing</h4>
<p>For creating a file system you simply type:</p>
<div class="code">master@tank:~# zfs create tank/media</div>
<p>Sharing the new file system is as easy as:</p>
<div class="code">master@tank:~# zfs set sharenfs=on tank/media</div>
]]></content:encoded>
			<wfw:commentRss>http://henning-brinkmann.dyndns.org/wordpress/2010/02/nas-and-web-server-setting-up-the-storage/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Daily Shoot</title>
		<link>http://henning-brinkmann.dyndns.org/wordpress/2010/02/the-daily-shoot/</link>
		<comments>http://henning-brinkmann.dyndns.org/wordpress/2010/02/the-daily-shoot/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 10:03:38 +0000</pubDate>
		<dc:creator>hbr</dc:creator>
				<category><![CDATA[Gallery]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://henning-brinkmann.dyndns.org/wordpress/?p=878</guid>
		<description><![CDATA[This is a neat idea for photo enthusiasts. Every day you are provided an assignment you may or may not take.
If you want to see my contributions, you can find them here.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://dailyshoot.com">This</a> is a neat idea for photo enthusiasts. Every day you are provided an assignment you may or may not take.<br />
If you want to see my contributions, you can find them <a href="http://dailyshoot.com/photogs/hebrinkmann">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://henning-brinkmann.dyndns.org/wordpress/2010/02/the-daily-shoot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2010-02-03</title>
		<link>http://henning-brinkmann.dyndns.org/wordpress/2010/02/links-for-2010-02-03/</link>
		<comments>http://henning-brinkmann.dyndns.org/wordpress/2010/02/links-for-2010-02-03/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 19:03:14 +0000</pubDate>
		<dc:creator>delicious</dc:creator>
				<category><![CDATA[delicious]]></category>

		<guid isPermaLink="false">http://henning-brinkmann.dyndns.org/wordpress/2010/02/links-for-2010-02-03/</guid>
		<description><![CDATA[

Armangil&#39;s podcatcher
(tags: software opensource tools podcast aggregator)


]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://podcatcher.rubyforge.org/">Armangil&#39;s podcatcher</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/hebrinkmann/software">software</a> <a href="http://delicious.com/hebrinkmann/opensource">opensource</a> <a href="http://delicious.com/hebrinkmann/tools">tools</a> <a href="http://delicious.com/hebrinkmann/podcast">podcast</a> <a href="http://delicious.com/hebrinkmann/aggregator">aggregator</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://henning-brinkmann.dyndns.org/wordpress/2010/02/links-for-2010-02-03/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NAS and Web-Server: Installing OpenSolaris</title>
		<link>http://henning-brinkmann.dyndns.org/wordpress/2010/02/nas-and-web-server-installing-opensolaris/</link>
		<comments>http://henning-brinkmann.dyndns.org/wordpress/2010/02/nas-and-web-server-installing-opensolaris/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 20:02:41 +0000</pubDate>
		<dc:creator>hbr</dc:creator>
				<category><![CDATA[NAS]]></category>
		<category><![CDATA[OpenSolaris]]></category>
		<category><![CDATA[SS4200]]></category>

		<guid isPermaLink="false">http://henning-brinkmann.dyndns.org/wordpress/?p=850</guid>
		<description><![CDATA[Prepare for installing
First of all you need an installation CD for OpenSolaris. I downloaded the current LiveCD from OpenSolaris.org. The SS4200 has no graphic connector and OpenSolaris does not use the console routed through the IDC10 connector. I.e. you cannot see the output once the LiveCD has started. To know what keys I had to [...]]]></description>
			<content:encoded><![CDATA[<h4>Prepare for installing</h4>
<p>First of all you need an installation CD for OpenSolaris. I downloaded the current LiveCD from <a title="Download OpenSolaris" href="http://hub.opensolaris.org/bin/view/Main/downloads">OpenSolaris.org</a>. The SS4200 has no graphic connector and OpenSolaris does not use the console routed through the IDC10 connector. I.e. you cannot see the output once the LiveCD has started. To know what keys I had to press to choose the write start configuration from the grub menu I started the LiveCD in a <a title="VirtualBox" href="http://www.virtualbox.org/">VirtualBox</a> instance. In short: Push 4x cursor down and hit enter. This way the LiveCD starts with SSH active.</p>
<p>To start the SS4200 with the LiveCD I burned it to a real CD and put it into an USB-CD-ROM-drive. I connected the drive to the box. I made sure the USB-stick I wanted to install OpenSolaris onto was not connected. Next I connected the terminal application on my MacBook with the RS232 connector of the SS4200. See my previous <a title="NAS and Web-Server: Putting Together the Hardware" href="http://hen/wordpress/2010/01/nas-and-web-server-putting-together-the-hardware/">blog</a> for more information. Additionally I connected an USB-keyboard.</p>
<h4>Boot and Install</h4>
<p>Pressing the power button starts up the device. To boot from the LiveCD I held down F3 on the keyboard. This led to a menu appearing on my terminal with a choice of boot disks. I choose the USB-CDROM-drive. The LiveCD booted and the copyright notice followed on the terminal &#8211; no more messages on this way. After about a minute I entered the 4x cursor down and hit enter. Some two minutes later I was able to ping the box and log in via SSH:</p>
<div class="code">
MacBook:~ $ ssh -Y jack@nas<br />
Password: jack
</div>
<p>Next, I connected the USB-stick and started the installation:</p>
<div class="code">jack@nas:~$ gui-install</div>
<p>The installation process went on straight forward. I just followed the instructions. After reboot and holding down F3 again, I chose the USB-stick as boot device. After another minute the system was up and reachable via SSH.</p>
]]></content:encoded>
			<wfw:commentRss>http://henning-brinkmann.dyndns.org/wordpress/2010/02/nas-and-web-server-installing-opensolaris/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2010-02-01</title>
		<link>http://henning-brinkmann.dyndns.org/wordpress/2010/02/links-for-2010-02-01/</link>
		<comments>http://henning-brinkmann.dyndns.org/wordpress/2010/02/links-for-2010-02-01/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 19:03:04 +0000</pubDate>
		<dc:creator>delicious</dc:creator>
				<category><![CDATA[delicious]]></category>

		<guid isPermaLink="false">http://henning-brinkmann.dyndns.org/wordpress/2010/02/links-for-2010-02-01/</guid>
		<description><![CDATA[

The Daily Shoot
(tags: daily photography assignment)


]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://dailyshoot.com/">The Daily Shoot</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/hebrinkmann/daily">daily</a> <a href="http://delicious.com/hebrinkmann/photography">photography</a> <a href="http://delicious.com/hebrinkmann/assignment">assignment</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://henning-brinkmann.dyndns.org/wordpress/2010/02/links-for-2010-02-01/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NAS and Web-Server: Putting Together the Hardware</title>
		<link>http://henning-brinkmann.dyndns.org/wordpress/2010/01/nas-and-web-server-putting-together-the-hardware/</link>
		<comments>http://henning-brinkmann.dyndns.org/wordpress/2010/01/nas-and-web-server-putting-together-the-hardware/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 17:10:45 +0000</pubDate>
		<dc:creator>hbr</dc:creator>
				<category><![CDATA[NAS]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[SS4200]]></category>

		<guid isPermaLink="false">http://henning-brinkmann.dyndns.org/wordpress/?p=823</guid>
		<description><![CDATA[In the Package

The SS4200 gets delivered with no power cable. Luckily I had a stock of such cables from the computers a owned so far. What I found remarkable is the way the hard-disks are mounted in the case. There are four bays that each take one disk. The bays have brackets that &#8211; when [...]]]></description>
			<content:encoded><![CDATA[<h4>In the Package</h4>
<p><img class="size-medium wp-image-828 alignleft" title="DSC_0858" src="http://henning-brinkmann.dyndns.org/wordpress/wp-content/uploads/2010/01/DSC_0858-300x226.jpg" alt="" width="300" height="226" /></p>
<p>The SS4200 gets delivered with no power cable. Luckily I had a stock of such cables from the computers a owned so far. What I found remarkable is the way the hard-disks are mounted in the case. There are four bays that each take one disk. The bays have brackets that &#8211; when closed &#8211; form a rail with the bottom of the bay. Also in the packet are some bolts with rubber tops &#8211; shown to the left &#8211; that fit in the rails and thus secure the drives in the bays. The rubber top the noise-reducing decoupling of the drives from the case.<span id="more-823"></span></p>
<h4>Adding the Disks</h4>
<p>To get the disks mounted you follow some simple steps:</p>
<ul>
<li>Put four bolts in each disk</li>
<li>Open the securing bolt of the disk bay</li>
<li>Open the bay</li>
<li>Connect power supply and SATA plug</li>
<li>Place disk inside the bay</li>
<li>Close drive bay</li>
<li>Tighten securing bolt</li>
</ul>
<h4>Getting Access</h4>
<p><img class="alignleft size-medium wp-image-830" title="DSC_0859" src="http://henning-brinkmann.dyndns.org/wordpress/wp-content/uploads/2010/01/DSC_0859-300x141.jpg" alt="USB to serial adapter" width="300" height="141" /></p>
<p>The SS4200 has no graphic connector. The only way to get access to the BIOS is thru a serial console. On the main-board is an IDC10 connector which provides the RS232 interface. I used a ready-made IDC10 to DB9 adapter from the local electronics store. I also needed a USB to serial adapter and a null modem to connect the DB9 plug to my Macbook. The USB to serial adapter turned out to be a PI2303 by Prolific.</p>
<p>I followed the instructions <a href="http://schmeits.wordpress.com/2009/09/15/usb-to-serial-for-mac-os-x-snow-leopard">here</a> and installed the driver from <a href="http://osx-pl2303.sourceforge.net/">here</a>. To connect to the SS4200 you then just type:</p>
<div class="code">screen /dev/tty.PI2303 115200</div>
]]></content:encoded>
			<wfw:commentRss>http://henning-brinkmann.dyndns.org/wordpress/2010/01/nas-and-web-server-putting-together-the-hardware/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2010-01-28</title>
		<link>http://henning-brinkmann.dyndns.org/wordpress/2010/01/links-for-2010-01-28/</link>
		<comments>http://henning-brinkmann.dyndns.org/wordpress/2010/01/links-for-2010-01-28/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 19:03:09 +0000</pubDate>
		<dc:creator>delicious</dc:creator>
				<category><![CDATA[delicious]]></category>

		<guid isPermaLink="false">http://henning-brinkmann.dyndns.org/wordpress/2010/01/links-for-2010-01-28/</guid>
		<description><![CDATA[

E   O   N: EON + ZFS Storage + iTunes/Firefly server equals?
(tags: opensolaris daap itunes administration)


]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://eonstorage.blogspot.com/2009/09/eon-zfs-storage-itunesfirefly-server.html">E   O   N: EON + ZFS Storage + iTunes/Firefly server equals?</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/hebrinkmann/opensolaris">opensolaris</a> <a href="http://delicious.com/hebrinkmann/daap">daap</a> <a href="http://delicious.com/hebrinkmann/itunes">itunes</a> <a href="http://delicious.com/hebrinkmann/administration">administration</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://henning-brinkmann.dyndns.org/wordpress/2010/01/links-for-2010-01-28/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>links for 2010-01-27</title>
		<link>http://henning-brinkmann.dyndns.org/wordpress/2010/01/links-for-2010-01-27/</link>
		<comments>http://henning-brinkmann.dyndns.org/wordpress/2010/01/links-for-2010-01-27/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 19:03:49 +0000</pubDate>
		<dc:creator>delicious</dc:creator>
				<category><![CDATA[delicious]]></category>

		<guid isPermaLink="false">http://henning-brinkmann.dyndns.org/wordpress/2010/01/links-for-2010-01-27/</guid>
		<description><![CDATA[

How to Manage the Automatic ZFS Snapshot Service &#8211; OpenSolaris Information Resources &#8211; wikis.sun.com
(tags: reference zfs opensolaris snapshot)


]]></description>
			<content:encoded><![CDATA[<ul class="delicious">
<li>
<div class="delicious-link"><a href="http://wikis.sun.com/display/OpenSolarisInfo/How+to+Manage+the+Automatic+ZFS+Snapshot+Service">How to Manage the Automatic ZFS Snapshot Service &#8211; OpenSolaris Information Resources &#8211; wikis.sun.com</a></div>
<div class="delicious-tags">(tags: <a href="http://delicious.com/hebrinkmann/reference">reference</a> <a href="http://delicious.com/hebrinkmann/zfs">zfs</a> <a href="http://delicious.com/hebrinkmann/opensolaris">opensolaris</a> <a href="http://delicious.com/hebrinkmann/snapshot">snapshot</a>)</div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://henning-brinkmann.dyndns.org/wordpress/2010/01/links-for-2010-01-27/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
