<?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>Digital Base - Blog &#187; ubuntu</title>
	<atom:link href="http://www.digitalbase.eu/blog/tag/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.digitalbase.eu/blog</link>
	<description>A blog about webdesign, PHP, development and IT</description>
	<lastBuildDate>Mon, 10 May 2010 16:16:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Developer Faster with lightning fast Eclipse</title>
		<link>http://www.digitalbase.eu/blog/developer-faster-with-lightning-fast-eclipse/</link>
		<comments>http://www.digitalbase.eu/blog/developer-faster-with-lightning-fast-eclipse/#comments</comments>
		<pubDate>Sat, 06 Dec 2008 11:24:56 +0000</pubDate>
		<dc:creator>Gijs Nelissen</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.digitalbase.eu/blog/?p=127</guid>
		<description><![CDATA[When maintaining &#38; developming large web applications you might notice that eclipse slows up a bit. Building workspace, showing the autocomplete or syntax highlighting might take a while to load. The solution for this is to optimise your eclipse.ini and tell your favourite PHP development IDE to use more memory.
After installing eclipse you open the [...]]]></description>
			<content:encoded><![CDATA[<p>When maintaining &amp; developming large web applications you might notice that eclipse slows up a bit. Building workspace, showing the autocomplete or syntax highlighting might take a while to load. The solution for this is to optimise your eclipse.ini and tell your favourite PHP development IDE to use more memory.</p>
<p>After installing eclipse you open the eclipse.ini in the root. If you followed <a href="http://www.digitalbase.eu/blog/installing-eclipse-latest-php-development-tools-pdt-20/" target="_blank">my previous post</a>, the default settings should be something like this :</p>

<div class="wp_syntax"><div class="code"><pre class="ini" style="font-family:monospace;">-startup
plugins/org.eclipse.equinox.launcher_1.0.101.R34x_v20080819.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.0.101.R34x_v20080805
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256m
-vmargs
-Xms40m
-Xmx256m</pre></div></div>

<p>This means eclipse will use in between 40 and 256mb. These default settings will allow you to run Eclipse on a pre historic PII with less then 1GB ram, although i wouldn&#8217;t recommend that.</p>
<p>Most of you, especially developers working in a development agency, will have powerful workstations. So lets tell eclipse to use a bit more resources</p>

<div class="wp_syntax"><div class="code"><pre class="ini" style="font-family:monospace;">-startup
plugins/org.eclipse.equinox.launcher_1.0.101.R34x_v20080819.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.0.101.R34x_v20080805
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
-vmargs
-Xms256m
-Xmx1024m
-XX:MaxPermSize<span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;">256m</span></pre></div></div>

<p>I changed the xms, xmx and xx:maxpermsize settings.</p>
<p>What does it mean ?</p>
<ul>
<li> Xms sets the initial Java heap size</li>
<li>Xmx sets the maximum Java heap size</li>
<li>XX:MaxPermSize allows for the JVM to be able to grow the PermSize to the amount specified. Initially when the IDE is loaded, the MaxPermSize will still be the default value but will not actually take up that amount until it is needed.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalbase.eu/blog/developer-faster-with-lightning-fast-eclipse/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Custom .debs for Symfony (1.0/1.1 &amp; 1.2) for Debian/Ubuntu</title>
		<link>http://www.digitalbase.eu/blog/custom-debs-for-symfony-1-0-1-1-1-2-for-debian-ubuntu/</link>
		<comments>http://www.digitalbase.eu/blog/custom-debs-for-symfony-1-0-1-1-1-2-for-debian-ubuntu/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 13:33:25 +0000</pubDate>
		<dc:creator>Gijs Nelissen</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[System Administration]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[symfony]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://dibav3.gnelisse.desktop01/blog/?p=86</guid>
		<description><![CDATA[I created some custom .debs that are useable for everyone on debian/ubuntu using aptitude allowing you to test/try different versions of symfony before making your choice.]]></description>
			<content:encoded><![CDATA[<h1>Installing multiple versions of symfony</h1>
<p>As i wanted to test some of my projects compability against <a href="http://www.symfony-project.org/book/1_1/" target="_blank">symfony 1.1</a>, i wanted to install multiple symfony versions on my system. The main reason for this i want to keep the default symfony installation on my desktop as well as on our production environment.Â</p>
<p>Now as you know, we are working with 5 workstations and multiple servers. So it&#8217;s a real pain in the *** doing this stuff all over again on each of those machines, so i decided to create some .debs.</p>
<h2>The Solution</h2>
<p>Thanks to a <a title="Howto Install Multiple Versions Of Symfony" href="http://trac.symfony-project.org/wiki/InstallingMultipleVersionsOfSymfony" target="_blank">great guide posted on the Symfony Wiki</a> i was up &amp; running in under 5 minutes. I had to check out the different versions, create some folders to hold the different symfony installs and create some symlinks to make sure you can use those different versions by command line.</p>
<h2>The Packages</h2>
<p>I created 3 different packages for each version of symfony. You can install as many as you like, as those will all use a different path. <a title="Different version of symfony deb" href="http://dump.digitalbase.eu/deb/" target="_blank">Direct Link</a> .</p>
<ul>
<li>db-symfony-1.0.0.17 (<a title="Download Symfony 1.0 (deb package)" href="http://dump.digitalbase.eu/deb/db-symfony-1.0-0.11220025079.deb">download link</a> )</li>
<li>db-symfony-1.1.1 (<a title="Download Digital Base Symfony 1.1 deb" href="http://dump.digitalbase.eu/deb/db-symfony-1.1-0.11220024780.deb" target="_blank">download link</a> )</li>
<li>db-symfony-1.2 (<a title="Symfony 1.2 download" href="http://dump.digitalbase.eu/deb/db-symfony-1.2-0.11220022677.deb">download link</a> )</li>
</ul>
<p>I tested these packages on an Ubuntu Hardy &amp; Feisty and it works like a charm. Let me know if it doesn&#8217;t for you.</p>
<p>If you have a hard time figuring out which version of the symfony framework you want to use for your project, <a title="Which version of symfony for your project" href="http://www.symfony-project.org/blog/2008/08/26/which-version-of-symfony-for-your-next-project" target="_blank">check this post</a></p>
<h2>Show me the magic</h2>
<p>You can see you now have 3 (or 4) different versions of Symfony available to you.Â</p>
<p><img title="Multiple Version of Symfony On the same system" src="/uploads/assets//blog/screens/screenshot1.png" border="0" alt=" Multiple Version of Symfony On the same system" width="604" height="258" /></p>
<h2>Configuration</h2>
<p>Now the hardest part (if you can even call it that). Howto tell your symfony application which symfony to use ? Just go to your applications config/config.php and update the paths to the corresponding version.</p>
<p>[code]#52[/code]</p>
<p>Don&#8217;t forget to also update the /js path in your <a href="http://httpd.apache.org/docs/1.3/vhosts/" target="_blank">virtual host configuration</a> , change the version to the one you want to use for this project.</p>
<blockquote><p>Alias /sf /usr/share/php/symfony_1.0/data/web/sf</p></blockquote>
<p>Feedback/Suggestions welcome, just send an email to <a title="info@digitalbase.eu" href="mailto:info@digitalbase.eu">info@digitalbase.eu</a> Â</p>
<p>Update : if you have a problem opening PHP files (error occured during Selection Job Title) here is <a title="Error During &quot;Selection Job Title&quot;" href="http://www.digitalbase.eu/blog/bug-in-eclipse3-4-pdt-2-0-all-platforms">my follow-up post</a> (the fix)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalbase.eu/blog/custom-debs-for-symfony-1-0-1-1-1-2-for-debian-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu : Thunderbird 2.x + Lighning : Sidebar Problem</title>
		<link>http://www.digitalbase.eu/blog/</link>
		<comments>http://www.digitalbase.eu/blog/#comments</comments>
		<pubDate>Thu, 01 Jan 1970 01:00:00 +0000</pubDate>
		<dc:creator>Gijs Nelissen</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[System Administration]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[thunderbird]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://dibav3.gnelisse.desktop01/blog/?p=85</guid>
		<description><![CDATA[When using thunderbird 2.x and migrating profiles from one computer to another, i bumped into a lightning+thunderbird error where the calendar sidebar was shown on the left side without a way to disable/hide this bar]]></description>
			<content:encoded><![CDATA[<h2>The Problem </h2>
<p>
When using thunderbird 2.x and migrating profiles from one computer to another, i bumped into a lightning + thunderbird error where the calendar sidebar was shown on the left side without a way to disable/hide this bar.
</p>
<p>
<img src="/uploads/assets//blog/thunderbirdproblem.jpg" border="0" alt=" thunderbird + lightning sidebar bug" title=" thunderbird + lightning sidebar bug" width="650" height="566" />
</p>
<p>
That problem is just way to irritating to ignore, as it would cause thunderbird to behave unexpectedly when browsing through email etc&#8230;This is clearly not normal behaviour and shouldn&#39;t happen.
</p>
<h2>More details </h2>
<p>
My google searches tell me this bug happens only when using <a href="http://www.mozilla.com/en-US/thunderbird/" target="_blank" title="Thunderbird 2.x">Thunderbird 2.x</a>  and <a href="http://www.mozilla.org/projects/calendar/lightning/" target="_blank" title="Thunderbird Lightning Extension">Lightning 0.8+</a>  on an Ubuntu / Debian platform. Please <a href="mailto:info@digitalbase.eu">tell me</a>  if you reported this problem on another environment.
</p>
<h2>The fix </h2>
<p>
First uninstall lightning and close down thunderbird
</p>
<p>
Then install the &quot;<a href="http://packages.ubuntu.com/gutsy/libstdc++5" target="_blank" title="libstdc in gutsy">libstdc++5</a> &quot; package (it&#39;s in the <a href="http://packages.ubuntu.com/gutsy/" target="_blank" title="hardy heron apt repository">official aptitude repositories</a> ) so just :
</p>
<p>
[code]apt-getinstalllibstdc[/code] 
</p>
<p>
Now reinstall lightning and fire up thunderbird (you can use synaptic to install lightning). That&#39;s it, a real easy fix for a simple problem. 
</p>
<h2>Some more info :</h2>
<p>
<a href="http://ubuntuforums.org/showthread.php?t=624655" target="_blank" title="ubuntuforums - thunderbird + lightning problem"><br />
http://ubuntuforums.org/showthread.php?t=624655</a>  : a thread on ubuntu forums that suggests to uninstall thunderbird + lightning and tells you to go for <a href="http://ubuntuzilla.wiki.sourceforge.net/" target="_blank" title="Ubuntuzilla">ubuntuzilla</a> , a pretty heavy workaround/fix if you ask me.Â</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalbase.eu/blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Frustration : Ubuntu Hardy Heron and Eclipse PDT</title>
		<link>http://www.digitalbase.eu/blog/my-frustration-ubuntu-hardy-heron-and-eclipse-pdt/</link>
		<comments>http://www.digitalbase.eu/blog/my-frustration-ubuntu-hardy-heron-and-eclipse-pdt/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 13:30:00 +0000</pubDate>
		<dc:creator>Gijs Nelissen</dc:creator>
				<category><![CDATA[All]]></category>
		<category><![CDATA[System Administration]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[pdt]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://dibav3.gnelisse.desktop01/blog/?p=75</guid>
		<description><![CDATA[As a PHP developer we use eclipse PDT or PHPEclipse for development, too bad the ubuntu maintainers don't care about eclipse users...]]></description>
			<content:encoded><![CDATA[<p>
As PHP developers we use ubuntu (now trying Hardy Heron 8.04), but for Eclipse PDT you need Eclipse 3.3 (that is not included in ubuntu repository). Eclipse 3.3 is about 1 year old, and 3.4 will be in testing pretty soon, so for me it&#39;s really not clear why Eclipse 3.3 is not the default choice for Ubuntu 8.04.
</p>
<p>
So we include Firefox 3b05 by default, but we are using an old version of Eclipse ?
</p>
<p>
Please <a href="http://brainstorm.ubuntu.com/idea/1265/" target="_blank" title="Ubuntu Brainstorm - Eclipse 3.3">vote for the idea to include 3.3 by default</a> <a href="http://brainstorm.ubuntu.com/idea/1265/" target="_blank" title="Eclipse 3.3 in ubuntu ">or provide an easy way for users to upgrade.<br />
</a>
</p>
<p>
More information at <a href="https://bugs.launchpad.net/debian/+source/eclipse/+bug/123064" target="_blank" title="Ubuntu Launchpad Eclipse 3.3">launchpad bug #123064</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalbase.eu/blog/my-frustration-ubuntu-hardy-heron-and-eclipse-pdt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>setup a vpn server (pptp) server under ubuntu</title>
		<link>http://www.digitalbase.eu/blog/setup-a-vpn-server-pptp-server-under-ubuntu/</link>
		<comments>http://www.digitalbase.eu/blog/setup-a-vpn-server-pptp-server-under-ubuntu/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 11:00:00 +0000</pubDate>
		<dc:creator>Jan De Coster</dc:creator>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vpn]]></category>

		<guid isPermaLink="false">http://dibav3.gnelisse.desktop01/blog/?p=49</guid>
		<description><![CDATA[this is a howto to get a pptp (vpn) server working on the ubuntu server system. ]]></description>
			<content:encoded><![CDATA[<p>it&#8217;s actually quite easy to setup a pptp vpn server for windows/*nix client on a ubuntu serverÂ</p>
<p>first off all we install pptpd ( PoPToP Point to Point Tunneling Server)</p>
<p>[code]install pptpd[/code]</p>
<p>Â after that we editÂ  <em><span class="system">/etc/pptpd.conf</span></em></p>
<p>[code]pptpd.conf[/code]</p>
<p>then we editÂ  <em><span class="system">/etc/ppp/options</span></em></p>
<p>[code]options[/code]</p>
<p>and then we editÂ  <em><span class="system">/etc/ppp/pptpd-options</span></em></p>
<p>[code]pptpd-options[/code]</p>
<p>and as last we edit the user fileÂ <em> <span class="system">/etc/ppp/chap-secrets</span></em></p>
<p>[code]chap-secrets[/code]</p>
<p>and finaly we restart the pptpd using the command:</p>
<p>[code]restart pptpd[/code]</p>
<p>so you see &#8230; it&#8217;s not that hard to install a microsoft vpn tunnel server on a ubuntu server Â</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalbase.eu/blog/setup-a-vpn-server-pptp-server-under-ubuntu/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>scp sftp support in Krusader (ubuntu gutsy)</title>
		<link>http://www.digitalbase.eu/blog/scp-sftp-support-in-krusader-ubuntu-gutsy/</link>
		<comments>http://www.digitalbase.eu/blog/scp-sftp-support-in-krusader-ubuntu-gutsy/#comments</comments>
		<pubDate>Mon, 04 Feb 2008 17:46:16 +0000</pubDate>
		<dc:creator>Gijs Nelissen</dc:creator>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[krusader]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[scp]]></category>
		<category><![CDATA[sftp]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://dibav3.gnelisse.desktop01/blog/?p=27</guid>
		<description><![CDATA[By default the scp/sftp support is not installed when running krusader in a gnome environment). Here is howto fix this]]></description>
			<content:encoded><![CDATA[<p>
By default the scp/sftp support is not installed when running krusader in a gnome environment). If your &#39;new net connection&#39; only lists ftp, this is the case for you.
</p>
<p>
This means you are missing some kde libraries allowing krusader (or other kde apps) to use the scp/sftp protocol
</p>
<p>[code]gutsy - krusader fix[/code]</p>
<p>
This should do the trick..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalbase.eu/blog/scp-sftp-support-in-krusader-ubuntu-gutsy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
