<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Gerald&#039;s Thought Shed</title>
	<atom:link href="http://geraldhuber.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://geraldhuber.wordpress.com</link>
	<description>Thoughts about .Net, C#, Java, Windows, Linux, mobile life and more....</description>
	<lastBuildDate>Thu, 01 Dec 2011 11:40:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='geraldhuber.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Gerald&#039;s Thought Shed</title>
		<link>http://geraldhuber.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://geraldhuber.wordpress.com/osd.xml" title="Gerald&#039;s Thought Shed" />
	<atom:link rel='hub' href='http://geraldhuber.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Excel for Jolterheads: Getting a substring from another column or how to split a string</title>
		<link>http://geraldhuber.wordpress.com/2011/08/17/excel-for-jolterheads-getting-a-substring-from-another-column-or-how-to-split-a-string/</link>
		<comments>http://geraldhuber.wordpress.com/2011/08/17/excel-for-jolterheads-getting-a-substring-from-another-column-or-how-to-split-a-string/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 20:26:03 +0000</pubDate>
		<dc:creator>Gerald Huber</dc:creator>
				<category><![CDATA[MS Office]]></category>
		<category><![CDATA[Office 2007]]></category>
		<category><![CDATA[excel]]></category>
		<category><![CDATA[split]]></category>
		<category><![CDATA[substring]]></category>

		<guid isPermaLink="false">http://geraldhuber.wordpress.com/?p=170</guid>
		<description><![CDATA[Assuming the following situation: In Excel column A contains the source data. Therefore, i.e. cell A1 contains the following string: companyName - accountName Now we want to have in column B only the companyName. We can do this by typing in the following formula in i.e. cell B1: =LEFT(A1,FIND("-",A1,1)-2) This returns the left part of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geraldhuber.wordpress.com&amp;blog=494486&amp;post=170&amp;subd=geraldhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Assuming the following situation:<br />
In Excel column A contains the source data. Therefore, i.e. cell A1 contains the following string:<br />
<code>companyName - accountName</code></p>
<p>Now we want to have in column B only the <strong>companyName</strong>. We can do this by typing in the following formula in i.e. cell B1:<br />
<code>=LEFT(A1,FIND("-",A1,1)-2)</code></p>
<p>This returns the left part of the string in cell A1. The substring is length limited by the return value of the <strong>FIND</strong>. <strong>FIND</strong> searches for the text &#8220;<strong>-</strong>&#8221; (dash) in cell A1, beginning at position 1 (remember, contrary to many programming languages, Excel starts indexes by 1). The <strong>-2</strong> is necessary, because we search for the &#8220;<strong>-</strong>&#8221; and its position is returned and because indexing starts by 1 the length includes the dash already. But, why <strong>-2</strong>? &#8211; Quite easy, because left to the dash there is a space we want neither.</p>
<p>If you want the right part, say <strong>accountName</strong>, you can use this formula<br />
<code>=RIGHT(A1,LEN(A1)-D16-1)</code></p>
<p>If you don&#8217;t want to use a formula you can also use the <em>&#8220;Convert text to column wizard&#8221;</em> under <strong><em>Data -&gt; Text to column</em></strong>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geraldhuber.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geraldhuber.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geraldhuber.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geraldhuber.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geraldhuber.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geraldhuber.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geraldhuber.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geraldhuber.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geraldhuber.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geraldhuber.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geraldhuber.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geraldhuber.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geraldhuber.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geraldhuber.wordpress.com/170/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geraldhuber.wordpress.com&amp;blog=494486&amp;post=170&amp;subd=geraldhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geraldhuber.wordpress.com/2011/08/17/excel-for-jolterheads-getting-a-substring-from-another-column-or-how-to-split-a-string/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4de70181aa98a344e9e4a9a674e6bf3b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Gerald Huber</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing Apache2 and PHP5</title>
		<link>http://geraldhuber.wordpress.com/2010/03/09/installing-apache2-and-php5/</link>
		<comments>http://geraldhuber.wordpress.com/2010/03/09/installing-apache2-and-php5/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 17:45:55 +0000</pubDate>
		<dc:creator>Gerald Huber</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[apache2]]></category>
		<category><![CDATA[php5]]></category>

		<guid isPermaLink="false">http://geraldhuber.wordpress.com/?p=153</guid>
		<description><![CDATA[In this part of the series, I want to explain, how to install Apache2 and PHP5 on your Ubuntu Server (which we installed previously). So, let&#8217;s get started by logging into the server and gaining &#8216;root&#8217; : sudo -su - Installing Apache2 Now, as &#8216;root&#8217; we can enter the following commands to update the list [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geraldhuber.wordpress.com&amp;blog=494486&amp;post=153&amp;subd=geraldhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In this part of the series, I want to explain, how to install <a href="http://httpd.apache.org/" target="_blank">Apache2</a> and <a href="http://php.net/" target="_blank">PHP5</a> on your Ubuntu Server (which we installed <a href="http://geraldhuber.wordpress.com/2010/03/09/installing-ubuntu-server-9-10/" target="_self">previously</a>).</p>
<p>So, let&#8217;s get started by logging into the server and gaining &#8216;root&#8217; :</p>
<blockquote><p>sudo -su -</p></blockquote>
<p><strong>Installing Apache2</strong></p>
<p>Now, as &#8216;root&#8217; we can enter the following commands to update the list of available packages (1:) and to install Apache2 (2:):</p>
<blockquote>
<pre>1:  $&gt; apt-get update
2:  $&gt; apt-get install apache2-mpm-prefork</pre>
</blockquote>
<p>Here, we use the <code>apache2-mpm-prefork</code> version because we need a  solution which deals each request completely isolated. For more information read the <a href="http://httpd.apache.org/docs/2.2/en/mod/prefork.html" target="_blank">Apache2 docs</a>.</p>
<p><strong>Testing Apache</strong></p>
<p>Before we start messing with it, you might as well check that Apache is working. Point a browser at http://yourdomain or http://yourIPaddress and verify that you see the installed default Apache site. If you don&#8217;t, check your DNS and firewall. Fix whatever the problem is before you go on.</p>
<p><strong>Apache security</strong></p>
<p>I decided to enhance the security a little bit  and got some tips by reading the <a href="http://httpd.apache.org/docs/2.2/en/misc/security_tips.html" target="_blank">Security Tips</a> on the Apache site. There are two possible ways.</p>
<ol>
<li>You can add these to the main config file.</li>
<li>But, I opted to keep my own config changes separate by putting them in a file in the /etc/apache2/conf.d/ directory</li>
</ol>
<p>So, because I chose the second way, I created under <code>/etc/apache2/conf.d/</code> a file named <code>local_configs.conf</code> and put the following in it:</p>
<blockquote>
<pre># Tighten access to the file system.
# Forbid default access to file system locations
Order Deny,Allow
Deny from all

# prevent use of .htaccess files in all directories
# apart from those specifically enabled.
AllowOverride None

# Limit available info about this server.
ServerSignature Off
ServerTokens production</pre>
</blockquote>
<p>The file creation can be done by using <code>vim</code> as follows:</p>
<blockquote>
<pre> $&gt; vim /etc/apache2/conf.d/local_configs.conf</pre>
</blockquote>
<p>And, using the shortcut &#8220;<code>i</code>&#8221; to insert some text in the newly created file. To quit and save the file press the <code>ESC</code>-key to enter command-mode and then pressing <code>ZZ</code> (press <code>SHIFT</code> and the &#8216;Z&#8217;-key twice) to save and quit.<br />
If you want to discard some changes, you can press the <code>ESC</code>-key to enter command-mode and then <code>:q!</code> to quit without writing anything to the file.</p>
<p>Now, we have to force Apache2 to load the new config-file by entering in the command line:</p>
<blockquote>
<pre>$&gt; /etc/init.d/apache2 force-reload</pre>
</blockquote>
<p><strong>Install PHP5</strong><br />
With our Apache2 web server running, we can install PHP5 with the following command:</p>
<blockquote>
<pre>$&gt; apt-get install libapache2-mod-php5</pre>
</blockquote>
<p><strong>PHP security</strong><br />
There is a good sample php-config-file: <code>/usr/share/doc/php5-common/examples/php.ini-recommended</code>, we&#8217;ll use. It contains the &#8220;warmly recommended&#8221; <code>php.ini</code> settings for production servers. This file is very well commented and worth the time to read.<br />
So we first save a copy of the original php.ini file and copy the recommended file in place of the original file:</p>
<blockquote>
<pre>$&gt; mv /etc/php5/apache2/php.ini /etc/php5/apache2/php.ini.original
$&gt; cp /usr/share/doc/php5-common/examples/php.ini-recommended /etc/php5/apache2/php.ini</pre>
</blockquote>
<p>By editing the php.ini and changing the <code>expose_php</code> from &#8220;on&#8221; to &#8220;off&#8221;, we hide info about our php config by telling PHP to hide itself.</p>
<blockquote>
<pre>expose_php = off</pre>
</blockquote>
<p>So, that&#8217;s all by now&#8230;.<br />
Nice, isn&#8217;t it?</p>
<p>But, we haven&#8217;t reached the end&#8230; Let&#8217;s go one step further by: Installing MySQL and phpMyAdmin</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geraldhuber.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geraldhuber.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geraldhuber.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geraldhuber.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geraldhuber.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geraldhuber.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geraldhuber.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geraldhuber.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geraldhuber.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geraldhuber.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geraldhuber.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geraldhuber.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geraldhuber.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geraldhuber.wordpress.com/153/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geraldhuber.wordpress.com&amp;blog=494486&amp;post=153&amp;subd=geraldhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geraldhuber.wordpress.com/2010/03/09/installing-apache2-and-php5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4de70181aa98a344e9e4a9a674e6bf3b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Gerald Huber</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing Ubuntu Server 9.10</title>
		<link>http://geraldhuber.wordpress.com/2010/03/09/installing-ubuntu-server-9-10/</link>
		<comments>http://geraldhuber.wordpress.com/2010/03/09/installing-ubuntu-server-9-10/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 13:41:14 +0000</pubDate>
		<dc:creator>Gerald Huber</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://geraldhuber.wordpress.com/?p=135</guid>
		<description><![CDATA[This is the first part of the series &#8220;Building up a development server on linux&#8221;. Now I want to focus on how to install the Ubuntu Server 9.10 as quick and easy as possible for our needs. I&#8217;m installing the whole server system in a VMware Player 3.0 environment, but feel free to do the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geraldhuber.wordpress.com&amp;blog=494486&amp;post=135&amp;subd=geraldhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is the first part of the series &#8220;Building up a development server on linux&#8221;. Now I want to focus on how to install the Ubuntu Server 9.10 as quick and easy as possible for our needs.</p>
<p>I&#8217;m installing the whole server system in a VMware Player 3.0 environment, but feel free to do the steps on a real system. There are no points to change or at least only a little&#8230;</p>
<ol>
<li>Download Ubuntu Server 9.10<br />
You can download the latest Ubuntu Server 9.10 <a href="http://www.ubuntu.com/getubuntu/download-server" target="_blank">here</a>. I&#8217;ve chosen the 64-bit version for this tutorial. burn or mount the image as you prefer and start the real server or the virtual machine to start the server installation.</li>
<li>Choose your preferred language &#8211; I chose &#8220;English&#8221;.</li>
<li>By pressing &#8220;F5&#8243; enter the menu of &#8220;Other options&#8221; and select/activate &#8220;Expert mode&#8221; &#8211; if activated a &#8220;X&#8221; appears.</li>
<li>Select &#8220;Install Ubuntu Server&#8221; to start the installation process.</li>
<li>Select again your preferred language (English in my case). Select the country (in my case &#8220;other&#8221; -&gt; &#8220;Europe&#8221; -&gt; &#8220;Germany&#8221;) and &#8220;Locale&#8221; -&gt; &#8220;en_US.UTF-8&#8243;. I also activated in the menu &#8220;Choose other locales to be supported&#8221; -&gt; &#8220;de_DE@euro&#8221;.</li>
<li>Choose the right keyboard model; maybe also the origin of the keyboard and the layout, etc.</li>
<li>Select by &#8220;Encoding to use on the console&#8221; -&gt; &#8220;UTF-8&#8243; and the correct character set as well as &#8220;Font for console&#8221; -&gt; &#8220;VGA&#8221;. Leave the next settings with the default values.</li>
<li>Select in the next step &#8220;Detect and mount CD-ROM&#8221; and activate &#8220;usb-storage&#8221; and &#8220;Pc card&#8221; if necessary.</li>
<li>Click on &#8220;Load debconf preconfiguration file&#8221; and after that on &#8220;Load installer components from CD&#8221; and leave all values as default.</li>
<li>Next &#8220;Detect network hardware&#8221; and with &#8220;Configure the network&#8221; select your appropriate settings.</li>
<li>By &#8220;Configure the clock&#8221; leave the default values.</li>
<li>Go on with &#8220;Detect disks&#8221; and &#8220;Partition disks&#8221; and use in the latter case &#8220;Guided &#8211; use entire disk&#8221; and for our case leave the setting at &#8220;All files in one partition&#8230;&#8221; and let the installer write all changes to disk if you are sure.</li>
<li>By clicking &#8220;Installing the base system&#8221;, the installer downloads and copies the real base file for the new OS.</li>
<li>Next in the menu subpoint &#8220;Drivers to include in the initrd&#8221; select &#8220;targeted: only include&#8230;&#8221;.</li>
<li>Next &#8220;Setup users and passwords&#8221; and &#8220;enable shadow passwords&#8221; as well as do NOT allow &#8220;root to login&#8221;. Enter your full name and the installer proposes you a Linux user name. Enter a secure password (by using numbers and upper and lower case characters as well as special characters.)</li>
<li>In our case it is not necessary to encrypt your home directory, but still you could if you want&#8230; I, for myself doesn&#8217;t.</li>
<li>Go on with &#8220;Configure the package manager&#8221; and with &#8220;Yes&#8221; by &#8220;Use a network mirror&#8221; and leave all default values. Also select &#8220;Yes&#8221; when the installer asks you about to &#8220;Use restricted software?&#8221; and if you want to &#8220;Use software from &#8216;universe&#8217;/'multiverse&#8217; component&#8221;. Go on with &#8220;Yes&#8221; as well by the question &#8220;Use backported software&#8221; and &#8220;partner repositories&#8221;.</li>
<li>Next &#8220;Select and install software&#8221; and click on &#8220;No automatic updates&#8221; and leave all preconfigured collections deselected.</li>
<li>Select &#8220;Install the GRUB boot loader on a hard disk&#8221; and let the installer allow to install GRUB 2.</li>
<li>Next &#8220;Finish the installation&#8221; and choose &#8220;UTC time&#8221; if no other non-linux is installed parallel to the new installed one.</li>
<li>Reboot the system.</li>
</ol>
<p>Congratulation!</p>
<p>The new Ubuntu server 9.10 is installed. Now you can login with your user name and password. To gain &#8216;root&#8217; access use &#8220;sudo&#8221; followed by the command you want to run as &#8216;root&#8217; and your user password if asked.</p>
<p>To gain &#8216;root&#8217; for more than one command use &#8220;sudo su -&#8221; to get a &#8216;root console&#8217;.</p>
<p>Next follows a description  about how to &#8220;<a href="http://geraldhuber.wordpress.com/2010/03/09/installing-apache2-and-php5/" target="_self">Install Apache2 and PHP5</a>&#8221; on your new server.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geraldhuber.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geraldhuber.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geraldhuber.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geraldhuber.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geraldhuber.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geraldhuber.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geraldhuber.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geraldhuber.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geraldhuber.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geraldhuber.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geraldhuber.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geraldhuber.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geraldhuber.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geraldhuber.wordpress.com/135/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geraldhuber.wordpress.com&amp;blog=494486&amp;post=135&amp;subd=geraldhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geraldhuber.wordpress.com/2010/03/09/installing-ubuntu-server-9-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4de70181aa98a344e9e4a9a674e6bf3b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Gerald Huber</media:title>
		</media:content>
	</item>
		<item>
		<title>Develoment server build on linux &#8211; Introduction</title>
		<link>http://geraldhuber.wordpress.com/2010/03/09/develoment-server-build-on-linux-introduction/</link>
		<comments>http://geraldhuber.wordpress.com/2010/03/09/develoment-server-build-on-linux-introduction/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 10:05:26 +0000</pubDate>
		<dc:creator>Gerald Huber</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[apache2]]></category>
		<category><![CDATA[glassfish]]></category>
		<category><![CDATA[hudson]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[jdk]]></category>
		<category><![CDATA[mantis]]></category>
		<category><![CDATA[mysql5]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://geraldhuber.wordpress.com/?p=133</guid>
		<description><![CDATA[In this article series, I want to explain how to set up an development server based on Ubuntu Server 9.10 Linux as the OS. Installing Apache2 and PHP5. After that installing MySQL and phpMyAdmin. Further installing Java 6 JDK and GlassFish v3.0 as a JavaServelt and JSP/JSF environment. No that the base system and services [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geraldhuber.wordpress.com&amp;blog=494486&amp;post=133&amp;subd=geraldhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In this article series, I want to explain how to set up an development server based on <a href="http://www.ubuntu.com/products/whatisubuntu/serveredition" target="_blank">Ubuntu Server 9.10</a> Linux as the OS. Installing Apache2 and PHP5. After that installing MySQL and phpMyAdmin. Further installing Java 6 JDK and GlassFish v3.0 as a JavaServelt and JSP/JSF environment.<br />
No that the base system and services are installed, we can install and configure the bug tracker Mantis and Subversion as the Version Control System and Hudson as the Continuous Integration system.</p>
<p>The series is split up into these parts:</p>
<ol>
<li>Introduction (this part)</li>
<li><a href="http://geraldhuber.wordpress.com/2010/03/09/installing-ubuntu-server-9-10/" target="_self">Installing Ubuntu Server 9.10</a></li>
<li><a href="http://geraldhuber.wordpress.com/2010/03/09/installing-apache2-and-php5/" target="_self">Installing Apache2 and PHP5</a></li>
<li>Installing MySQL and phpMyAdmin</li>
<li>Installing Java 6 JDK and GlassFish v3.0</li>
<li>Installing Mantis</li>
<li>Installing Subversion</li>
<li>Installing Hudson</li>
</ol>
<p>So, lets get started with &#8220;<a href="http://geraldhuber.wordpress.com/2010/03/09/installing-ubuntu-server-9-10/" target="_self">Installing Ubuntu Server 9.10</a>&#8220;.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geraldhuber.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geraldhuber.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geraldhuber.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geraldhuber.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geraldhuber.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geraldhuber.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geraldhuber.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geraldhuber.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geraldhuber.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geraldhuber.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geraldhuber.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geraldhuber.wordpress.com/133/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geraldhuber.wordpress.com/133/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geraldhuber.wordpress.com/133/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geraldhuber.wordpress.com&amp;blog=494486&amp;post=133&amp;subd=geraldhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geraldhuber.wordpress.com/2010/03/09/develoment-server-build-on-linux-introduction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4de70181aa98a344e9e4a9a674e6bf3b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Gerald Huber</media:title>
		</media:content>
	</item>
		<item>
		<title>Maven and Eclipse: Compiler version inheritance</title>
		<link>http://geraldhuber.wordpress.com/2010/03/01/maven-and-eclipse-compiler-version-inheritance/</link>
		<comments>http://geraldhuber.wordpress.com/2010/03/01/maven-and-eclipse-compiler-version-inheritance/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 14:53:37 +0000</pubDate>
		<dc:creator>Gerald Huber</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[maven]]></category>

		<guid isPermaLink="false">http://geraldhuber.wordpress.com/?p=124</guid>
		<description><![CDATA[I&#8217;ve recently started to use Maven 2 in my Eclipse projects. So everything has worked fine for a single-module project, but I had some difficulties with a multi-module project. The problem was, that I haven&#8217;t got Eclipse to use the J2SE version 1.6. Instead, Eclipse always used the default version 1.4. This Doesn&#8217;t worked for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geraldhuber.wordpress.com&amp;blog=494486&amp;post=124&amp;subd=geraldhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently started to use Maven 2 in my Eclipse projects. So everything has worked fine for a single-module project, but I had some difficulties with a multi-module project.</p>
<p>The problem was, that I haven&#8217;t got Eclipse to use the J2SE version 1.6. Instead, Eclipse always used the default version 1.4. This Doesn&#8217;t worked for me, because of the use of Generics (which are introduced in 1.5).</p>
<p><strong>The wrong parent pom</strong><br />
In a multi-module project, you should define a parent- / main-pom which holds all settings and properties that are common to all modules. So, I configured the build-properties as shown here:</p>
<blockquote>
<pre>&lt;properties&gt;
	&lt;java-version&gt;[1.6,)&lt;/java-version&gt;
	....
&lt;/properties&gt;</pre>
<p>&#8230;</p>
<pre>&lt;build&gt;
  	&lt;plugins&gt;
  	  	&lt;plugin&gt;
  	  	  	&lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
  	  	  	&lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
  	  	  	&lt;inherited&gt;true&lt;/inherited&gt;
  	  	  	&lt;configuration&gt;
  	  	  	  	&lt;source&gt;${java-version}&lt;/source&gt;
  	  	  	  	&lt;target&gt;${java-version}&lt;/target&gt;
  	  	  	&lt;/configuration&gt;
  	  	&lt;/plugin&gt;
  	&lt;/plugins&gt;
&lt;/build&gt;</pre>
</blockquote>
<p>But every time the <strong>default</strong> J2SE version was chosen by the m2eclipse plugin when I imported the existing maven project into the workspace of Eclipse. So what was wrong?</p>
<p><strong>The correct parent pom</strong><br />
After a lot of searching around in the web, I found the solution. The problem is, that the <code>build</code> element cannot be inherited. The <code>maven-compiler-plugin</code> has to be configured in a <code>pluginManagement</code> element in the <code>build</code> element. As shown:</p>
<blockquote>
<pre>&lt;build&gt;
    &lt;pluginManagement&gt;
        &lt;plugins&gt;
             &lt;plugin&gt;
                 &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
                 ...
             &lt;/plugin&gt;
         &lt;/plugins&gt;
     &lt;/pluginManagement&gt;
 &lt;/build&gt;</pre>
</blockquote>
<p><strong>The child pom</strong><br />
But nevertheless, the <code>build</code> element must be specified in the child pom&#8217;s as well &#8211; but now without to configure it:</p>
<blockquote>
<pre>&lt;build&gt;
     &lt;plugins&gt;
         &lt;plugin&gt;
             &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
             &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
         &lt;/plugin&gt;
     &lt;/plugins&gt;
&lt;/build&gt;</pre>
</blockquote>
<p><strong>Range notation in properties and inheritance of build configurations</strong><br />
That works fine, but again there was a mistake in my first configuration. The Java version was written in range manner <code>[1.6,)</code> &#8211; which means the Java version needs to be equal or greater then 1.6.<br />
But strangely this range notation can not be used in combination with &#8220;range notation in properties and inheritance&#8221; (?) or only in combination with &#8220;range notation in properties and inheritance of build configurations&#8221;(?) !!! &#8211; I think the latter is the case.</p>
<p>However, the use of only the version number 1.6 &#8211; without the range notations &#8211; works!</p>
<p>Maybe this is a bug&#8230;or due to a configuration mistake of mine&#8230;.I&#8217;ve no idea&#8230;<br />
So feel free, to leave comments or hints.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geraldhuber.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geraldhuber.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geraldhuber.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geraldhuber.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geraldhuber.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geraldhuber.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geraldhuber.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geraldhuber.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geraldhuber.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geraldhuber.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geraldhuber.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geraldhuber.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geraldhuber.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geraldhuber.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geraldhuber.wordpress.com&amp;blog=494486&amp;post=124&amp;subd=geraldhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geraldhuber.wordpress.com/2010/03/01/maven-and-eclipse-compiler-version-inheritance/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4de70181aa98a344e9e4a9a674e6bf3b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Gerald Huber</media:title>
		</media:content>
	</item>
		<item>
		<title>Numlock nach Booten</title>
		<link>http://geraldhuber.wordpress.com/2009/05/09/numlock-nach-booten/</link>
		<comments>http://geraldhuber.wordpress.com/2009/05/09/numlock-nach-booten/#comments</comments>
		<pubDate>Sat, 09 May 2009 13:04:33 +0000</pubDate>
		<dc:creator>Gerald Huber</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[numlock]]></category>

		<guid isPermaLink="false">http://geraldhuber.wordpress.com/?p=99</guid>
		<description><![CDATA[Wenn jemand schon mal seinen Nummernblock unter Debian sofort aktiviert haben wollte, sollte hiermit zurecht kommen: Generell für die Konsole gilt: In der letzten Zeile von /etc/console-tools/config: LEDS=+num alternativ: ein Skript erstellen: # /etc/init.d/setleds: set the state of keyboard LEDs (numlock ON) PATH="/sbin:/bin:/usr/sbin:/usr/bin" [ -e /usr/bin/setleds ] &#124;&#124; exit 0 echo -n &#8220;Setting Numlock=ON as [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geraldhuber.wordpress.com&amp;blog=494486&amp;post=99&amp;subd=geraldhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Wenn jemand schon mal seinen Nummernblock unter Debian sofort aktiviert haben wollte, sollte hiermit zurecht kommen:</p>
<ul>
<li>Generell für die Konsole gilt:<br />
<blockquote>
<ul>
<li>In der letzten Zeile von /etc/console-tools/config:
<p><code>LEDS=+num</code></li>
<li>alternativ: ein Skript erstellen:<code><br />
# /etc/init.d/setleds: set the state of keyboard LEDs (numlock ON)<br />
PATH="/sbin:/bin:/usr/sbin:/usr/bin"<br />
[ -e /usr/bin/setleds ] || exit 0</code></p>
<p>echo -n &#8220;Setting Numlock=ON as default&#8230; &#8220;<br />
for TTY in /dev/tty[1-10]; do<br />
setleds -D +num &lt; $TTY &gt; /dev/null<br />
done<br />
echo &#8220;done.&#8221;</p>
<p>exit 0</li>
<li>und einbinden: <code>update-rc.d setleds start 20 2 .</code></li>
</ul>
</blockquote>
</li>
<p style="text-align:right;">Zitat von: <a href="http://linuxwiki.de/TastaturKonfiguration" target="_blank">http://linuxwiki.de/TastaturKonfiguration</a></p>
<li>X Window System<br />
<blockquote><p>Beim X Window System ist es nicht ganz so einfach. Zum Glück gibt es einen fertigen Code den Ihr mit dem Paket numlockx installieren könnt. Ist das Paket auf der Platte genügt es, den Befehl</p>
<p>numlockx on</p>
<p>in die Datei ~/.xinit.rc zu schreiben. Die Datei könnt Ihr notfalls auch gleich selbst anlegen.</p></blockquote>
<p style="text-align:right;">Zitat von: <a href="http://blog.chip.de/chip-linux-blog/kurztipp-numlock-auch-fuer-x-beim-booten-20080218" target="_blank">http://blog.chip.de/chip-linux-blog/kurztipp-numlock-auch-fuer-x-beim-booten-20080218</a></p>
</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geraldhuber.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geraldhuber.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geraldhuber.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geraldhuber.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geraldhuber.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geraldhuber.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geraldhuber.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geraldhuber.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geraldhuber.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geraldhuber.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geraldhuber.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geraldhuber.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geraldhuber.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geraldhuber.wordpress.com/99/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geraldhuber.wordpress.com&amp;blog=494486&amp;post=99&amp;subd=geraldhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geraldhuber.wordpress.com/2009/05/09/numlock-nach-booten/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4de70181aa98a344e9e4a9a674e6bf3b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Gerald Huber</media:title>
		</media:content>
	</item>
		<item>
		<title>Iceweasel &#8211; Printer Preview&#8230;.</title>
		<link>http://geraldhuber.wordpress.com/2009/05/07/iceweasel-printer-preview/</link>
		<comments>http://geraldhuber.wordpress.com/2009/05/07/iceweasel-printer-preview/#comments</comments>
		<pubDate>Thu, 07 May 2009 19:32:48 +0000</pubDate>
		<dc:creator>Gerald Huber</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[OS]]></category>

		<guid isPermaLink="false">http://geraldhuber.wordpress.com/?p=107</guid>
		<description><![CDATA[Da ich gerade erst von KDE auf Gnome umgestiegen bin, bin ich sagen wir&#8230; auch zum ersten mal auf das sehr seltsame Verhalten von Iceweasel unter Debian (Lenny) gestoßen. Folgendes ist mir auch aufgefallen und beinhaltet auch gleich die Lösung: I assume it’s the same in other distributions, but under Debian in Iceweasel, print preview [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geraldhuber.wordpress.com&amp;blog=494486&amp;post=107&amp;subd=geraldhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Da ich gerade erst von KDE auf Gnome umgestiegen bin, bin ich sagen wir&#8230; auch zum ersten mal auf das sehr seltsame Verhalten von Iceweasel unter Debian (Lenny) gestoßen.<br />
Folgendes ist mir auch aufgefallen und beinhaltet auch gleich die Lösung:</p>
<blockquote><p>
I assume it’s the same in other distributions, but under Debian in Iceweasel, print preview by default is lacking the option to scale content and view it in either landscape or portrait. </p></blockquote>
<blockquote><p>From digging around in the configuration I found the print.whileInPrintPreview value to be set to ‘false’. Changing this to ‘true’ enabled scaling and landscape/portrait mode.</p></blockquote>
<blockquote><p> I have no idea why this isn’t enabled by default, but I assume it will be at some point in a future version. The funny thing is, all of this is enabled by default in the Windows build and I’m not sure about OSX.</p></blockquote>
<p>Und da gibt es auch eine weiteres Problem, welches ich auch bestätigen kann:</p>
<blockquote><p>I also found that using a custom scale produces a bug that splits the window into two panes, each with cut-off text. Whenever I close print preview and re-open it, everything looks fine.
</p></blockquote>
<p>Eine sicherlich bessere und schneller Lösung für dieses &#8220;Split-Panel&#8221;-Problem ist es, mal eben die Landsape/Portrait bzw. Hochformat/Querformat zu betätigen.</p>
<p style="text-align:right;">Alle Zitate von: <a href="http://meanjollies.com/?p=24">Mean Jollies Blog &#8211; Firefox’s print preview</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geraldhuber.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geraldhuber.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geraldhuber.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geraldhuber.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geraldhuber.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geraldhuber.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geraldhuber.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geraldhuber.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geraldhuber.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geraldhuber.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geraldhuber.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geraldhuber.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geraldhuber.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geraldhuber.wordpress.com/107/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geraldhuber.wordpress.com&amp;blog=494486&amp;post=107&amp;subd=geraldhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geraldhuber.wordpress.com/2009/05/07/iceweasel-printer-preview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4de70181aa98a344e9e4a9a674e6bf3b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Gerald Huber</media:title>
		</media:content>
	</item>
		<item>
		<title>Realtek ALC1200 Soundprobleme unter Linux (Debian)</title>
		<link>http://geraldhuber.wordpress.com/2009/05/05/realtek-alc1200-soundprobleme-unter-linux-debian/</link>
		<comments>http://geraldhuber.wordpress.com/2009/05/05/realtek-alc1200-soundprobleme-unter-linux-debian/#comments</comments>
		<pubDate>Tue, 05 May 2009 21:15:28 +0000</pubDate>
		<dc:creator>Gerald Huber</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[alc1200]]></category>
		<category><![CDATA[sound]]></category>

		<guid isPermaLink="false">http://geraldhuber.wordpress.com/?p=109</guid>
		<description><![CDATA[Ich habe das Asus M3N78 Pro-Board in meinem Rechner und nutze die Onboard-Soundkarte ALC1200 von Realtek. Leider erkennt das aktuelle Debian Stable (Lenny) diese Soundkarte beim Bootvorgang nicht automatisch. Aber dank Linux und den init-Scripten ist das auch kein Problem. Ich habe mir nun folgendes gebaut: Als erstest sollte man mal überhaupt prüfen ob man [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geraldhuber.wordpress.com&amp;blog=494486&amp;post=109&amp;subd=geraldhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ich habe das Asus M3N78 Pro-Board in meinem Rechner und nutze die Onboard-Soundkarte ALC1200 von Realtek. Leider erkennt das aktuelle Debian Stable (Lenny) diese Soundkarte beim Bootvorgang nicht automatisch. Aber dank Linux und den init-Scripten ist das auch kein Problem.</p>
<p>Ich habe mir nun folgendes gebaut:</p>
<ol>
<li>Als erstest sollte man mal überhaupt prüfen ob man einen Sound aus der Linux-Kiste bekommt. Hierzu als Root mittels ein paar Konsolenkommandos die Soundkarte manuell erkennen lassen:
<ul>
<li><code>rmmod snd_hda_intel</code><br />Entfernt erst mal das zuständige Kernelmodule. Dieses sollte ja eigentlich nicht geladen sein. Aber besser wir überprüfen es mal.</li>
<li><code>modprobe snd_hda_intel</code><br />Dieser Befehl lädt das Soundmodul, welches eigentlich unserer Linuxkiste beibringen sollte wie man unsere gelibeten mp3, etc abspielt.</li>
<li>War die Soundausgabe (z.B. durch Abspielen einer mp3 im mplayer) erfolgreich, können wir zum nächsten Schritt weitergehen.</li>
</ul>
</li>
<li>Hierzu schreiben wir uns ein kleines init-Script für den Bootvorgang, welches wir unter<br /><code>/etc/init.d/intelaudio_start</code><br />ablegen. Das Script sieht dann folgendermaßen aus:<br />
<blockquote><p><code>#!/bin/sh<br />
modprob snd_hda_intel<br />
exit 0</code></p></blockquote>
</li>
<li>Ein weiteres Script (<code>/etc/init.d/intelaudio_stop</code>) soll beim Herunterfahren der Neustart wieder das Kernelmodul sauber entfernen:<br />
<blockquote><p><code>#!/bin/sh<br />
rmmod snd_hda_intel<br />
exit 0</code></p></blockquote>
</li>
<li>Als nächstes müssen wir nun diese beiden Script nur noch in den jeweiligen &#8220;Run Leveln&#8221; starten. Zu den Run-Leveln finden wir im Debian-Anwenderhandbuch folgenden Hinweis:<br />
<blockquote><p>Runlevel:</p>
<p>0</p>
<p>halt, hält das System an, ohne es neu zu starten.</p>
<p>2 bis 5</p>
<p>Multiuser Modus, in diesen Runleveln wird üblicherweise gearbeitet. Ein unverändertes Debian System läuft im Normalbetrieb im Runlevel 2.</p>
<p>6<br />
Dieser Runlevel dient zum Neustarten (Reboot) des Systems.</p></blockquote>
<p style="text-align:right;">Zitat von: <a href="http://debiananwenderhandbuch.de/startstop.html">3.8 Systemstart und -stop bei Debian</a></p>
</li>
<li>Durch das Programm <code>"update-rc.d"</code>, das die Scripte aus <code>/etc/init.d/</code> in die jeweiligen Runlevel-Verzeichnisse (/etc/rc0.d/ bis /etc/rcS.d/) verlinkt und ihnen einen Platz in der Ausführungsreihenfolge zuweist, erhalten wir unseren automatisiterten Start der Scripte zu den jeweiligen Run-Level-Zeitpunkten.</li>
<li>Mit<br />
<blockquote><p><code>update-rc.d /etc/init.d/intelaudio_start start 49 2 .</code></p></blockquote>
<p>Wird das Boot-Script in den Run-Level 2 eingetragen, wobei es an 49 Platz der Bootsequenz gestartet wird. <strong>Die Leerzeichen und der Punkt am Ende sind wichtig!</strong></li>
<li>Gleiches gilt für unser Stop-Script<br />
<blockquote><p>:<code>update-rc.d /etc/init.d/intelaudio_stop start 51 0 6 .</code></p></blockquote>
<p>Hier wird das Script &#8220;intelaudio_stop&#8221; auf Platz 51 (in der Regel sollte man immer 100 minus Startstelle, also 100-49=Stoppplatz wählen)  in den Runlevels 0 und 6 (Shutdown und Reboot) gestartet. <strong>Die Leerzeichen und der Punkt am Ende sind auch hier wichtig!</strong></li>
</ol>
<p>Das war&#8217;s auch schon&#8230;.</p>
<p>Hoffe es hilft dem ein oder anderen&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geraldhuber.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geraldhuber.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geraldhuber.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geraldhuber.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geraldhuber.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geraldhuber.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geraldhuber.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geraldhuber.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geraldhuber.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geraldhuber.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geraldhuber.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geraldhuber.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geraldhuber.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geraldhuber.wordpress.com/109/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geraldhuber.wordpress.com&amp;blog=494486&amp;post=109&amp;subd=geraldhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geraldhuber.wordpress.com/2009/05/05/realtek-alc1200-soundprobleme-unter-linux-debian/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4de70181aa98a344e9e4a9a674e6bf3b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Gerald Huber</media:title>
		</media:content>
	</item>
		<item>
		<title>Featured Articles: &#8220;Werbung die Emotionen weckt&#8221;</title>
		<link>http://geraldhuber.wordpress.com/2008/12/19/featured-articles-werbung-die-emotionen-weckt/</link>
		<comments>http://geraldhuber.wordpress.com/2008/12/19/featured-articles-werbung-die-emotionen-weckt/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 20:31:03 +0000</pubDate>
		<dc:creator>Gerald Huber</dc:creator>
				<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[News from OutaSpace]]></category>
		<category><![CDATA[advertising]]></category>

		<guid isPermaLink="false">http://geraldhuber.wordpress.com/?p=86</guid>
		<description><![CDATA[Ich hätte es nicht besser sagen können: Damit Werbung bei potentiellen Kunden registriert wird, muss zu allererst die Aufmerksamkeit des Betrachters gewonnen werden. [...] Ein wichtiges Mittel um daher im Gedächtnis des Betrachters &#8220;hängen zu bleiben&#8221;, ist das Erreichen der emotionalen Ebene. Ein Schritt der unserer Meinung nach den folgenden Werbe-Kampagnen durchaus eindrucksvoll gelingt. Zieht [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geraldhuber.wordpress.com&amp;blog=494486&amp;post=86&amp;subd=geraldhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ich hätte es nicht besser sagen können:</p>
<blockquote><p>Damit Werbung bei potentiellen Kunden registriert wird, muss zu allererst die <strong>Aufmerksamkeit des Betrachters</strong> gewonnen werden. [...] Ein wichtiges Mittel um daher im Gedächtnis des Betrachters &#8220;hängen zu bleiben&#8221;, ist <strong>das Erreichen der emotionalen Ebene</strong>. Ein Schritt der unserer Meinung nach den folgenden Werbe-Kampagnen durchaus eindrucksvoll gelingt.</p></blockquote>
<p>Zieht euch einfach den Blogeintrag &#8220;<a href="http://webstandard.kulando.de/post/2008/11/05/werbung-die-emotionen-weckt" target="_blank">Werbung die Emotionen weckt</a>&#8221; auf dem  Webstandard-Blog rein von dem auch der Kommentar kommt.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geraldhuber.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geraldhuber.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geraldhuber.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geraldhuber.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geraldhuber.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geraldhuber.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geraldhuber.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geraldhuber.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geraldhuber.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geraldhuber.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geraldhuber.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geraldhuber.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geraldhuber.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geraldhuber.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geraldhuber.wordpress.com&amp;blog=494486&amp;post=86&amp;subd=geraldhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geraldhuber.wordpress.com/2008/12/19/featured-articles-werbung-die-emotionen-weckt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4de70181aa98a344e9e4a9a674e6bf3b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Gerald Huber</media:title>
		</media:content>
	</item>
		<item>
		<title>Meetup&#8230;. Komischer Dienst aber cooles Video</title>
		<link>http://geraldhuber.wordpress.com/2008/12/16/meetup-komischer-dienst-aber-cooles-video/</link>
		<comments>http://geraldhuber.wordpress.com/2008/12/16/meetup-komischer-dienst-aber-cooles-video/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 17:49:15 +0000</pubDate>
		<dc:creator>Gerald Huber</dc:creator>
				<category><![CDATA[News from OutaSpace]]></category>

		<guid isPermaLink="false">http://geraldhuber.wordpress.com/?p=83</guid>
		<description><![CDATA[Ich bin in meiner Recherche über soziale Dienste und Websites mit Bezug zu Communities und sozialen &#8220;Ereignissen&#8221; auf den Dienst Meetup gestoßen. Eigentlich finde ich den Dienst etwas komisch&#8230; aber die Anzahl der &#8220;gehosteten&#8221; Meetings belegen eigentlich eine rege Benutzung des Services. Aber wegen was ich dachte, ich sollte mal darüber bloggen, waren auch eher [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geraldhuber.wordpress.com&amp;blog=494486&amp;post=83&amp;subd=geraldhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ich bin in meiner Recherche über soziale Dienste und Websites mit Bezug zu Communities und sozialen &#8220;Ereignissen&#8221; auf den Dienst <a class="zem_slink" title="Meetup" rel="homepage" href="http://www.meetup.com">Meetup</a> gestoßen.</p>
<p>Eigentlich finde ich den Dienst etwas komisch&#8230; aber die Anzahl der &#8220;gehosteten&#8221; Meetings belegen eigentlich eine rege Benutzung des Services.</p>
<p>Aber wegen was ich dachte, ich sollte mal darüber bloggen, waren auch eher die Videos die Meetup &#8220;erklären&#8221; sollen.</p>
<p>Sie sind direkt auf der <a href="http://www.meetup.com/" target="_blank">Meetup</a>-Seite  und dann die Videos &#8220;New to Meetup?&#8221; zufinden&#8230; *looool*</p>
<div class="zemanta-pixie" style="margin-top:10px;height:15px;"><a class="zemanta-pixie-a" title="Zemified by Zemanta" href="http://reblog.zemanta.com/zemified/25ff3128-7ebb-4c08-86e5-a45d447b9f49/"><img class="zemanta-pixie-img" style="border:medium none;float:right;" src="http://img.zemanta.com/reblog_c.png?x-id=25ff3128-7ebb-4c08-86e5-a45d447b9f49" alt="Reblog this post [with Zemanta]" /></a></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geraldhuber.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geraldhuber.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geraldhuber.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geraldhuber.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geraldhuber.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geraldhuber.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geraldhuber.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geraldhuber.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geraldhuber.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geraldhuber.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geraldhuber.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geraldhuber.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geraldhuber.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geraldhuber.wordpress.com/83/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geraldhuber.wordpress.com&amp;blog=494486&amp;post=83&amp;subd=geraldhuber&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geraldhuber.wordpress.com/2008/12/16/meetup-komischer-dienst-aber-cooles-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4de70181aa98a344e9e4a9a674e6bf3b?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Gerald Huber</media:title>
		</media:content>

		<media:content url="http://img.zemanta.com/reblog_c.png?x-id=25ff3128-7ebb-4c08-86e5-a45d447b9f49" medium="image">
			<media:title type="html">Reblog this post [with Zemanta]</media:title>
		</media:content>
	</item>
	</channel>
</rss>
