<?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>RobotSystematic &#187; Ubuntu</title>
	<atom:link href="http://www.robotsystematic.com/category/ubuntu/feed" rel="self" type="application/rss+xml" />
	<link>http://www.robotsystematic.com</link>
	<description>Ubuntu, PHP, MySQL, Zend Framework, and other geekdom</description>
	<lastBuildDate>Tue, 07 Sep 2010 13:48:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Ubuntu 10.10 (Maverick)</title>
		<link>http://www.robotsystematic.com/2010/php/ubuntu-10-10-maverick</link>
		<comments>http://www.robotsystematic.com/2010/php/ubuntu-10-10-maverick#comments</comments>
		<pubDate>Tue, 07 Sep 2010 09:07:14 +0000</pubDate>
		<dc:creator>snek</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[10.10]]></category>
		<category><![CDATA[5.3]]></category>
		<category><![CDATA[Maverick]]></category>
		<category><![CDATA[PHP5]]></category>

		<guid isPermaLink="false">http://www.robotsystematic.com/?p=519</guid>
		<description><![CDATA[Ubuntu 10.10 beta has been released a day or two ago. Now I&#8217;ve seen quite a few reviews popping up online, but I am not very excited about them. It seems a lot of new Ubuntu users are only looking at the GUI and the userfriendliness of this new versions, whilst there&#8217;s probably a lot [...]]]></description>
			<content:encoded><![CDATA[<p>Ubuntu 10.10 beta has been released a day or two ago. Now I&#8217;ve seen quite a few reviews popping up online, but I am not very excited about them. It seems a lot of new Ubuntu users are only looking at the GUI and the userfriendliness of this new versions, whilst there&#8217;s probably a lot of other things which are much more exciting than a new theme or wallpaper. I mean, seriously, who the f*** cares about the wallpaper? Ok, we have been promised a funny little wallpaper which will change slightly every day, so as to generate a unique wallpaper for each user. However this is nothing to write home about imho.</p>
<p>For me the most exciting thing is the new kernel (which I&#8217;m already running under Lucid as well: 2.6.35).<br />
It just feels snappier and should handle extreme networking much better by using all your CPU cores.</p>
<p>You can find a list of ALL packages here:<br />
<a href="http://packages.ubuntu.com/maverick/allpackages">http://packages.ubuntu.com/maverick/allpackages</a></p>
<p>Mind you this is quite a long list, not recommended for dial-up users or users with very slow computers <img src='http://www.robotsystematic.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Personally, I&#8217;m happy to find that PHP 5.3.3 has been included.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.robotsystematic.com/2010/php/ubuntu-10-10-maverick/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nevermind streaming, mount your mp3 dir over SSH and listen to your music at work!</title>
		<link>http://www.robotsystematic.com/2010/linux/nevermind-streaming-mount-your-mp3-dir-over-ssh-and-listen-to-your-music-at-work</link>
		<comments>http://www.robotsystematic.com/2010/linux/nevermind-streaming-mount-your-mp3-dir-over-ssh-and-listen-to-your-music-at-work#comments</comments>
		<pubDate>Mon, 30 Aug 2010 14:08:31 +0000</pubDate>
		<dc:creator>snek</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[SSHFS]]></category>

		<guid isPermaLink="false">http://www.robotsystematic.com/?p=514</guid>
		<description><![CDATA[This whole streaming hype sometimes makes you think it&#8217;s the ideal way of doing things. But sometimes it&#8217;s just a hassle to setup the streaming server and possibly have to deal with lower quality than the original file to boot. My solution for listening to my music at work now is to just mount my [...]]]></description>
			<content:encoded><![CDATA[<p>This whole streaming hype sometimes makes you think it&#8217;s the ideal way of doing things.<br />
But sometimes it&#8217;s just a hassle to setup the streaming server and possibly have to deal with lower quality than the original file to boot.</p>
<p>My solution for listening to my music at work now is to just mount my MP3 directory to a directory on my work machine over SSH.<br />
So far it has been working flawlessly although it has a few problems streaming considerably large files like FLAC/WAV, but that was to be expected since my downstream at work is actually lower than my upstream at home.</p>
<p>To get it to work you will have to install sshfs first:</p>
<div class="code">
sudo aptitude install sshfs
</div>
<p>Then add yourself to the fuse group to be able to use it:</p>
<div class="code">
sudo gpasswd -a $USER fuse
</div>
<p>And here&#8217;s a simple command I run to mount it:</p>
<div class="code">
sshfs -o idmap=user myhomeuser@home.domain.com:/media/1tb/mp3 /home/myworkuser/music_home/ -p 22 -C
</div>
<ul>
<li>with -p you can set the port to connect to (your ssh port)</li>
<li>-C tells ssh to compress the connection, can&#8217;t hurt</li>
</ul>
<p>You can also make the system mount this location on startup using /etc/fstab but I don&#8217;t want to do that so haven&#8217;t set that up.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.robotsystematic.com/2010/linux/nevermind-streaming-mount-your-mp3-dir-over-ssh-and-listen-to-your-music-at-work/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automatic Lossless JPEG Optimisation</title>
		<link>http://www.robotsystematic.com/2010/linux/automatic-lossless-jpeg-optimisation</link>
		<comments>http://www.robotsystematic.com/2010/linux/automatic-lossless-jpeg-optimisation#comments</comments>
		<pubDate>Mon, 23 Aug 2010 09:12:23 +0000</pubDate>
		<dc:creator>snek</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Zend]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[JPEG]]></category>
		<category><![CDATA[jpegoptim]]></category>
		<category><![CDATA[JPG]]></category>

		<guid isPermaLink="false">http://www.robotsystematic.com/?p=510</guid>
		<description><![CDATA[Just stumbled upon this little program which optimizes JPEG images. In my directory of thumbnails it saved an easy 20KB for only 16 images, so that&#8217;s not half bad if you ask me. Every little bit helps I&#8217;ve been working on a little gallery in Zend Framework, and am generating thumbnails in a cache dir. [...]]]></description>
			<content:encoded><![CDATA[<p>Just stumbled upon this little program which optimizes JPEG images.<br />
In my directory of thumbnails it saved an easy 20KB for only 16 images, so that&#8217;s not half bad if you ask me. Every little bit helps <img src='http://www.robotsystematic.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;ve been working on a little gallery in Zend Framework, and am generating thumbnails in a cache dir.<br />
They were pretty damn small already, but I like to keep tweaking at things so this was a nice little extra.</p>
<p>In Ubuntu you can install it quickly using:</p>
<div class="code">
sudo aptitude install jpegoptim
</div>
<p>Then in my PHP code I just used this:</p>
<div class="code">
// Thumnail?<br />
if($b_thumb)<br />
{</p>
<p>	$cache_dir = $b_full ? &#8216;../cache/images/thumbs/full/&#8217; : &#8216;../cache/images/thumbs/small/&#8217;;</p>
<p>	// IS THUMBNAIL CACHED?<br />
	if(!file_exists($cache_dir . $s_imageName))<br />
	{<br />
		 $i_thumb_width = $b_full ? 100 : 50; // set thumbnail width<br />
	    $i_imageNewHeight = ($a_imageSize[1] * $i_thumb_width) / $a_imageSize[0]; // calculate new height<br />
	    $i_imageNewHeight = round($i_imageNewHeight, 0); // round it nicely<br />
	    $temp_image = imagecreatetruecolor($i_thumb_width, $i_imageNewHeight); // create a new image object<br />
	    imagecopyresampled($temp_image, $o_image, 0, 0, 0, 0, $i_thumb_width, $i_imageNewHeight, $a_imageSize[0], $a_imageSize[1]); // copy content from image into the new object<br />
	    $o_image = $temp_image; // too lazy to clean this up<br />
	    imagejpeg($o_image, $cache_dir . $s_imageName); // write the image file to disk<br />
<span style="color:red"><br />
	    $jpegoptim = &#8216;jpegoptim &#8216;. $cache_dir . $s_imageName; // create optimizating command<br />
	    exec($jpegoptim); // execute the jpegoptim command<br />
</span><br />
	}<br />
	else<br />
	{<br />
		// CACHED!<br />
		$o_image = imagecreatefromjpeg($cache_dir . $s_imageName);<br />
	}</p>
<p>	header(&#8216;Expires: &#8216; . gmdate(&#8216;D, d M Y H:i:s&#8217;, time()+24*60*60) . &#8216; GMT&#8217;);<br />
        header(&#8216;Content-Type: image/jpeg&#8217;);<br />
	imagejpeg($o_image);<br />
	imagedestroy($o_image);<br />
}
</p></div>
<p>You might want to be aware of the fact that since I am writing the thumbnails to disk as apache and then running jpegoptim on the file from php the permissions are already set correctly. Otherwise you might have to check the owner of the file, when testing from command-line in Ubuntu I had to use sudo to run it against the thumbnails since they were owned by www-data (the default apache user in Ubuntu).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.robotsystematic.com/2010/linux/automatic-lossless-jpeg-optimisation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Mint Menu in Ubuntu (Lucid) by using the Mint Repo</title>
		<link>http://www.robotsystematic.com/2010/linux/linux-mint-menu-in-ubuntu-lucid-by-using-the-mint-repo</link>
		<comments>http://www.robotsystematic.com/2010/linux/linux-mint-menu-in-ubuntu-lucid-by-using-the-mint-repo#comments</comments>
		<pubDate>Fri, 20 Aug 2010 08:59:40 +0000</pubDate>
		<dc:creator>snek</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[Linux Mint]]></category>
		<category><![CDATA[Linux Mint Menu]]></category>
		<category><![CDATA[Mint]]></category>
		<category><![CDATA[Mint Menu]]></category>

		<guid isPermaLink="false">http://www.robotsystematic.com/?p=485</guid>
		<description><![CDATA[This has been popping up on sites today, and people are installing from .deb files downloaded out of the Mint repo&#8217;s. Now, I like to keep my software up-to-date and thus don&#8217;t like installing loose .deb files without adding the repo where they came from. Just a note of warning: this is meant for Ubuntu [...]]]></description>
			<content:encoded><![CDATA[<p>This has been popping up on sites today, and people are installing from .deb files downloaded out of the Mint repo&#8217;s. Now, I like to keep my software up-to-date and thus don&#8217;t like installing loose .deb files without adding the repo where they came from.</p>
<p><strong>Just a note of warning: this is meant for Ubuntu Lucid (Gnome) in combination with Linux Mint 9!</strong></p>
<p><a href="http://www.robotsystematic.com/wp-content/uploads/2010/08/linux-mint-7-menu.jpg" rel="lightbox[485]"><img class="aligncenter size-medium wp-image-501" title="linux-mint-7-menu" src="http://www.robotsystematic.com/wp-content/uploads/2010/08/linux-mint-7-menu-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>So here&#8217;s how you can install the Linux Mint menu by adding the Mint repo, and thus keeping up to date <img src='http://www.robotsystematic.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>First we want to add the Mint repo by creating a new file in /etc/apt/sources.list.d/ called mint.list:</p>
<div class="code">sudo nano /etc/apt/sources.list.d/mint.list</div>
<p>Paste in the following line:</p>
<div class="code">deb http://packages.linuxmint.com/ isadora main</div>
<p>Press Ctrl+X to close Nano and save the file.<br />
Install the GPG key for the repo:</p>
<div class="code">sudo apt-key adv &#8211;recv-key &#8211;keyserver keyserver.ubuntu.com 0FF405B2</div>
<p>Next run aptitude update, and install some Mint packages:</p>
<div class="code">sudo aptitude update; sudo aptitude install mint-translations mint-common mintmenu</div>
<p>Now just add the Mint Menu to the Gnome panel:</p>
<p><strong>Click to view larger image</strong></p>
<p><a href="http://www.robotsystematic.com/wp-content/uploads/2010/08/mint_add_to_panel1.png" rel="lightbox[485]"><img class="aligncenter size-medium wp-image-487" title="mint_add_to_panel1" src="http://www.robotsystematic.com/wp-content/uploads/2010/08/mint_add_to_panel1-300x68.png" alt="" width="300" height="68" /></a></p>
<p><a href="http://www.robotsystematic.com/wp-content/uploads/2010/08/mint_add_to_panel2.png" rel="lightbox[485]"><img class="aligncenter size-medium wp-image-489" title="mint_add_to_panel2" src="http://www.robotsystematic.com/wp-content/uploads/2010/08/mint_add_to_panel2-300x278.png" alt="" width="300" height="278" /></a></p>
<p>To tweak it a bit more follow this (blatantly copied from <a href="http://ubuntuforums.org/showpost.php?p=9719663&amp;postcount=1">this Ubuntu Forums post</a>):</p>
<blockquote><p><strong>Ubuntuize it</strong><br />
If you right-click on the menu button and select &#8220;Preferences&#8221; you will see the menu with a whole bunch of stuff. On the first tab which is shown, named &#8220;Main Button&#8221; you can change how the button looks in the gnome pane. For me, I deleted the button text as I just wanted to have a logo, but of course the choice is yours.</p>
<p>As for the icon, if you want an ubuntu logo, here are the paths to copy in (NOTE: paths are based of Ubuntu 10.04)</p>
<p>If you&#8217;re using a light theme:</p>
<div class="code">/usr/share/icons/ubuntu-mono-light/apps/24/start-here.svg</div>
<p>If you&#8217;re using a dark theme:</p>
<div class="code">/usr/share/icons/ubuntu-mono-dark/apps/24/start-here.svg</div>
<p><strong>Play around!</strong><br />
Have a good look around the preferences and what you can do. There is quite a lot you can play with.<br />
You can choose what items you have in the &#8220;Favourites&#8221; section but right clicking on a menu item (from &#8220;All Applications&#8221;) and choose &#8220;Show in my favourites&#8221;. You can remove items from your favourites by right clicking on them and selected &#8220;Remove from favourites&#8221;.</p>
<p><strong>Known Issue&#8230;</strong><br />
After you ave added it to the panel, you will notice that if you select &#8220;All Applications&#8221;, that there is nothing there, or that there are no sub-menus. No problem, all should be fine and working after a the next reboot.</p>
<p>So there you have it, the Mint Menu in Ubuntu. And remember, Mint is made off Ubuntu so everything is pretty much interchangeable, so don&#8217;t worry that you&#8217;re using a menu made for a different<br />
distro.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.robotsystematic.com/2010/linux/linux-mint-menu-in-ubuntu-lucid-by-using-the-mint-repo/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Auto start Teamspeak 3 Ubuntu</title>
		<link>http://www.robotsystematic.com/2010/howto/auto-start-teamspeak-3-ubuntu</link>
		<comments>http://www.robotsystematic.com/2010/howto/auto-start-teamspeak-3-ubuntu#comments</comments>
		<pubDate>Thu, 19 Aug 2010 12:16:39 +0000</pubDate>
		<dc:creator>snek</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[3]]></category>
		<category><![CDATA[auto]]></category>
		<category><![CDATA[boot]]></category>
		<category><![CDATA[init.d]]></category>
		<category><![CDATA[runlevel]]></category>
		<category><![CDATA[start]]></category>
		<category><![CDATA[startup]]></category>
		<category><![CDATA[TeamSpeak]]></category>
		<category><![CDATA[TeamSpeak 3]]></category>
		<category><![CDATA[ts3]]></category>

		<guid isPermaLink="false">http://www.robotsystematic.com/?p=457</guid>
		<description><![CDATA[Before I start I am asuming you have already downloaded your copy of teamspeak 3 and unpacked it. For reference I will assume the path to where you unpacked TS3 is: /home/ts3/teamspeak3-server_linux-amd64 Now to make an autostart script you can actually just reuse the one that comes with TS3: ts3server_startscript.sh The only thing I did [...]]]></description>
			<content:encoded><![CDATA[<p>Before I start I am asuming you have already downloaded your copy of teamspeak 3 and unpacked it.<br />
For reference I will assume the path to where you unpacked TS3 is:</p>
<div class="code">/home/ts3/teamspeak3-server_linux-amd64</div>
<p>Now to make an autostart script you can actually just reuse the one that comes with TS3: <em>ts3server_startscript.sh</em></p>
<p>The only thing I did to get this working was edit <em>ts3server_startscript.sh</em> and change one line.</p>
<div class="code">
BINARYPATH=&#8221;$(dirname &#8220;${0}&#8221;)&#8221;
</div>
<p>I replaced with the actual path:</p>
<div class="code">
BINARYPATH=&#8221;/home/ts3/teamspeak3-server_linux-amd64/&#8221;
</div>
<p>Then I went into /etc/init.d and made a symlink to this file, like so:</p>
<div class="code">
cd /etc/init.d<br />
sudo ln -s /home/ts3/teamspeak3-server_linux-amd64/ts3server_startscript.sh ts3
</div>
<p>Then we need to make sure the TS3 server starts on a reboot, so we at it to the various runlevels like so:</p>
<div class="code">
sudo update-rc.d -f ts3 defaults
</div>
<p>Now you can start/stop/restart TS3 like any other service:</p>
<div class="code">
sudo service ts3 start
</div>
<p>TS3 will run as root though, which is a bit of a vulnerability, maybe I&#8217;ll figure out how to fix that later.<br />
I used another very simple start script before, but because it lacked start/stop/restart commands the server couldn&#8217;t actually reboot..<br />
It would send the stop command to the service, which would just hang there and the server wouldn&#8217;t proceed to shut down processes after that.<br />
The way I described above works perfectly for me <img src='http://www.robotsystematic.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.robotsystematic.com/2010/howto/auto-start-teamspeak-3-ubuntu/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Natty Narwhal (11.04)</title>
		<link>http://www.robotsystematic.com/2010/linux/ubuntu-natty-narwhal-11-04</link>
		<comments>http://www.robotsystematic.com/2010/linux/ubuntu-natty-narwhal-11-04#comments</comments>
		<pubDate>Wed, 18 Aug 2010 08:50:11 +0000</pubDate>
		<dc:creator>snek</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[10.04]]></category>
		<category><![CDATA[Announced]]></category>
		<category><![CDATA[Name]]></category>
		<category><![CDATA[Narwhal]]></category>
		<category><![CDATA[natty]]></category>
		<category><![CDATA[New]]></category>

		<guid isPermaLink="false">http://www.robotsystematic.com/?p=449</guid>
		<description><![CDATA[Well it seems Canonical has finally decided on the name for the newly announced Ubuntu version, to be released in April 2011. It will be called Natty Narwhal. What wikipedia has to say about the Narwhal: The narwhal (Monodon monoceros) is a medium-sized toothed whale that lives year-round in the Arctic. One of two species [...]]]></description>
			<content:encoded><![CDATA[<p>Well it seems Canonical has finally decided on the name for the newly announced Ubuntu version, to be released in April 2011. It will be called Natty Narwhal.</p>
<p><a href="http://www.robotsystematic.com/wp-content/uploads/2010/08/Narwhal.jpg" rel="lightbox[449]"><img class="size-full wp-image-450 alignright" style="margin-left: 10px; margin-right: 10px;" title="Narwhal" src="http://www.robotsystematic.com/wp-content/uploads/2010/08/Narwhal.jpg" alt="" width="400" height="400" /></a></p>
<p>What wikipedia has to say about the Narwhal:</p>
<blockquote><p>The <strong>narwhal</strong> (<em>Monodon monoceros</em>) is a medium-sized <a title="Toothed whale" href="https://secure.wikimedia.org/wikipedia/en/wiki/Toothed_whale">toothed whale</a> that lives year-round in the <a title="Arctic" href="https://secure.wikimedia.org/wikipedia/en/wiki/Arctic">Arctic</a>. One of two species of <a title="Whale" href="https://secure.wikimedia.org/wikipedia/en/wiki/Whale">whale</a> in the <a title="Monodontidae" href="https://secure.wikimedia.org/wikipedia/en/wiki/Monodontidae">Monodontidae</a> <a title="Family (biology)" href="https://secure.wikimedia.org/wikipedia/en/wiki/Family_%28biology%29">family</a>, along with the <a title="Beluga whale" href="https://secure.wikimedia.org/wikipedia/en/wiki/Beluga_whale">Beluga whale</a>, the narwhal males are distinguished by a characteristic long, straight, <a title="Helical" href="https://secure.wikimedia.org/wikipedia/en/wiki/Helical">helical</a> <a title="Tusk" href="https://secure.wikimedia.org/wikipedia/en/wiki/Tusk">tusk</a> extending from their upper left jaw. Found primarily in <a title="Canadian Arctic" href="https://secure.wikimedia.org/wikipedia/en/wiki/Canadian_Arctic">Canadian Arctic</a> and <a title="Greenland" href="https://secure.wikimedia.org/wikipedia/en/wiki/Greenland">Greenlandic</a> waters rarely south of 65°N <a title="Latitude" href="https://secure.wikimedia.org/wikipedia/en/wiki/Latitude">latitude</a>, the narwhal is a uniquely specialized Arctic predator. In the winter, it feeds on <a title="Benthic" href="https://secure.wikimedia.org/wikipedia/en/wiki/Benthic">benthic</a> prey, mostly <a title="Flatfish" href="https://secure.wikimedia.org/wikipedia/en/wiki/Flatfish">flatfish</a>, at depths of up to 1500 m under dense <a title="Pack ice" href="https://secure.wikimedia.org/wikipedia/en/wiki/Pack_ice">pack ice</a>.<sup id="cite_ref-Laidre2004_2-0"><a href="https://secure.wikimedia.org/wikipedia/en/wiki/Narwhal#cite_note-Laidre2004-2">[3]</a></sup> Narwhal have been harvested for over a thousand years by <a title="Inuit" href="https://secure.wikimedia.org/wikipedia/en/wiki/Inuit">Inuit</a> people in Northern Canada and Greenland for meat and ivory and a  regulated subsistence hunt continues to this day. While populations  appear stable, the narwhal has been deemed particularly vulnerable to <a title="Climate change" href="https://secure.wikimedia.org/wikipedia/en/wiki/Climate_change">climate change</a> due to a narrow geographical range and specialized diet.</p></blockquote>
<p>Natty means neat and/or tidy. I kind of miss the relevance to the Narwhal&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.robotsystematic.com/2010/linux/ubuntu-natty-narwhal-11-04/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgraded VPS from Karmic (9.10) to Lucid (10.4)</title>
		<link>http://www.robotsystematic.com/2010/linux/upgraded-vps-from-karmic-9-10-to-lucid-10-4</link>
		<comments>http://www.robotsystematic.com/2010/linux/upgraded-vps-from-karmic-9-10-to-lucid-10-4#comments</comments>
		<pubDate>Tue, 17 Aug 2010 14:16:12 +0000</pubDate>
		<dc:creator>snek</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Karmic]]></category>
		<category><![CDATA[Lucid]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Upgrade]]></category>

		<guid isPermaLink="false">http://www.robotsystematic.com/?p=447</guid>
		<description><![CDATA[I followed the really simple guide posted by my VPS hoster for upgrading my VPS to Ubuntu Lucid. It took quite a while to run, but after adding a single row to /etc/fstab it restarted without problems! Seriously, I didn&#8217;t change a single thing and everything &#8220;just worked&#8221;.. That&#8217;s how it&#8217;s supposed to be! Now [...]]]></description>
			<content:encoded><![CDATA[<p>I followed the really simple guide posted by my VPS hoster for upgrading my VPS to Ubuntu Lucid.<br />
It took quite a while to run, but after adding a single row to /etc/fstab it restarted without problems!<br />
Seriously, I didn&#8217;t change a single thing and everything &#8220;just worked&#8221;.. That&#8217;s how it&#8217;s supposed to be!</p>
<p>Now to experiment with the 2.6.35 kernel, no idea if that will run on a VPS but we&#8217;ll see soon enough <img src='http://www.robotsystematic.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.robotsystematic.com/2010/linux/upgraded-vps-from-karmic-9-10-to-lucid-10-4/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Discover Motherboard Make &amp; Model in Linux</title>
		<link>http://www.robotsystematic.com/2010/linux/discover-motherboard-make-model-in-linux</link>
		<comments>http://www.robotsystematic.com/2010/linux/discover-motherboard-make-model-in-linux#comments</comments>
		<pubDate>Fri, 13 Aug 2010 14:33:41 +0000</pubDate>
		<dc:creator>snek</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Discover]]></category>
		<category><![CDATA[Find]]></category>
		<category><![CDATA[Make]]></category>
		<category><![CDATA[Model]]></category>
		<category><![CDATA[Motherboard]]></category>

		<guid isPermaLink="false">http://www.robotsystematic.com/?p=442</guid>
		<description><![CDATA[I never knew how to do this before, and never really needed it since I pretty much know my motherboard models by heart. However, with the increasingly weird model numbers these days from companies like Gigabyte and Asus I can&#8217;t seem to remember them anymore. I also have way too many computers to take care [...]]]></description>
			<content:encoded><![CDATA[<p>I never knew how to do this before, and never really needed it since I pretty much know my motherboard models by heart.</p>
<p>However, with the increasingly weird model numbers these days from companies like Gigabyte and Asus I can&#8217;t seem to remember them anymore.<br />
I also have way too many computers to take care of to remember my own now (am I getting old?).</p>
<p>Anyway&#8217;s, here&#8217;s the command. The data we are interrested in should be at the top of the output. I like to &#8220;pipe&#8221; it to the &#8220;less&#8221; command so we can scroll through it easily:</p>
<div class="code">sudo dmidecode | less</div>
<p>Hope this helps someone <img src='http://www.robotsystematic.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.robotsystematic.com/2010/linux/discover-motherboard-make-model-in-linux/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Lucid vs Windows XP</title>
		<link>http://www.robotsystematic.com/2010/ubuntu/ubuntu-lucid-vs-windows-xp</link>
		<comments>http://www.robotsystematic.com/2010/ubuntu/ubuntu-lucid-vs-windows-xp#comments</comments>
		<pubDate>Tue, 10 Aug 2010 12:30:09 +0000</pubDate>
		<dc:creator>snek</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[10.4]]></category>
		<category><![CDATA[Lucid]]></category>
		<category><![CDATA[Ubuntu vs Windows]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://www.robotsystematic.com/?p=435</guid>
		<description><![CDATA[At work I have been working on Windows XP but for testing reasons I installed Ubuntu Lucid as well and am dual-booting now. Switching between the two I have started to get a bit annoyed with XP because it is much slower than Ubuntu is. Programs seem to take a lot longer to start, even [...]]]></description>
			<content:encoded><![CDATA[<p>At work I have been working on Windows XP but for testing reasons I installed Ubuntu Lucid as well and am dual-booting now. Switching between the two I have started to get a bit annoyed with XP because it is much slower than Ubuntu is. Programs seem to take a lot longer to start, even when using the same software (Zend Studio, OpenOffice, Firefox, Thunderbird, etc).</p>
<p>In the past it used to be the other way round, but Canonical really did a good job on Lucid!<br />
Sometimes I still have to go back to XP (to test websites in IE for example) and it&#8217;s really a disappointment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.robotsystematic.com/2010/ubuntu/ubuntu-lucid-vs-windows-xp/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto reinstall mysql-server on Ubuntu (Lucid)</title>
		<link>http://www.robotsystematic.com/2010/linux/howto-reinstall-mysql-server-on-ubuntu-lucid</link>
		<comments>http://www.robotsystematic.com/2010/linux/howto-reinstall-mysql-server-on-ubuntu-lucid#comments</comments>
		<pubDate>Fri, 23 Jul 2010 13:09:49 +0000</pubDate>
		<dc:creator>snek</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.robotsystematic.com/?p=409</guid>
		<description><![CDATA[After messing around with mysql-server a bit too much lately, I&#8217;ve managed to break it completely. So much so, in fact, that I couldn&#8217;t just reinstall it.. It took quite a bit of time before I figured out the only working method for me to reinstall properly. First I run a sudo dpkg -l &#124;grep [...]]]></description>
			<content:encoded><![CDATA[<p>After messing around with mysql-server a bit too much lately, I&#8217;ve managed to break it completely. So much so, in fact, that I couldn&#8217;t just reinstall it.. It took quite a bit of time before I figured out the only working method for me to reinstall properly.</p>
<p>First I run a <em>sudo dpkg -l |grep mysql</em> and <em>sudo aptitude purge</em> ALL packages that get listed.<br />
Note this could remove your databases too, but you should have a backup somewhere to start with <img src='http://www.robotsystematic.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Sometimes you will probably also have to remove things like phpmyadmin and some php/apache modules as well.<br />
Once that is done, run <em>sudo tasksel</em> and install the LAMP package.</p>
<p>For me this has reinstalled mysql (and actually saved old databases) and let me continue with what I was doing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.robotsystematic.com/2010/linux/howto-reinstall-mysql-server-on-ubuntu-lucid/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
