<?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>Webscriptz.be &#187; linux</title>
	<atom:link href="http://webscriptz.be/tags/linux/feed" rel="self" type="application/rss+xml" />
	<link>http://webscriptz.be</link>
	<description></description>
	<lastBuildDate>Thu, 13 Oct 2011 18:16:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Fedora Core &#8211; virtual hosts httpd</title>
		<link>http://webscriptz.be/2011/03/25/configuring-virtual-hosts-in-apache/382</link>
		<comments>http://webscriptz.be/2011/03/25/configuring-virtual-hosts-in-apache/382#comments</comments>
		<pubDate>Thu, 24 Mar 2011 23:06:20 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[tutorials]]></category>
		<category><![CDATA[127.0.0.1]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[apache2]]></category>
		<category><![CDATA[bind9]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[hosts]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[local domain name]]></category>
		<category><![CDATA[name-based virtual host]]></category>
		<category><![CDATA[nano]]></category>
		<category><![CDATA[virtual hosts]]></category>

		<guid isPermaLink="false">http://webscriptz.be/?p=382</guid>
		<description><![CDATA[I&#8217;ve reinstalled my pc with Fedora Core recently, because of the extended SELinux and more tools that are at my disposal. A problem I always had with ubuntu was the configuration of Apache virtual hosts. Once they where installed I needed to put them into the host file and each time I reconnected to a [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve reinstalled my pc with Fedora Core recently, because of the extended SELinux and more tools that are at my disposal. A problem I always had with ubuntu was the configuration of Apache virtual hosts. Once they where installed I needed to put them into the host file and each time I reconnected to a network the NetworkManager rewrote the hosts file annoying me and the fact that if one was configured localhost would also begin pointing to it, a rather nasty thing.</p>
<p>First you need to open the console and login with your root user, type su and fedora will already know what to do.</p>
<p>You need to shutdown the httpd servic deamon with the command :<br />
<!--DEVFMTCODE--><pre class="devcodeblock" title="DOS"><div class="devcodeoverflow"><ol><li>/etc/init.d/httpd stop</li></ol></div></pre><!--END_DEVFMTCODE--></p>
<p>You will have to open /etc/httpd/conf/httpd.conf, once opened you will have to locate the section on virtual hosts and you should see an example that is already commented out., I edited the files with nano in the console.</p>
<p><!--DEVFMTCODE--><pre class="devcodeblock" title="DOS"><div class="devcodeoverflow"><ol><li>### Section 3: Virtual Hosts</li></ol></div></pre><!--END_DEVFMTCODE--></p>
<p>Instead of telling you which lines to uncomment, I&#8217;m going to show you below, the stanzas to add to the Virtual Host section to get companyABC.com and companyDEF.com websites running:<br />
<!--DEVFMTCODE--><pre class="devcodeblock" title="DOS"><div class="devcodeoverflow"><ol><li>#</li><li># Virtual hosts</li><li>#</li><li>&nbsp;</li><li># Virtual host Default Virtual Host</li><li><span style="color: #33cc33;">&lt;</span>VirtualHost *<span style="color: #33cc33;">&gt;</span></li><li>DocumentRoot /var/www/html/</li><li>ErrorLog logs/error_log</li><li>ServerAdmin root<span style="color: #33cc33;">@</span>localhost</li><li>&nbsp;</li><li>&nbsp;</li><li>&nbsp;</li><li>ServerSignature email</li><li>TransferLog logs/access_log</li><li>DirectoryIndex index.php index.html index.htm index.shtml</li><li>&nbsp;</li><li>&nbsp;</li><li>SSLEngine off</li><li>SSLCertificateFile /etc/pki/tls/certs/localhost.crt</li><li>SSLCertificateKeyFile /etc/pki/tls/private/localhost.key</li><li>&nbsp;</li><li>SSLCACertificateFile /etc/pki/tls/certs/ca-bundle.crt</li><li>&nbsp;</li><li>SSLOptions</li><li>LogFormat &quot;None&quot;</li><li>TransferLog logs/access_log</li><li>ErrorLog logs/error_log</li><li>LogLevel debug</li><li>HostNameLookups off</li><li>&nbsp;</li><li>&nbsp;</li><li>&nbsp;</li><li>&nbsp;</li><li><span style="color: #33cc33;">&lt;</span>/VirtualHost<span style="color: #33cc33;">&gt;</span></li><li>&nbsp;</li><li># Virtual host resume.loc</li><li><span style="color: #33cc33;">&lt;</span>VirtualHost 127.0.0.1<span style="color: #33cc33;">&gt;</span></li><li>DocumentRoot /var/www/html/mdw/resume</li><li>ErrorLog logs/error_log</li><li>ServerAdmin root<span style="color: #33cc33;">@</span>localhost</li><li>ServerName resume.loc</li><li>&nbsp;</li><li>&nbsp;</li><li>ServerSignature email</li><li>TransferLog logs/access_log</li><li>DirectoryIndex index.html index.php index.shtml</li><li>&nbsp;</li><li><span style="color: #33cc33;">&lt;</span>Directory &quot;/var/www/html/mdw/resume/&quot;<span style="color: #33cc33;">&gt;</span></li><li>Options all</li><li>&nbsp;</li><li>AllowOverride all</li><li>&nbsp;</li><li>&nbsp;</li><li>&nbsp;</li><li><span style="color: #33cc33;">&lt;</span>/Directory<span style="color: #33cc33;">&gt;</span></li><li>&nbsp;</li><li>&nbsp;</li><li>SSLEngine off</li><li>SSLCertificateFile /etc/pki/tls/certs/localhost.crt</li><li>SSLCertificateKeyFile /etc/pki/tls/private/localhost.key</li><li>&nbsp;</li><li>SSLCACertificateFile /etc/pki/tls/certs/ca-bundle.crt</li><li>&nbsp;</li><li>SSLOptions</li><li>LogFormat &quot;None&quot;</li><li>TransferLog logs/access_log</li><li>ErrorLog logs/error_log</li><li>LogLevel error</li><li>HostNameLookups on</li><li>&nbsp;</li><li>&nbsp;</li><li>&nbsp;</li><li>&nbsp;</li><li><span style="color: #33cc33;">&lt;</span>/VirtualHost<span style="color: #33cc33;">&gt;</span></li><li>&nbsp;</li><li># Virtual host linker</li><li><span style="color: #33cc33;">&lt;</span>VirtualHost 127.0.0.1<span style="color: #33cc33;">&gt;</span></li><li>DocumentRoot /var/www/html/mdw/linkerv2/</li><li>ErrorLog logs/error_log</li><li>ServerAdmin root<span style="color: #33cc33;">@</span>localhost</li><li>ServerName linker.loc</li><li>&nbsp;</li><li>&nbsp;</li><li>ServerSignature email</li><li>TransferLog logs/access_log</li><li>DirectoryIndex index.html index.php index.shtml</li><li>&nbsp;</li><li>&nbsp;</li><li>SSLEngine off</li><li>SSLCertificateFile /etc/pki/tls/certs/localhost.crt</li><li>SSLCertificateKeyFile /etc/pki/tls/private/localhost.key</li><li>&nbsp;</li><li>SSLCACertificateFile /etc/pki/tls/certs/ca-bundle.crt</li><li>&nbsp;</li><li>SSLOptions</li><li>LogFormat &quot;None&quot;</li><li>TransferLog logs/access_log</li><li>ErrorLog logs/error_log</li><li>LogLevel error</li><li>HostNameLookups on</li><li>&nbsp;</li><li>&nbsp;</li><li>&nbsp;</li><li>&nbsp;</li><li><span style="color: #33cc33;">&lt;</span>/VirtualHost<span style="color: #33cc33;">&gt;</span></li><li>&nbsp;</li><li># Virtual host Virtual Host 1</li><li><span style="color: #33cc33;">&lt;</span>VirtualHost 127.0.0.1<span style="color: #33cc33;">&gt;</span></li><li>DocumentRoot /var/www/html/mdw/site</li><li>ErrorLog logs/error_log</li><li>ServerAdmin root<span style="color: #33cc33;">@</span>localhost</li><li>ServerName mdw.loc</li><li>&nbsp;</li><li>&nbsp;</li><li>ServerSignature email</li><li>TransferLog logs/access_log</li><li>DirectoryIndex index.html index.php index.shtml</li><li>&nbsp;</li><li>&nbsp;</li><li>SSLEngine off</li><li>SSLCertificateFile /etc/pki/tls/certs/localhost.crt</li><li>SSLCertificateKeyFile /etc/pki/tls/private/localhost.key</li><li>&nbsp;</li><li>SSLCACertificateFile /etc/pki/tls/certs/ca-bundle.crt</li><li>&nbsp;</li><li>SSLOptions</li><li>&nbsp;</li><li>TransferLog logs/access_log</li><li>ErrorLog logs/error_log</li><li>LogLevel error</li><li>HostNameLookups on</li><li>&nbsp;</li><li>&nbsp;</li><li>&nbsp;</li><li>&nbsp;</li><li><span style="color: #33cc33;">&lt;</span>/VirtualHost<span style="color: #33cc33;">&gt;</span></li><li>&nbsp;</li><li> </li></ol></div></pre><!--END_DEVFMTCODE--></p>
<p>After you have added the host(s), save the file. At this point, you will need to add the appropriate records to your DNS server to make these domains reachable by anyone on the network. If you have no access to a DNS server (BIND9), or you just want to test the configuration, just edit your /etc/hosts file. Here is what my file looks like:</p>
<p><!--DEVFMTCODE--><pre class="devcodeblock" title="DOS"><div class="devcodeoverflow"><ol><li># <span style="color: #00b100; font-weight: bold;">Do</span> <span style="color: #000000; font-weight: bold;">not</span> remove the following line, or various programs</li><li># that require network functionality will fail.</li><li>127.0.0.1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; localhost.localdomain localhost</li><li>127.0.0.1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; host1.loc</li><li>127.0.0.1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; host2.loc</li><li></li></ol></div></pre><!--END_DEVFMTCODE--><br />
Once hosts is saved you just restart your server and everything should work without a problem</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://webscriptz.be/2011/03/25/configuring-virtual-hosts-in-apache/382" target="_blank"><img src="http://webscriptz.be/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://webscriptz.be/2011/03/25/configuring-virtual-hosts-in-apache/382" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2011/03/25/configuring-virtual-hosts-in-apache/382/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Reclaim partial select in firefox</title>
		<link>http://webscriptz.be/2010/12/28/reclaim-partial-select-in-firefox/366</link>
		<comments>http://webscriptz.be/2010/12/28/reclaim-partial-select-in-firefox/366#comments</comments>
		<pubDate>Tue, 28 Dec 2010 18:15:45 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[post]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://webscriptz.be/2010/12/28/reclaim-partial-select-in-firefox/366</guid>
		<description><![CDATA[In the windows version of Firefox you can select a single word of your address, in ubuntu it&#8217;s been changed and here&#8217;s the fix: type: &#8216;about:config&#8217; in your address-bar and click that you&#8217;ll be careful with the settings search for: &#8216;browser.urlbar.doubleClickSelectsAll&#8217; and double click it You don&#8217;t have to relaunch Firefox for the browser to [...]]]></description>
			<content:encoded><![CDATA[<p>In the  windows version of Firefox you can select a single word of your address, in ubuntu it&#8217;s been changed and here&#8217;s the fix:</p>
<p>type: &#8216;about:config&#8217; in your address-bar and click that you&#8217;ll be careful with the settings<br />
search for: &#8216;browser.urlbar.doubleClickSelectsAll&#8217; and double click it</p>
<p>You don&#8217;t have to relaunch Firefox for the browser to notice the change.</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://webscriptz.be/2010/12/28/reclaim-partial-select-in-firefox/366" target="_blank"><img src="http://webscriptz.be/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://webscriptz.be/2010/12/28/reclaim-partial-select-in-firefox/366" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2010/12/28/reclaim-partial-select-in-firefox/366/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reclaim Ubuntu firefox backspace key</title>
		<link>http://webscriptz.be/2010/11/07/reclaim-ubuntu-firefox-backspace-key/341</link>
		<comments>http://webscriptz.be/2010/11/07/reclaim-ubuntu-firefox-backspace-key/341#comments</comments>
		<pubDate>Sun, 07 Nov 2010 13:59:25 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[post]]></category>
		<category><![CDATA[backspace]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://webscriptz.be/2010/11/07/reclaim-ubuntu-firefox-backspace-key/341</guid>
		<description><![CDATA[Firefox and every other browser on windows features a &#8216;previous page hotkey&#8217;, the backspace key alas the fact that firefox on ubuntu isn&#8217;t as feature rich, so here a work around: Go to “about:config”, you know to inspect the sqllite db firefox stores everything in. `Filter` for ‘browser.backspace_action’ and change its value to 0 (zero). [...]]]></description>
			<content:encoded><![CDATA[<p>Firefox and every other browser on windows features a &#8216;previous page hotkey&#8217;, the backspace key alas the fact that firefox on ubuntu isn&#8217;t as feature rich, so here a work around:</p>
<p>Go to “about:config”, you know to inspect the sqllite db firefox stores everything in.<br />
`Filter` for ‘browser.backspace_action’ and change its value to 0 (zero).</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://webscriptz.be/2010/11/07/reclaim-ubuntu-firefox-backspace-key/341" target="_blank"><img src="http://webscriptz.be/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://webscriptz.be/2010/11/07/reclaim-ubuntu-firefox-backspace-key/341" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2010/11/07/reclaim-ubuntu-firefox-backspace-key/341/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu just go better</title>
		<link>http://webscriptz.be/2010/11/07/ubuntu-just-go-better/340</link>
		<comments>http://webscriptz.be/2010/11/07/ubuntu-just-go-better/340#comments</comments>
		<pubDate>Sun, 07 Nov 2010 13:12:53 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[post]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://webscriptz.be/2010/11/07/ubuntu-just-go-better/340</guid>
		<description><![CDATA[All my coding is done on linux, on the ubuntu distro which isn&#8217;t always that nice for portables i might add. Gnome bugs me much for it&#8217;s problem to properly control the brightness on my portable but apart from that it&#8217;s nice. Now, a team of developers has brought a mac osx like feature to [...]]]></description>
			<content:encoded><![CDATA[<p>All my coding is done on linux, on the ubuntu distro which isn&#8217;t always that nice for portables i might add. Gnome bugs me much for it&#8217;s problem to properly control the brightness on my portable but apart from that it&#8217;s nice.</p>
<p>Now, a team of developers has brought a mac osx like feature to ubuntu or gnome: gnome-do. check it out, install and enjoy:</p>
<p><a href="http://do.davebsd.com/index.shtml" rel="nofollow">http://do.davebsd.com/index.shtml</a></p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://webscriptz.be/2010/11/07/ubuntu-just-go-better/340" target="_blank"><img src="http://webscriptz.be/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://webscriptz.be/2010/11/07/ubuntu-just-go-better/340" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2010/11/07/ubuntu-just-go-better/340/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 10.10 has been released a few day&#8230;</title>
		<link>http://webscriptz.be/2010/10/18/ubuntu-10-10-has-been-released-a-few-day/319</link>
		<comments>http://webscriptz.be/2010/10/18/ubuntu-10-10-has-been-released-a-few-day/319#comments</comments>
		<pubDate>Mon, 18 Oct 2010 20:01:13 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[link]]></category>
		<category><![CDATA[dock]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[nice things]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://webscriptz.be/2010/10/18/ubuntu-10-10-has-been-released-a-few-day/319</guid>
		<description><![CDATA[Ubuntu 10.10 has been released a few days ago and I found a few nice things to do with it: http://www.omgubuntu.co.uk/2010/10/customizing-ubuntu-10-10-with-a-dock-new-icon-theme-effects-global-menu-and-more/ Share on Facebook]]></description>
			<content:encoded><![CDATA[<p>Ubuntu 10.10 has been released a few days ago and I found a few nice things to do with it: <a href="http://www.omgubuntu.co.uk/2010/10/customizing-ubuntu-10-10-with-a-dock-new-icon-theme-effects-global-menu-and-more/" rel="nofollow">http://www.omgubuntu.co.uk/2010/10/customizing-ubuntu-10-10-with-a-dock-new-icon-theme-effects-global-menu-and-more/</a></p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://webscriptz.be/2010/10/18/ubuntu-10-10-has-been-released-a-few-day/319" target="_blank"><img src="http://webscriptz.be/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://webscriptz.be/2010/10/18/ubuntu-10-10-has-been-released-a-few-day/319" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2010/10/18/ubuntu-10-10-has-been-released-a-few-day/319/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux kernal map</title>
		<link>http://webscriptz.be/2009/03/21/linux-kernal-map/225</link>
		<comments>http://webscriptz.be/2009/03/21/linux-kernal-map/225#comments</comments>
		<pubDate>Sat, 21 Mar 2009 09:46:48 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[transparent]]></category>

		<guid isPermaLink="false">http://webscriptz.be/?p=225</guid>
		<description><![CDATA[Linux is a facinating OS but not always transparant to everybody, certainly the kernel has that problem. This linux map will help you figure out the linux kernel and has documentation and everything to it. Kernel Map Share on Facebook]]></description>
			<content:encoded><![CDATA[<p>Linux is a facinating OS but not always transparant to everybody, certainly the kernel has that problem. This linux map will help you figure out the linux kernel and has documentation and everything to it.</p>
<p><a href="http://www.makelinux.net/kernel_map">Kernel Map</a></p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://webscriptz.be/2009/03/21/linux-kernal-map/225" target="_blank"><img src="http://webscriptz.be/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://webscriptz.be/2009/03/21/linux-kernal-map/225" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2009/03/21/linux-kernal-map/225/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ubuntu to lame</title>
		<link>http://webscriptz.be/2008/08/20/ubuntu-to-lame/96</link>
		<comments>http://webscriptz.be/2008/08/20/ubuntu-to-lame/96#comments</comments>
		<pubDate>Tue, 19 Aug 2008 23:26:31 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[lame]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://webscriptz.be/?p=96</guid>
		<description><![CDATA[Now that I&#8217;m using Ubuntu 8.04 on my laptop as primary system, I had the chance to check out many things on it and it displeases me greatly. The bugs I found: Firefox is still running even if everything is closed Movie player crashes if you fast forward a bit emerald and compiz run with [...]]]></description>
			<content:encoded><![CDATA[<p>Now that I&#8217;m using Ubuntu 8.04 on my laptop as primary system, I had the chance to check out many things on it and it displeases me greatly. The bugs I found:</p>
<ol style="padding-left: 30px;">
<li>Firefox is still running even if everything is closed</li>
<li>Movie player crashes if you fast forward a bit</li>
<li>emerald and compiz run with problems</li>
<li>Less control over what you install rails is at version 2.1.x and I updated but still if I run<br />
<!--DEVFMTCODE--><pre class="devcodeblock" title="Ruby"><div class="devcodeoverflow"><ol><li>rails appname </li></ol></div></pre><!--END_DEVFMTCODE--></p>
<p>and then</p>
<p>firefox 0.0.0.0:3000</li>
</ol>
<p style="padding-left: 30px;">I get rails version 2.0.2 and I already reinstalled ubuntu just for that</p>
<p style="padding-left: 30px;">
<p>Ubuntu has issues and if I can get gentoo running on my laptop I&#8217;ll change gladly. Unfortunantly gentoo has problems in virtualbox something with xorg server so I have to check that out.</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://webscriptz.be/2008/08/20/ubuntu-to-lame/96" target="_blank"><img src="http://webscriptz.be/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://webscriptz.be/2008/08/20/ubuntu-to-lame/96" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2008/08/20/ubuntu-to-lame/96/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to build and customize your own PBX with Asterisk</title>
		<link>http://webscriptz.be/2008/08/19/how-to-build-and-customize-your-own-pbx-with-asterisk/93</link>
		<comments>http://webscriptz.be/2008/08/19/how-to-build-and-customize-your-own-pbx-with-asterisk/93#comments</comments>
		<pubDate>Tue, 19 Aug 2008 08:31:20 +0000</pubDate>
		<dc:creator>webscriptz</dc:creator>
				<category><![CDATA[tutorials]]></category>
		<category><![CDATA[asterisk]]></category>
		<category><![CDATA[call]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[pbx]]></category>
		<category><![CDATA[telephone]]></category>

		<guid isPermaLink="false">http://webscriptz.be/2008/08/19/feature-how-to-build-and-customize-your-own-pbx-with-asterisk-updated-geekcom/</guid>
		<description><![CDATA[Linux can do many thing, it can also be a telephone central which is quit cool. Geek.com has a nice article about it and it&#8217;s fun to experiment with Feature: How to build and customize your own PBX with Asterisk &#8211; UPDATED &#124; Geek.com. Share on Facebook]]></description>
			<content:encoded><![CDATA[<p>Linux can do many thing, it can also be a telephone central which is quit cool. Geek.com has a nice article about it and it&#8217;s fun to experiment with</p>
<p><a href="http://www.geek.com/feature-how-to-build-and-customize-your-own-pbx-with-asterisk-20080812/">Feature: How to build and customize your own PBX with Asterisk &#8211; UPDATED | Geek.com</a>.</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://webscriptz.be/2008/08/19/how-to-build-and-customize-your-own-pbx-with-asterisk/93" target="_blank"><img src="http://webscriptz.be/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://webscriptz.be/2008/08/19/how-to-build-and-customize-your-own-pbx-with-asterisk/93" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://webscriptz.be/2008/08/19/how-to-build-and-customize-your-own-pbx-with-asterisk/93/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

