<?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>Website of Nicolas Fischer</title>
	<atom:link href="http://www.nfec.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nfec.de</link>
	<description>This is the personal blog/ website of Nicolas Fischer. It&#039;s just about technology, photography and myself.</description>
	<lastBuildDate>Tue, 26 Feb 2013 23:11:25 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>openSUSE tumbleweed with kernel 3.7 or higher using nVidia GeForce driver</title>
		<link>http://www.nfec.de/2013/02/opensuse-tumbleweed-with-kernel-3-7-or-higher-using-nvidia-geforce-driver/</link>
		<comments>http://www.nfec.de/2013/02/opensuse-tumbleweed-with-kernel-3-7-or-higher-using-nvidia-geforce-driver/#comments</comments>
		<pubDate>Sun, 24 Feb 2013 14:36:34 +0000</pubDate>
		<dc:creator>NFec</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[openSUSE tumbleweed nvidia GeForce version.h kernel3.7 Linux]]></category>

		<guid isPermaLink="false">http://www.nfec.de/?p=558</guid>
		<description><![CDATA[Since year I do use on my Linux workstations graphic cards with nVidia chipsets. In my latest and already some years old machine I do use a nVidia Geforce 9600GT. Today it is absolutely not the fastest card anymore, but &#8230; <a href="http://www.nfec.de/2013/02/opensuse-tumbleweed-with-kernel-3-7-or-higher-using-nvidia-geforce-driver/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Since year I do use on my Linux workstations graphic cards with nVidia chipsets. In my latest and already some years old machine I do use a nVidia Geforce 9600GT. Today it is absolutely not the fastest card anymore, but still for my needs perfect because it offers all necessary ports (2xDVI,2xVGA) and enough 3d performance.</p>
<p>As linux distrubution I do use openSUSE together with the closed source GeForce driver of nVidia to be able to use all features and the full performance of the card. In the beginning of 2012 I switch from the normal release version of openSUSE to the rolling release version called tumbleweed. If you red the wiki-page of tumbleweed at the openSUSE wiki (<a title="http://en.opensuse.org/Portal:Tumbleweed" href="http://en.opensuse.org/Portal:Tumbleweed" target="_blank">http://en.opensuse.org/Portal:Tumbleweed</a>) you will recognize that it is not recommended to use the close source GeForce driver. As I found out it is not a big deal to use it with tumbleweed. The only issue is that you have to reinstall it everytime a new kernel version was installed. I handle it in that way that I keep a copy of the nVidia installer in my home directory and after a new kernel was installed I just boot the system into run level 3 and run the installed. That&#8217;s it =&gt; Afterwards everything runs as expected.</p>
<p>As you may recognized running the nVidia installer on openSUSE with a kernel equal or higher than 3.7 is not possible anymore, because it quits with an error text like:</p>
<p>&#8220;<em>ERROR: If you are using a Linux 2.4 kernel, please make sure you either have configured kernel sources matching your kernel or the correct set of kernel headers installed on your system.<br />
If you are using a Linux 2.6 kernel, please make sure you have configured kernel sources matching&#8230;.</em>&#8221; =&gt; Have a look on the screenshot to the right for the full error text.</p>
<div id="attachment_561" class="wp-caption alignright" style="width: 160px"><a href="http://www.nfec.de/wp-content/uploads/2013/02/2013-02-24-443.jpg" rel="lightbox[558]"><img class="size-thumbnail wp-image-561" alt="Error message shown by the nVidia GeForce driver when it is executed under openSUSE tumbleweed with an linux kernel equal or higher than 3.7" src="http://www.nfec.de/wp-content/uploads/2013/02/2013-02-24-443-150x150.jpg" width="150" height="150" /></a><p class="wp-caption-text">Error message shown by the nVidia GeForce driver when it is executed under openSUSE tumbleweed with an linux kernel equal or higher than 3.7</p></div>
<p>The log file of the nVidia installer is really a shame &#8211; The error text says: &#8220;Look into the log file for more information&#8221;. And what does it contain? =&gt; The same error message! Well&#8230; that are incredible detailed information <img src='http://www.nfec.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>After a little bit of searching the web I found some links and websites talking about that the nVidia installer is expecting the some files of the kernel source structured a little bit different than some linux distributions delivering them. In addition if you searched the web already I sure that you found some kernel patches as well. After some &#8220;try and error&#8221; the solution is quite simple but also a little bit openSUSE specific.</p>
<p>The reason why the installer quits is that it might use a hard coded path to look for the file &#8220;version.h&#8221;. For the installer the &#8220;version.h&#8221; needs to be here, otherwise it troughs the ugly error message from above:</p>
<pre dir="ltr">/usr/src/linux/include/linux/version.h</pre>
<p>So the solution is pretty easy and clear. You just need to create a symbolic link from the real location of &#8220;version.h&#8221; to the one where the nVidia installer expects the file. For the most linux distributions, except openSUSE, the following command should work:</p>
<pre dir="ltr"> ln -s /usr/src/linux/include/generated/uapi/linux/version.h /usr/src/linux/include/linux/version.h</pre>
<p>The kernel-source which comes with openSUSE tumbleweed (maybe SUSE13.x too?) stores the &#8220;version.h&#8221; in the little bit different path. The correct command for the symbolic link is:</p>
<pre dir="ltr"> ln -s /usr/src/linux-obj/x86_64/desktop/include/generated/uapi/linux/version.h /usr/src/linux/include/linux/version.h</pre>
<p>I do run the 64-bit version of openSUSE. So in case you are using a 32-bit version you may need to adapt the path named above. As you can see there is the string &#8220;x86_64&#8243; in the middle of the command. I assume that you need to adapt the path there in case of the 32-bit version of openSUSE. (Feel free to leave a comment if you had this issue and you found the correct path).</p>
<p>Last but not least: After creating the symbolic link you should be able to execute the nVidia installer successful. But keep in mind: You need to create this symbolic link each time tumbleweed updates your kernel to a newer version!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nfec.de/2013/02/opensuse-tumbleweed-with-kernel-3-7-or-higher-using-nvidia-geforce-driver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fireworks on New Year&#8217;s Eve 2012</title>
		<link>http://www.nfec.de/2013/02/fireworks-newyearseve2012/</link>
		<comments>http://www.nfec.de/2013/02/fireworks-newyearseve2012/#comments</comments>
		<pubDate>Sun, 17 Feb 2013 20:02:29 +0000</pubDate>
		<dc:creator>NFec</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[Fireworks photography rockets colors]]></category>

		<guid isPermaLink="false">http://www.nfec.de/?p=528</guid>
		<description><![CDATA[As usual we had some fireworks on New Year&#8217;s eve. I used the opportunity to made some shots of some of the exploding crackers and rockets which where fired into the sky. I did not optimized the pictures individually, so &#8230; <a href="http://www.nfec.de/2013/02/fireworks-newyearseve2012/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>As usual we had some fireworks on New Year&#8217;s eve. I used the opportunity to made some shots of some of the exploding crackers and rockets which where fired into the sky.</p>
<p>I did not optimized the pictures individually, so no cropping or color adaptations were made by myself. I just grabbed the pictures from the camera and sent the raw files once trough Corel AfterShot Pro using my default preset with noise ninja and perfect clear filter.</p>
<p>If you enjoy the color full pictures feel free to leave a comment.
<a href='http://www.nfec.de/2013/02/fireworks-newyearseve2012/olympus-digital-camera-60/' title='Fireworks battery blowing up'><img width="150" height="150" src="http://www.nfec.de/wp-content/uploads/2013/02/PC311181-150x150.jpg" class="attachment-thumbnail" alt="Fireworks battery blowing up" /></a>
<a href='http://www.nfec.de/2013/02/fireworks-newyearseve2012/olympus-digital-camera-61/' title='Fireworks battery blowing up'><img width="150" height="150" src="http://www.nfec.de/wp-content/uploads/2013/02/PC311187-150x150.jpg" class="attachment-thumbnail" alt="Fireworks battery blowing up" /></a>
<a href='http://www.nfec.de/2013/02/fireworks-newyearseve2012/olympus-digital-camera-62/' title='Fireworks battery blowing up'><img width="150" height="150" src="http://www.nfec.de/wp-content/uploads/2013/02/PC311188-150x150.jpg" class="attachment-thumbnail" alt="Fireworks battery blowing up" /></a>
<a href='http://www.nfec.de/2013/02/fireworks-newyearseve2012/olympus-digital-camera-63/' title='Fireworks rocket exploding in the night sky'><img width="150" height="150" src="http://www.nfec.de/wp-content/uploads/2013/02/PC311204-150x150.jpg" class="attachment-thumbnail" alt="Fireworks rocket exploding in the night sky" /></a>
<a href='http://www.nfec.de/2013/02/fireworks-newyearseve2012/olympus-digital-camera-64/' title='Fireworks rocket exploding in the night sky'><img width="150" height="150" src="http://www.nfec.de/wp-content/uploads/2013/02/PC311215-150x150.jpg" class="attachment-thumbnail" alt="Fireworks rocket exploding in the night sky" /></a>
<a href='http://www.nfec.de/2013/02/fireworks-newyearseve2012/olympus-digital-camera-65/' title='Fireworks rocket exploding in the night sky'><img width="150" height="150" src="http://www.nfec.de/wp-content/uploads/2013/02/PC311217-150x150.jpg" class="attachment-thumbnail" alt="Fireworks rocket exploding in the night sky" /></a>
<a href='http://www.nfec.de/2013/02/fireworks-newyearseve2012/olympus-digital-camera-66/' title='Fireworks fountain'><img width="150" height="150" src="http://www.nfec.de/wp-content/uploads/2013/02/PC311258-150x150.jpg" class="attachment-thumbnail" alt="Fireworks fountain" /></a>
<a href='http://www.nfec.de/2013/02/fireworks-newyearseve2012/olympus-digital-camera-67/' title='Fireworks fountain'><img width="150" height="150" src="http://www.nfec.de/wp-content/uploads/2013/02/PC311259-150x150.jpg" class="attachment-thumbnail" alt="Fireworks fountain" /></a>
<a href='http://www.nfec.de/2013/02/fireworks-newyearseve2012/olympus-digital-camera-68/' title='Fireworks fountain'><img width="150" height="150" src="http://www.nfec.de/wp-content/uploads/2013/02/PC311260-150x150.jpg" class="attachment-thumbnail" alt="Fireworks fountain" /></a>
<a href='http://www.nfec.de/2013/02/fireworks-newyearseve2012/olympus-digital-camera-69/' title='Fireworks fountain'><img width="150" height="150" src="http://www.nfec.de/wp-content/uploads/2013/02/PC311261-150x150.jpg" class="attachment-thumbnail" alt="Fireworks fountain" /></a>
<a href='http://www.nfec.de/2013/02/fireworks-newyearseve2012/olympus-digital-camera-70/' title='Fireworks fountain'><img width="150" height="150" src="http://www.nfec.de/wp-content/uploads/2013/02/PC311262-150x150.jpg" class="attachment-thumbnail" alt="Fireworks fountain" /></a>
<a href='http://www.nfec.de/2013/02/fireworks-newyearseve2012/olympus-digital-camera-71/' title='Fireworks fountain'><img width="150" height="150" src="http://www.nfec.de/wp-content/uploads/2013/02/PC311265-150x150.jpg" class="attachment-thumbnail" alt="Fireworks fountain" /></a>
<a href='http://www.nfec.de/2013/02/fireworks-newyearseve2012/olympus-digital-camera-72/' title='Fireworks fountain'><img width="150" height="150" src="http://www.nfec.de/wp-content/uploads/2013/02/PC311267-150x150.jpg" class="attachment-thumbnail" alt="Fireworks fountain" /></a>
<a href='http://www.nfec.de/2013/02/fireworks-newyearseve2012/olympus-digital-camera-73/' title='Fireworks fountain'><img width="150" height="150" src="http://www.nfec.de/wp-content/uploads/2013/02/PC311268-150x150.jpg" class="attachment-thumbnail" alt="Fireworks fountain" /></a>
<a href='http://www.nfec.de/2013/02/fireworks-newyearseve2012/olympus-digital-camera-74/' title='Fireworks fountain'><img width="150" height="150" src="http://www.nfec.de/wp-content/uploads/2013/02/PC311269-150x150.jpg" class="attachment-thumbnail" alt="Fireworks fountain" /></a>
<a href='http://www.nfec.de/2013/02/fireworks-newyearseve2012/olympus-digital-camera-75/' title='Fireworks fountain'><img width="150" height="150" src="http://www.nfec.de/wp-content/uploads/2013/02/PC311270-150x150.jpg" class="attachment-thumbnail" alt="Fireworks fountain" /></a>
<a href='http://www.nfec.de/2013/02/fireworks-newyearseve2012/olympus-digital-camera-76/' title='Fireworks fountain'><img width="150" height="150" src="http://www.nfec.de/wp-content/uploads/2013/02/PC311275-150x150.jpg" class="attachment-thumbnail" alt="Fireworks fountain" /></a>
<a href='http://www.nfec.de/2013/02/fireworks-newyearseve2012/olympus-digital-camera-77/' title='Fireworks fountain'><img width="150" height="150" src="http://www.nfec.de/wp-content/uploads/2013/02/PC311276-150x150.jpg" class="attachment-thumbnail" alt="Fireworks fountain" /></a>
<a href='http://www.nfec.de/2013/02/fireworks-newyearseve2012/olympus-digital-camera-78/' title='Fireworks fountain'><img width="150" height="150" src="http://www.nfec.de/wp-content/uploads/2013/02/PC311277-150x150.jpg" class="attachment-thumbnail" alt="Fireworks fountain" /></a>
<a href='http://www.nfec.de/2013/02/fireworks-newyearseve2012/olympus-digital-camera-79/' title='Fireworks fountain'><img width="150" height="150" src="http://www.nfec.de/wp-content/uploads/2013/02/PC311286-150x150.jpg" class="attachment-thumbnail" alt="Fireworks fountain" /></a>
<a href='http://www.nfec.de/2013/02/fireworks-newyearseve2012/olympus-digital-camera-80/' title='Fireworks fountain'><img width="150" height="150" src="http://www.nfec.de/wp-content/uploads/2013/02/PC311287-150x150.jpg" class="attachment-thumbnail" alt="Fireworks fountain" /></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nfec.de/2013/02/fireworks-newyearseve2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Toshiba Satellite R630 and Windows 8</title>
		<link>http://www.nfec.de/2012/10/toshiba-satellite-r630-and-windows-8/</link>
		<comments>http://www.nfec.de/2012/10/toshiba-satellite-r630-and-windows-8/#comments</comments>
		<pubDate>Mon, 29 Oct 2012 22:03:17 +0000</pubDate>
		<dc:creator>NFec</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[Laptop]]></category>
		<category><![CDATA[Notebook]]></category>
		<category><![CDATA[Toshiba Portege R700]]></category>
		<category><![CDATA[Toshiba Portege R705]]></category>
		<category><![CDATA[Toshiba Satellite R630]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows8]]></category>

		<guid isPermaLink="false">http://www.nfec.de/?p=522</guid>
		<description><![CDATA[As you may saw by having a look on my previous posts in my blog I do own a Toshiba Satellite R630 which I very similar to the Portege R700/705 and Dynabook R730. Nearly two weeks ago I decided to &#8230; <a href="http://www.nfec.de/2012/10/toshiba-satellite-r630-and-windows-8/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>As you may saw by having a look on my previous posts in my blog I do own a Toshiba Satellite R630 which I very similar to the Portege R700/705 and Dynabook R730.</p>
<p>Nearly two weeks ago I decided to update at least my Satellite R630 running Windows 7 since the beginning to Windows 8. Last Saturday I purchase my copy of the final Windows 8 Pro and installed it on my R630. And here the issues appeared&#8230;.</p>
<ol>
<li>The update disabled all Toshiba programs which are necessary to support the hardware in the optimal way, e.g. Eco utility, touch pad software etc.</li>
<li>Toshiba does not support running the Satellite R630 / Portgege R700/705 with Windows 8.</li>
</ol>
<p>What I found out is that in some cases Toshiba software and system software developed for the Satellite  R930  can be used! Only to be correct at the beginning: This does not mean that any driver developed for the R930 will work on the R630. But it looks like that the following software is working (at least in main parts):</p>
<ul>
<li>Intel Chipset SW</li>
<li>Bluetooth Stack for Microsoft by Toshiba</li>
<li>Intel Display Driver</li>
<li>Synaptics touch pad driver</li>
<li>Intel Rapid Start Technology Software</li>
<li>Toshiba HDD Protection</li>
<li>Toshiba Webcam Application</li>
</ul>
<p>The next three components can be installed, but so far I was not able to find out if it really makes sense:</p>
<ul>
<li>Toshiba Function Key(came up with a message after first reboot and than disappeared)</li>
<li>Toshiba Eco utility (came up with a message after first reboot and than disappeared)</li>
<li>Toshiba Service Station (does not make sense, because driver updates for Win 8 does not exists)</li>
</ul>
<p>So what will you get when the working drivers/ system applications are installed? On my R630 I am able to control bluetooth, the display, webcam and the Synaptics touch pad now. The last big thing missing for me is the eco utiliy, but so far I had no chance to check if the default power management of Windows 8 is not satisfying.</p>
<p>In case of any question or a hint you have &#8211; use the comment form below.</p>
<p><strong>UPDATE 1:</strong></p>
<p>I just found out that Toshiba offers a &#8220;Value Added Pack&#8221;. This package does include the Eco Utility for example and many other tools. Here is the link to the tool: <a href="http://www.csd.toshiba.com/cgi-bin/tais/support/jsp/downloadDetail.jsp?soid=3480912&amp;pf=true" target="_blank">http://www.csd.toshiba.com/cgi-bin/tais/support/jsp/downloadDetail.jsp?soid=3480912&amp;pf=true</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nfec.de/2012/10/toshiba-satellite-r630-and-windows-8/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Installing FreeNX on openSUSE 12.1</title>
		<link>http://www.nfec.de/2012/03/installing-freenx-on-opensuse-12-1/</link>
		<comments>http://www.nfec.de/2012/03/installing-freenx-on-opensuse-12-1/#comments</comments>
		<pubDate>Sun, 11 Mar 2012 17:17:06 +0000</pubDate>
		<dc:creator>NFec</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[Citrix]]></category>
		<category><![CDATA[DigiKam]]></category>
		<category><![CDATA[FreeNX]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[NoMachine]]></category>
		<category><![CDATA[NX Client]]></category>
		<category><![CDATA[openSUSE]]></category>
		<category><![CDATA[remote desktop]]></category>

		<guid isPermaLink="false">http://www.nfec.de/?p=490</guid>
		<description><![CDATA[I do use DigiKam to manage all my digital pictures. Basically DigiKam is a great piece of software with a lot of functions and features. I really love the support for RAW camera files (I do use a Olympus DSLR), &#8230; <a href="http://www.nfec.de/2012/03/installing-freenx-on-opensuse-12-1/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I do use DigiKam to manage all my digital pictures. Basically DigiKam is a great piece of software with a lot of functions and features. I really love the support for RAW camera files (I do use a Olympus DSLR), the new face recognition feature and the that it can handle images and videos.<br />
The issue I am facing is that I want to be able to access my images including all meta informations from my workstation (Linux openSUSE) and my Windows 7 laptop. My first idea was to move all images on to <a title="Building a NAS for home use – Part 1: Introduction" href="http://www.nfec.de/2011/08/building-a-nas-for-home-use-part-1-introduction/">my NAS (network attached storage) box</a>, setup a MySQL-Database on it containing all DigiKam meta data and to use the DigiKam version from the <a href="http://windows.kde.org/" target="_blank">KDE for Windows Initiative</a>. A nice idea, but to keep it short a total failure! The problem was that DigiKam stores the path to the pictures in the format of the operating system you are running DigiKam on. In addition I had to face with two different DigiKam releases accessing the same database schema which failed after the more up-to-date DigiKam of my Linux workstation did an update to the DigiKam database. Therefore I had to look for an other solution.</p>
<p>To come around the issues of file path and version conflicts I decided to try to access the DigiKam installation on my workstation from remote. I know there are plenty of options to do so like VNC or running an X-Server on my Windows laptop, but finally I wanted to use something very bandwidth efficient offering also the flexibility to access the local file system of my workstation very easily without dealing with scp or mounting some kind of network share. Therefore I decided to give <a href="http://freenx.berlios.de/" target="_blank">FreeNX</a> a try as an free alternative to the commercial application streaming from Citrix.</p>
<h2>1.) Download and install FreeNX</h2>
<p>openSUSE does provide FreeNX and NX rpm files in the standard OSS repository, but if you compare the versions against the latests once from the website of the project they are outdated. Also the files provided by repositories of the OBS are not really up-to-date. Therefore I searched for newer files using the search function at <a href="http://software.opensuse.org" target="_blank">http://software.opensuse.org</a> by enabling that &#8220;home&#8221; folders shall be included in the search.<br />
I found the following repository &#8220;http://download.opensuse.org/repositories/home:/please_try_again/openSUSE_12.1/&#8221; and added it as repository to zypper:<br />
<a href="http://www.nfec.de/wp-content/uploads/2012/03/freenx_repo.png" rel="lightbox[490]"><img class="size-thumbnail wp-image-493 alignnone" title="Zypper repositories" src="http://www.nfec.de/wp-content/uploads/2012/03/freenx_repo-150x150.png" alt="" width="150" height="150" /></a></p>
<p>As next I selected FreeNX and NX for installation:<br />
<a href="http://www.nfec.de/wp-content/uploads/2012/03/freenx_inst.png" rel="lightbox[490]"><img class="size-thumbnail wp-image-494 alignnone" title="Zypper: Install FreeNX" src="http://www.nfec.de/wp-content/uploads/2012/03/freenx_inst-150x150.png" alt="" width="150" height="150" /></a></p>
<h2>2.) Configuring FreeNX</h2>
<p>Next you have to open a console (at KDE e.g. press &lt;ALT&gt;+&lt;F2&gt; and type &#8220;konsole&#8221;). At the console you have to switch the user root first before starting the configuration and than execute nxsetup:</p>
<pre>nf@jupiter:~&gt; su -
Passwort:
jupiter:/home/nf # nxsetup --install --setup-nomachine-key</pre>
<p>I got the following error when executing nxsetup as mentioned above:<br />
<a href="http://www.nfec.de/wp-content/uploads/2012/03/nxsetup_error1.png" rel="lightbox[490]"><img class="alignnone size-thumbnail wp-image-497" title="nxsetup error 1" src="http://www.nfec.de/wp-content/uploads/2012/03/nxsetup_error1-150x147.png" alt="" width="150" height="147" /></a></p>
<p>The solution to that is to simply create the folder nxsetup is not able to find:</p>
<pre>jupiter:/home/nf # mkdir /usr/lib64/cups/backend/ipp</pre>
<p>Than I executed the nxsetup again (&#8220;nxsetup &#8211;install &#8211;setup-nomachine-key&#8221;) as already mentioned above and it ran successful this time:</p>
<p><a href="http://www.nfec.de/wp-content/uploads/2012/03/nxsetup_done.png" rel="lightbox[490]"><img class="alignnone size-thumbnail wp-image-499" title="nxsetup" src="http://www.nfec.de/wp-content/uploads/2012/03/nxsetup_done-150x150.png" alt="" width="150" height="150" /></a></p>
<p>Basically the main setup and configuration is done. You can check if the FreeNX server is running by using the command:</p>
<pre>jupiter:/home/nf # nxserver --status</pre>
<p>The output should look like this:</p>
<p><a href="http://www.nfec.de/wp-content/uploads/2012/03/nxserver_status.png" rel="lightbox[490]"><img class="alignnone size-thumbnail wp-image-500" title="nxserver status" src="http://www.nfec.de/wp-content/uploads/2012/03/nxserver_status-150x85.png" alt="" width="150" height="85" /></a></p>
<p>3.) Client installation and first connection</p>
<p>After the nxserver is running you just need to install, configure and connect with the NX client to the NX server. The NX clients needs to be installed on the computer you want to use to connect to the systems you are running the NX server on.<br />
In my case this is my Windows 7 notebook and my Linux workstation.</p>
<p>You can get the client from the <a title="http://www.nomachine.com" href="http://www.nomachine.com" target="_blank">official Website of NoMachine</a> the creator of NX (the propriety version of FreeNX). Currently NoMachine offers clients for Windows, Linux, Mac OS and Solaris. In addition to native clients NoMachine offers a web client called &#8220;Web companion&#8221; too. To be able to connect to a NX server using &#8220;Web companion&#8221; you need a computer where a Java runtime is installed on.<br />
Get your client from here: <a href="http://www.nomachine.com/download.php" target="_blank">http://www.nomachine.com/download.php</a></p>
<p>After you installed the client you need to configure the connection. This can be done using the wizard which appears when you start the NX Client the first time. How this looked like on my Windows 7 notebook can be seen in the following screenshots:</p>
<p><a href="http://www.nfec.de/wp-content/uploads/2012/03/NX_Client.jpg" rel="lightbox[490]"><img class="alignnone size-thumbnail wp-image-503" title="Shortcut to start the NX Client" src="http://www.nfec.de/wp-content/uploads/2012/03/NX_Client-150x98.jpg" alt="" width="150" height="98" /></a><a href="http://www.nfec.de/wp-content/uploads/2012/03/nxclient01.jpg" rel="lightbox[490]"><img class="alignnone size-thumbnail wp-image-504" title="NX Client Setup 1" src="http://www.nfec.de/wp-content/uploads/2012/03/nxclient01-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://www.nfec.de/wp-content/uploads/2012/03/nxclient02.jpg" rel="lightbox[490]"><img class="alignnone size-thumbnail wp-image-505" title="NX Client Setup 2" src="http://www.nfec.de/wp-content/uploads/2012/03/nxclient02-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://www.nfec.de/wp-content/uploads/2012/03/nxclient03.jpg" rel="lightbox[490]"><img class="alignnone size-thumbnail wp-image-506" title="NX Client Setup 3" src="http://www.nfec.de/wp-content/uploads/2012/03/nxclient03-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://www.nfec.de/wp-content/uploads/2012/03/nxclient04.jpg" rel="lightbox[490]"><img class="alignnone size-thumbnail wp-image-507" title="NX Client Setup 4" src="http://www.nfec.de/wp-content/uploads/2012/03/nxclient04-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://www.nfec.de/wp-content/uploads/2012/03/nxclient05.jpg" rel="lightbox[490]"><img class="alignnone size-thumbnail wp-image-508" title="NX Client Connection 1" src="http://www.nfec.de/wp-content/uploads/2012/03/nxclient05-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://www.nfec.de/wp-content/uploads/2012/03/nxclient06.jpg" rel="lightbox[490]"><img class="alignnone size-thumbnail wp-image-509" title="NX Client Connection 2" src="http://www.nfec.de/wp-content/uploads/2012/03/nxclient06-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://www.nfec.de/wp-content/uploads/2012/03/nxclient07.jpg" rel="lightbox[490]"><img class="alignnone size-thumbnail wp-image-510" title="NX Client Connection 3" src="http://www.nfec.de/wp-content/uploads/2012/03/nxclient07-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p>When connecting to my NX server the Windows 7 firewall asked my two time if I want to allow the connection of programm nx&#8230; to &#8230; . Here please check that this are really programs belonging to the NX Client before simply allowing it.</p>
<p>That&#8217;s it, NX server running and you shall be able to connect to is using the NX client. Have fun with it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nfec.de/2012/03/installing-freenx-on-opensuse-12-1/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Hamburg Alster panorama</title>
		<link>http://www.nfec.de/2012/01/hamburg-alster-panorama/</link>
		<comments>http://www.nfec.de/2012/01/hamburg-alster-panorama/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 21:01:17 +0000</pubDate>
		<dc:creator>NFec</dc:creator>
				<category><![CDATA[Panorama]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Alster]]></category>
		<category><![CDATA[Hamburg]]></category>

		<guid isPermaLink="false">http://www.nfec.de/?p=458</guid>
		<description><![CDATA[Yesterday night I did some simple shots at the central lake Alster at Hamburg, Germany. The result is this simple night panorama looking southwards towards the city center. After clicking on the picture there is a &#8220;Download&#8221; link in the &#8230; <a href="http://www.nfec.de/2012/01/hamburg-alster-panorama/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Yesterday night I did some simple shots at the central lake Alster at Hamburg, Germany. The result is this simple night panorama looking southwards towards the city center.</p>
<p><em>After clicking on the picture there is a &#8220;Download&#8221; link in the lower left, click to see image in its original size! (8000px+ wide!!)</em></p>
<h2>Außenalster:</h2>
<div id="attachment_463" class="wp-caption alignnone" style="width: 650px"><a href="http://www.nfec.de/wp-content/uploads/2012/01/AussenAlster_cut.jpg" rel="lightbox[458]"><img class="size-large wp-image-463" title="Außenalster 2012-01-20" src="http://www.nfec.de/wp-content/uploads/2012/01/AussenAlster_cut-1600x344.jpg" alt="" width="640" height="137" /></a><p class="wp-caption-text">Außenalster 2012-01-20</p></div>
<h2>Binnenalster:</h2>
<div id="attachment_477" class="wp-caption alignnone" style="width: 650px"><a href="http://www.nfec.de/wp-content/uploads/2012/01/BinnenAlster_cut.jpg" rel="lightbox[458]"><img class="size-large wp-image-477" title="Binnenalster" src="http://www.nfec.de/wp-content/uploads/2012/01/BinnenAlster_cut-1600x297.jpg" alt="" width="640" height="118" /></a><p class="wp-caption-text">Binnenalster 2012-01-20</p></div>
<p>&nbsp;</p>
<p><a href="http://creativecommons.org/licenses/by-nc-sa/3.0/" rel="license"><img style="border-width: 0;" src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png" alt="Creative Commons License" /></a><br />
This <span>work</span> by <a href="www.nfec.de" rel="cc:attributionURL">Nicolas Fischer</a> is licensed under a <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/" rel="license">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nfec.de/2012/01/hamburg-alster-panorama/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Building a NAS for home use &#8211; Part 4: Assembly</title>
		<link>http://www.nfec.de/2011/11/building-a-nas-for-home-use-part-4-assembly/</link>
		<comments>http://www.nfec.de/2011/11/building-a-nas-for-home-use-part-4-assembly/#comments</comments>
		<pubDate>Sat, 05 Nov 2011 17:14:38 +0000</pubDate>
		<dc:creator>NFec</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[FreeNAS]]></category>
		<category><![CDATA[Hewlett-Packard ProLiant MicroServer N36L]]></category>
		<category><![CDATA[iLO]]></category>
		<category><![CDATA[NAS]]></category>
		<category><![CDATA[Network Attached Storage]]></category>

		<guid isPermaLink="false">http://www.nfec.de/?p=381</guid>
		<description><![CDATA[Part 4: Assembly I bought a lot of stuff along with the HP ProLiant MicroServer which needs to put into the small tower of the server. I do show in this chapter what to install how and in which sequence. &#8230; <a href="http://www.nfec.de/2011/11/building-a-nas-for-home-use-part-4-assembly/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<h1>Part 4: Assembly</h1>
<p>I bought a lot of stuff along with the HP ProLiant MicroServer which needs to put into the small tower of the server. I do show in this chapter what to install how and in which sequence. Basically this is a pretty easy task, but in case you did not bought one of this MicroServers and you want to know how the device looks from the inside you can check out the pictures I made.<span id="more-381"></span></p>
<h2>Index</h2>
<p>Instead of simply writing one big blog entry I decided to split up my report into multiple parts:</p>
<ul>
<li><a title="Building a NAS for home use – Part 1: Introduction" href="http://www.nfec.de/2011/08/building-a-nas-for-home-use-part-1-introduction/">Part 1: Introduction</a></li>
<li><a title="Building a NAS for home use – Part 2: Components" href="http://www.nfec.de/2011/08/building-a-nas-for-home-use-part-2-components/">Part 2: Components</a></li>
<li><a title="Building a NAS for home use – Part 3: Software Installlation" href="http://www.nfec.de/2011/08/building-a-nas-for-home-use-part-3-software-installation/">Part 3: Software Installation</a></li>
<li><strong>Part 4: Assembly &amp; Configuration<br />
</strong></li>
</ul>
<h2>Working on the system board</h2>
<h3>Removing the system board</h3>
<p>To remove the system board you do need to open the tower. Basically I recommend to check the manual from HP how to open the tower and so on. HP does provide a nice descriptions which really shows every step and move to execute.</p>
<p>To open the tower you do have to open the front door with the key and unscrew the screw on the back of the tower. Than you should be able to slide gently the top of the tower off the tower.</p>
<p>As the next step you should remove the hard disks and unscrew the blue screws aside of the system board. In my case a needed a special screwdriver with a torx (&#8220;star&#8221;) as a tip. You will need the same screwdriver later one when you need to remove the back plane where you need to put the iLO-Card in later on.</p>
<p>Next step is to unlock the cables very carefully from the cable brackets. To be on the save side you should open all brackets and lose all cables. Then you can pull on the handle at the front of the system board and the system board will slide out. Be careful when doing so because there are several cables connected to the board. Also disconnect these cables. It is very easy to reconnect them because all of them do only fit into a specific port or are color coded as you can see on my screenshots.</p>
<p><a href="http://www.nfec.de/wp-content/uploads/2011/08/P8015477.jpg" rel="lightbox[381]"><img class="alignnone size-thumbnail wp-image-423" title="MicroServer open front" src="http://www.nfec.de/wp-content/uploads/2011/08/P8015477-e1313328351209-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://www.nfec.de/wp-content/uploads/2011/08/P8015481.jpg" rel="lightbox[381]"><img class="alignnone size-thumbnail wp-image-424" title="Removing hard disks" src="http://www.nfec.de/wp-content/uploads/2011/08/P8015481-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://www.nfec.de/wp-content/uploads/2011/08/P8015482.jpg" rel="lightbox[381]"><img class="alignnone size-thumbnail wp-image-425" title="The blue screws which need to get loosen" src="http://www.nfec.de/wp-content/uploads/2011/08/P8015482-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://www.nfec.de/wp-content/uploads/2011/08/P8015483.jpg" rel="lightbox[381]"><img class="alignnone size-thumbnail wp-image-426" title="Closeup of blue screw" src="http://www.nfec.de/wp-content/uploads/2011/08/P8015483-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://www.nfec.de/wp-content/uploads/2011/08/P8015484.jpg" rel="lightbox[381]"><img class="alignnone size-thumbnail wp-image-427" title="Screw driver" src="http://www.nfec.de/wp-content/uploads/2011/08/P8015484-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://www.nfec.de/wp-content/uploads/2011/08/P8015487-e1313328885430.jpg" rel="lightbox[381]"><img class="alignnone size-thumbnail wp-image-428" title="Cables connected to the system board" src="http://www.nfec.de/wp-content/uploads/2011/08/P8015487-e1313328885430-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://www.nfec.de/wp-content/uploads/2011/08/P8015488.jpg" rel="lightbox[381]"><img class="alignnone size-thumbnail wp-image-429" title="More Cables connected to the system board" src="http://www.nfec.de/wp-content/uploads/2011/08/P8015488-e1313328974604-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://www.nfec.de/wp-content/uploads/2011/08/P8015489.jpg" rel="lightbox[381]"><img class="alignnone size-thumbnail wp-image-430" title="The system board" src="http://www.nfec.de/wp-content/uploads/2011/08/P8015489-e1313329058325-150x150.jpg" alt="" width="150" height="150" /></a></p>
<h3>Installation iLO-Card</h3>
<p>Please check the manual of the iLO-Card for the official installation procedure. In addition to it you can read my description.<br />
Before touching the iLO-Card you should ground yourself so that the iLO is not getting damaged by some kind of electricity your body will submit. As soon you have removed the system board you can insert the iLO-Card into the slot nearest to the biggest heat-sink. As the next step you do need to remove the back plane at the rear of the tower which covers the slot. To do so slide down the cover of the slots and unscrew the screw with the screw driver you already needed to remove the system board. The next step is to slowly slide the system board back into the tower and to reconnect all cables. Do not lock the system board by now, because you still need to install the USB-Stick (next step)</p>
<p><a href="http://www.nfec.de/wp-content/uploads/2011/08/P8015493.jpg" rel="lightbox[381]"><img class="alignnone size-thumbnail wp-image-438" title="iLO-Card" src="http://www.nfec.de/wp-content/uploads/2011/08/P8015493-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://www.nfec.de/wp-content/uploads/2011/11/P8015496.jpg" rel="lightbox[381]"><img class="alignnone size-thumbnail wp-image-439" title="iLo-Card(2)" src="http://www.nfec.de/wp-content/uploads/2011/11/P8015496-e1320511604554-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://www.nfec.de/wp-content/uploads/2011/11/P8015502.jpg" rel="lightbox[381]"><img class="alignnone size-thumbnail wp-image-440" title="iLo-Card (3)" src="http://www.nfec.de/wp-content/uploads/2011/11/P8015502-e1320511669600-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p>&nbsp;</p>
<h3>Installation USB-Stick</h3>
<p>HP was really thinking in advance when they decided to add an internal usb slot to the ProLiant MicroServer. This slot is placed quite close to the huge SATA-Connector on the system board. To be able to mount my USB-Stick into that slot I had to slide out the system board a little bit and than I simply inserted my &#8220;FreeNAS&#8221; USB-Stick into that port.</p>
<p>After putting it there I carefully pushed the system board back again than secure the system board by screw-in the blue screws again. At least I secured the cables by using the cable brackets at the end and do not forget the cable brackets aside of the hard disk slots!</p>
<p><a href="http://www.nfec.de/wp-content/uploads/2011/11/P8015498.jpg" rel="lightbox[381]"><img class="alignnone size-thumbnail wp-image-441" title="USB-Stick installed" src="http://www.nfec.de/wp-content/uploads/2011/11/P8015498-150x150.jpg" alt="" width="150" height="150" /></a></p>
<h3>Finishing the work on the system board</h3>
<p>By now the system board is back again at the place where it belongs. Before continuing to the installation of the hard disks you still need to fix the installed iLO-Card at the slot of the rear of the tower. To do so fix it with the screw removed at the installation step of the iLO-Card from the back plane and slide up the cover again. That&#8217;s it!</p>
<h2>Test Drive</h2>
<p>Before adding the additionally purchased hard disks I just wanted to do a test drive of the system. Therefore I wanted to try to boot up my FreeNAS from the USB-Stick, accessing the iLO and see how FreeNAS responses on the system. I do recommend this step because if something is malfunctioning the hard disks are still original boxed etc.. In my case I decided to insert (first slot) the 250GB hard disk supplied by HP only.</p>
<p>Than I connected it to the power grid, connected the system as well the iLO board with an Ethernet cable to my 1GBit/s switch, added a monitor (you have to connect it to the port on the  iLO-Card !!), an USB mouse and keyboard to it.</p>
<p><a href="http://www.nfec.de/wp-content/uploads/2011/11/P8015505.jpg" rel="lightbox[381]"><img class="alignnone size-thumbnail wp-image-442" title="First Book" src="http://www.nfec.de/wp-content/uploads/2011/11/P8015505-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://www.nfec.de/wp-content/uploads/2011/11/P8015508.jpg" rel="lightbox[381]"><img class="alignnone size-thumbnail wp-image-443" title="First boot (2)" src="http://www.nfec.de/wp-content/uploads/2011/11/P8015508-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://www.nfec.de/wp-content/uploads/2011/11/P8015512.jpg" rel="lightbox[381]"><img class="alignnone size-thumbnail wp-image-444" title="First boot (3)" src="http://www.nfec.de/wp-content/uploads/2011/11/P8015512-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p>BTW: Check the CD supplied by HP. On it you will find a link to the handbook to your MicroServer&#8230;. very strange HP really did not put it on the CD. Instead they offer only the link to download it. Or click here (hopefully HP won&#8217;t kill me):<br />
German: <a href="http://www.hp.com/support/HP_Proliant_MicroServer_UG_gr">http://www.hp.com/support/HP_Proliant_MicroServer_UG_gr</a><br />
English: <a href="http://www.hp.com/support/HP_Proliant_MicroServer_UG_en">http://www.hp.com/support/HP_Proliant_MicroServer_UG_en</a></p>
<p><strong>Results:</strong></p>
<p>I pressed not a single button and the system booted straight from the usb stick into FreeNAS&#8230; very sexy. At the end of the boot process FreeNAS will ask you for the console setup. I decided not to continue because I wanted to add the new hard disks first. Therefore I selected &#8220;Shutdown&#8221;.<br />
After the system shutdown I disconnected the power and attached devices to continue the hard disk installation.</p>
<h2>Installation of the hard disks</h2>
<p>Installing the hard disks is a pretty easy task, but HP does not supply any screws to screw the purchased hard disks into the frames. Isn&#8217;t that some kind of strange??<br />
For me that was not a big problem, because I collected a lot of screws from computers of the last years. But to the plastic frames from HP does not fit every screws&#8230; see screenshots.<br />
I decided not to use the hard disk supplied by HP, because the 250GB is quite small compared to the 2TB drives I bought and especially in case of noise and power consumption I do feel that I should use the western digital green series only.<br />
I already found usage for this disk&#8230; as separated drive of my workstation where I could install Windows on.</p>
<p>After putting all hard disks into the frames simply slide them in from left to right until you can lock them. In case you want to mount five instead of only four hard disks you can use the 5 1/4 slot for the fifth drive. In case you want to do this you have to purchase an additional frame/adapter to put a 3 1/2 drive into a 5 1/4 drive. In my case I will keep the 5 1/4 slot free for maybe putting there a bluray writer or tape drive in a few month.</p>
<p><a href="http://www.nfec.de/wp-content/uploads/2011/11/P8015515.jpg" rel="lightbox[381]"><img class="alignnone size-thumbnail wp-image-445" title="Hard disk mounted in hard disk frame" src="http://www.nfec.de/wp-content/uploads/2011/11/P8015515-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://www.nfec.de/wp-content/uploads/2011/11/P8015516.jpg" rel="lightbox[381]"><img class="alignnone size-thumbnail wp-image-446" title="All three hard disk bay equipped with disks" src="http://www.nfec.de/wp-content/uploads/2011/11/P8015516-150x150.jpg" alt="" width="150" height="150" /></a><a href="http://www.nfec.de/wp-content/uploads/2011/11/P8015518.jpg" rel="lightbox[381]"><img class="alignnone size-thumbnail wp-image-447" title="All four hard disk bays are full" src="http://www.nfec.de/wp-content/uploads/2011/11/P8015518-e1320512676104-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p>Now it is time to put back the top on the tower. You assemble the rest of the parts in the opposite sequence as you did in the step a the beginning.</p>
<p><a href="http://www.nfec.de/wp-content/uploads/2011/11/P8015519.jpg" rel="lightbox[381]"><img class="alignnone size-thumbnail wp-image-448" title="The server is assembled" src="http://www.nfec.de/wp-content/uploads/2011/11/P8015519-e1320512760357-150x150.jpg" alt="" width="150" height="150" /></a></p>
<h2>Configuration</h2>
<p>The configuration of the system using FreeNAS is very easy. After having the server assembled and FreeNAS installed on the USB-Stick. You should simply power on the server and boot up FreeNAS.</p>
<p>When the system is up there are two comfortable options to configure the system:</p>
<ol>
<li>You can use the the command line. FreeNAS is offering a very simply and clean menu which allows you to do all basic configuration. You can see the menu on the screenshot I added in this article showing the system booted without installed hard disks</li>
<li>You can configure the system using the webinterface. You can reach the webinterface via the URL: http://&lt;yourSystemsIP&gt;/</li>
</ol>
<p>In general working with the system shall be done using the webinterface, but it can be necessary to setup the basic IP-configuration via the command line so that the system will be assessable in your LAN.</p>
<p style="text-align: left;">For all further configuration steps I recommend to read through the wiki and tutorials available on freenas.org =&gt; <a href="http://doc.freenas.org/index.php/Main_Page" target="_blank">http://doc.freenas.org/index.php/Main_Page</a></p>
<p style="text-align: left;">In any case of question leave my a comment or send me a mail.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nfec.de/2011/11/building-a-nas-for-home-use-part-4-assembly/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>openSUSE 12.1 is coming!</title>
		<link>http://www.nfec.de/2011/11/opensuse-12-1-is-coming/</link>
		<comments>http://www.nfec.de/2011/11/opensuse-12-1-is-coming/#comments</comments>
		<pubDate>Sat, 05 Nov 2011 15:49:18 +0000</pubDate>
		<dc:creator>NFec</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Information Technology]]></category>

		<guid isPermaLink="false">http://www.nfec.de/?p=435</guid>
		<description><![CDATA[I&#8217;m using openSUSE since S.U.S.E. Linux 4 something on servers, workstations even since 9.x on notebooks. And here is the counter to the next release: 12.1 &#160;]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m using openSUSE since S.U.S.E. Linux 4 something on servers, workstations even since 9.x on notebooks.</p>
<p>And here is the counter to the next release: 12.1</p>
<p>&nbsp;<br />
<a href="http://en.opensuse.org/Portal:12.1"><img src="http://counter.opensuse.org/medium.png" border="0"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nfec.de/2011/11/opensuse-12-1-is-coming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My lenovo ThinkPad Tablet</title>
		<link>http://www.nfec.de/2011/10/my-lenovo-thinkpad-tablet/</link>
		<comments>http://www.nfec.de/2011/10/my-lenovo-thinkpad-tablet/#comments</comments>
		<pubDate>Sat, 22 Oct 2011 15:11:15 +0000</pubDate>
		<dc:creator>NFec</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[tablet]]></category>
		<category><![CDATA[ThinkPad]]></category>

		<guid isPermaLink="false">http://www.nfec.de/2011/10/my-lenovo-thinkpad-tablet/</guid>
		<description><![CDATA[Since a few weeks I&#8217;m a proud owner of a ThinkPad Tablet. After thinking about if I shall go for the 32GB version with or without 3G, I decided to keep it simple and I got the 64GB 3G version &#8230; <a href="http://www.nfec.de/2011/10/my-lenovo-thinkpad-tablet/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Since a few weeks I&#8217;m a proud owner of a ThinkPad Tablet. After thinking about if I shall go for the 32GB version with or without 3G, I decided to keep it simple and I got the 64GB 3G version &#8211; No compromises <img src='http://www.nfec.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> <br />
Maybe it hasn&#8217;t the fastest hardware anymore but still it is a greate device and I especially like the pen input option. I do really recommend this tablet. In case you think that the device is maybe a little bit too think just give is a try. The benefits of the size of the tablet is that it offers a fullsize usb port, full size SD card reader and a bay to store the pen. So in my opinion you can not make it much thinner without loosing some of this features.</p>
<p>Maybe I will post a full review, some hints and trick about the table later on.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nfec.de/2011/10/my-lenovo-thinkpad-tablet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building a NAS for home use &#8211; Part 3: Software Installlation</title>
		<link>http://www.nfec.de/2011/08/building-a-nas-for-home-use-part-3-software-installation/</link>
		<comments>http://www.nfec.de/2011/08/building-a-nas-for-home-use-part-3-software-installation/#comments</comments>
		<pubDate>Sun, 14 Aug 2011 13:11:25 +0000</pubDate>
		<dc:creator>NFec</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[FreeNAS]]></category>
		<category><![CDATA[Hewlett-Packard ProLiant MicroServer N36L]]></category>
		<category><![CDATA[NAS]]></category>
		<category><![CDATA[Network Attached Storage]]></category>

		<guid isPermaLink="false">http://www.nfec.de/?p=371</guid>
		<description><![CDATA[Part 3: Software Setup This part explains how I installed the FreeNAS operating system on my HP ProLiant MicroServer and configured it. In case you are questioning yourself how to install the OS before having the device assembled you really &#8230; <a href="http://www.nfec.de/2011/08/building-a-nas-for-home-use-part-3-software-installation/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<h1>Part 3: Software Setup</h1>
<p>This part explains how I installed the FreeNAS operating system on my HP ProLiant MicroServer and configured it. In case you are questioning yourself how to install the OS before having the device assembled you really should continue to read&#8230;. &#8230;. maybe a hint, we are going to put the OS on the usb stick <img src='http://www.nfec.de/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><span id="more-371"></span></p>
<h2>Index</h2>
<p>Instead of simply writing one big blog entry I decided to split up my report into multiple parts:</p>
<ul>
<li><a title="Building a NAS for home use – Part 1: Introduction" href="http://www.nfec.de/2011/08/building-a-nas-for-home-use-part-1-introduction/">Part 1: Introduction</a></li>
<li><a title="Building a NAS for home use – Part 2: Components" href="http://www.nfec.de/2011/08/building-a-nas-for-home-use-part-2-components/">Part 2: Components</a></li>
<li><strong>Part 3: Software Installation</strong></li>
<li><a title="Building a NAS for home use – Part 4: Assembly" href="http://www.nfec.de/2011/11/building-a-nas-for-home-use-part-4-assembly/">Part 4: Assembly &amp; Configuration</a></li>
</ul>
<p>&nbsp;</p>
<h2>Getting FreeNAS</h2>
<p>You can get FreeNAS very easy from the <a href="http://www.freenas.org/" target="_blank">Website of the FreeNAS project</a>. Simply go there and look for &#8220;Download&#8221;. I decided to use the AM64-Version of FreeNAS because the AMD Neo II N36L does offer AMD64 support and therefore I did not see any argument why not to use it. To install FreeNAS on an USB-Stick the best is to download the &#8220;xxxx.Full_Install.xz&#8221;.</p>
<h2>Installing FreeNAS on an USB-Stick</h2>
<p>After getting to know how it is very easy to install FreeNAS on an USB-Stick to boot it from there.<br />
To be able to write this image on a USB-Stick you maybe needs some additional software in case you do not work under Linux. How to write the operating system on the USB-Stick is described at the online documentation of FreeNAS including how to do this by using Linux, Windows and Mac OS X. Therefore please check out this link to find out more: <a title="http://doc.freenas.org/index.php/Installing_from_the_Image" href="http://doc.freenas.org/index.php/Installing_from_the_Image" target="_blank">http://doc.freenas.org/index.php/Installing_from_the_Image</a><br />
I do use Linux (openSuSE) on my workstation therefore I went with &#8220;dd&#8221; to write the image on my 8 GB trancend USB-Stick as you can see in the screenshot.</p>
<p><a href="http://www.nfec.de/wp-content/uploads/2011/08/WriteUSB.png" rel="lightbox[371]"><img class="alignnone size-thumbnail wp-image-377" title="Installing FreeNAS on my USB-Stick" src="http://www.nfec.de/wp-content/uploads/2011/08/WriteUSB-150x143.png" alt="" width="150" height="143" /></a></p>
<p>After it is done writing the image to the USB-Stick more or less the whole installation is done and we can put it to the parts we do need to put into our MicroServer.</p>
<p>Continue to read at: <a title="Building a NAS for home use – Part 4: Assembly" href="http://www.nfec.de/2011/11/building-a-nas-for-home-use-part-4-assembly/">Part 4: Assembly &amp; Configuration</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nfec.de/2011/08/building-a-nas-for-home-use-part-3-software-installation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Building a NAS for home use &#8211; Part 2: Components</title>
		<link>http://www.nfec.de/2011/08/building-a-nas-for-home-use-part-2-components/</link>
		<comments>http://www.nfec.de/2011/08/building-a-nas-for-home-use-part-2-components/#comments</comments>
		<pubDate>Mon, 01 Aug 2011 23:07:54 +0000</pubDate>
		<dc:creator>NFec</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[FreeBSD]]></category>
		<category><![CDATA[FreeNAS]]></category>
		<category><![CDATA[Hewlett-Packard ProLiant MicroServer N36L]]></category>
		<category><![CDATA[iLO]]></category>
		<category><![CDATA[NAS]]></category>

		<guid isPermaLink="false">http://www.nfec.de/?p=400</guid>
		<description><![CDATA[Part 2: Components Building a NAS or home server based on the Hewlett-Packard ProLiant MicroServer N36L is quite easy. Only a small amount of additional hardware is required to assemble a system with very impressive features and performance. In this &#8230; <a href="http://www.nfec.de/2011/08/building-a-nas-for-home-use-part-2-components/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<h1>Part 2: Components</h1>
<p>Building a NAS or home server based on the Hewlett-Packard ProLiant MicroServer N36L is quite easy. Only a small amount of additional hardware is required to assemble a system with very impressive features and performance. In this small blog post I do explain which components I decided to use in my system and which benefits I hope to gain by using them.<span id="more-400"></span></p>
<h2>Index</h2>
<p>Instead of simply writing one big blog entry I decided to split up my report into multiple parts:</p>
<ul>
<li><a title="Building a NAS for home use – Part 1: Introduction" href="http://www.nfec.de/2011/08/building-a-nas-for-home-use-part-1-introduction/">Part 1: Introduction</a></li>
<li><strong>Part 2: Components</strong></li>
<li><a title="Building a NAS for home use – Part 3: Software Installlation" href="http://www.nfec.de/2011/08/building-a-nas-for-home-use-part-3-software-installation/">Part 3: Software Installation</a></li>
<li><a title="Building a NAS for home use – Part 4: Assembly" href="http://www.nfec.de/2011/11/building-a-nas-for-home-use-part-4-assembly/">Part 4: Assembly &amp; Configuration</a></li>
</ul>
<p>&nbsp;</p>
<h2>Minimum Hardware required</h2>
<p>Basically by buying the MicroServer you are ready to go. The system comes with all hardware you need to run a small server. But I think this would not be worth this device! Therefore decide on your own which additional hardware you want to purchase at least a pair of good and big hard disk should be added to the device!</p>
<h2>Hard Disks</h2>
<p>I got three 2 TB Western Digital hard disks to put into my MicroServer. I decided to go for the Green Caviar with 64MB Cache and 5400rpm. I do not need server class disks because I do plan to power down the system when it is absolutely not needed. In case I am not at home and I do need some data from the device I plan to power on by using the remote management function offered by iLO.<br />
Back to the WD disks. They do offer a low noise profile and an acceptable performance because of the density of the disks.</p>
<h2>RAM</h2>
<p>I am not planning to upgrade from 1 GB RAM which was included in the package to a higher value. I checked the system requirements of FreeNAS and I think for my purpose 1 GB is pretty enough especially when comparing to some other NAS boxes with much slower processors. But in case of doing heavy raid stuff and running a lot of servers on the box you should insert more RAM.</p>
<h2>Integrated Lights-Out &#8211; iLO</h2>
<p>In my opinion the coolest feature you can get for this server. iLO is the remote management card by HP. By using this card you will get access to the server even when it is set to power off. Via this card you can power-on/ -off, hard reset the server, have a look on the VGA-Out (even BIOS) and install a new OS via a remote virtual DVD drive.</p>
<h2>FreeNAS</h2>
<p>Because I want to get the system running without having to start a long installation and configuration procedure I decided to give FreeNAS a try. FreeNAS is a free and open source operating system based on FreeBSD which is optimized for providing NAS services. A special features comes to the support of ZFS, the Zeta File System, which is fully suported including Raid-Z etc. To find out more check the <a href="http://www.freenas.org/" target="_blank">FreeNAS Website</a> and the <a href="http://en.wikipedia.org/wiki/ZFS" target="_blank">Wikipedia article about ZFS</a>.</p>
<h2>USB-Stick</h2>
<p>The USB-Stick is used to store the FreeNAS Installation on it. By using a USB-Stick there is not need to install FreeNAS on any of the hard disks and you can even benefit a little bit of the fast read access of flash storage.<br />
For my configuration I decided to use a 8 GB stick from transcend.</p>
<p>&nbsp;</p>
<p>The next chapters is about the required software installation. To continue reading click: <a title="Building a NAS for home use – Part 3: Software Installlation" href="http://www.nfec.de/2011/08/building-a-nas-for-home-use-part-3-software-installation/">Part 3: Software Installation</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nfec.de/2011/08/building-a-nas-for-home-use-part-2-components/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
