<?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"
	>

<channel>
	<title>Digital Life</title>
	<atom:link href="http://www.ottosalminen.net/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ottosalminen.net</link>
	<description>Portfolio and blog of digital media artist Otto Salminen</description>
	<pubDate>Sat, 28 Jun 2008 17:19:22 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>Change &#8220;primary&#8221; display on OS X</title>
		<link>http://www.ottosalminen.net/archives/43</link>
		<comments>http://www.ottosalminen.net/archives/43#comments</comments>
		<pubDate>Wed, 23 Apr 2008 05:19:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://www.ottosalminen.net/?p=43</guid>
		<description><![CDATA[Open system preferences -&#62; displays -&#62; arrangement. Just click and drag menu bar on display of your choice.

]]></description>
			<content:encoded><![CDATA[<p>Open system preferences -&gt; displays -&gt; arrangement. Just click and drag menu bar on display of your choice.</p>
<p><img src="http://www.ottosalminen.net/wp-content/nostot/menu_bar.png" alt="" width="311" height="138" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ottosalminen.net/archives/43/feed</wfw:commentRss>
		</item>
		<item>
		<title>Server monitoring</title>
		<link>http://www.ottosalminen.net/archives/41</link>
		<comments>http://www.ottosalminen.net/archives/41#comments</comments>
		<pubDate>Wed, 05 Mar 2008 19:47:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[monitoring]]></category>

		<category><![CDATA[performance]]></category>

		<guid isPermaLink="false">http://www.ottosalminen.net/archives/41</guid>
		<description><![CDATA[There are many alternatives to choose from when we are talking about *nix server monitoring. Just tested two, ntop and munin. Both comes with a nice browser user interface. Ntop is focused on network traffic monitoring. Munin draws nice graphs and it&#8217;s really easy to setup. I choosed munin for my file server because it [...]]]></description>
			<content:encoded><![CDATA[<p>There are many alternatives to choose from when we are talking about *nix server monitoring. Just tested two, ntop and munin. Both comes with a nice browser user interface. <a href="http://www.ntop.org/">Ntop</a> is focused on network traffic monitoring. <a href="http://munin.projects.linpro.no/">Munin</a> draws nice graphs and it&#8217;s really easy to setup. I choosed munin for my file server because it gives a clear overview of used system resources.</p>
<ul>
<li><a href="http://howtoforge.com/server_monitoring_monit_munin">Munin installation guide</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.ottosalminen.net/archives/41/feed</wfw:commentRss>
		</item>
		<item>
		<title>Sharing a folder in local netwok</title>
		<link>http://www.ottosalminen.net/archives/38</link>
		<comments>http://www.ottosalminen.net/archives/38#comments</comments>
		<pubDate>Thu, 07 Feb 2008 17:17:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[networking]]></category>

		<category><![CDATA[nfs]]></category>

		<guid isPermaLink="false">http://www.ottosalminen.net/archives/38</guid>
		<description><![CDATA[Mounting a remote folder in local network with nfs is quite simple and the topic is covered in many sources before but this formula worked for me. This example is for Debian server and clients. All steps are done as root.
Setting up the server
1. Install packages for nfs server:
# apt-get install nfs-kernel-server nfs-common portmap
2. Edit [...]]]></description>
			<content:encoded><![CDATA[<p>Mounting a remote folder in local network with nfs is quite simple and the topic is covered in many sources before but this formula worked for me. This example is for Debian server and clients. All steps are done as root.</p>
<p><strong>Setting up the server</strong></p>
<p>1. Install packages for nfs server:</p>
<p><code># apt-get install nfs-kernel-server nfs-common portmap</code></p>
<p>2. Edit exports file:</p>
<p><code># nano /etc/exports</code></p>
<p>3. Add wanted clients:</p>
<p><code>/path/to/shared/folder client1-ip(rw,sync)</code><br />
<code>/path/to/shared/folder client2-ip(rw,sync)</code></p>
<p>Note. No space between client-ip and (permissions).</p>
<p>3. Load new settings and restart related services:</p>
<p><code># exportfs -a</code><br />
<code># /etc/init.d/portmap restart</code><br />
<code># /etc/init.d/nfs-kernel-server restart</code><br />
<code># /etc/init.d/nfs-common restart</code></p>
<p><strong>Setting up a client</strong></p>
<p>1. Install nfs support for a client:</p>
<p><code># apt-get install nfs-common portmap</code></p>
<p>2. Test mounting with:</p>
<p><code># mount server-ip:/path/to/shared/folder /path/to/local/folder</code></p>
<p>3. If that worked you can add it to fstab. Open fstab for editing:</p>
<p><code># nano /etc/fstab</code></p>
<p>4. Add the nfs mount :</p>
<p><code>server-ip:/path/to/shader/folder /path/to/local/folder  nfs  rsize=8192  0 0</code></p>
<p>That&#8217;s it. Now the remote folder is automatically mounted every time the client is booted.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ottosalminen.net/archives/38/feed</wfw:commentRss>
		</item>
		<item>
		<title>Binary Tree</title>
		<link>http://www.ottosalminen.net/archives/37</link>
		<comments>http://www.ottosalminen.net/archives/37#comments</comments>
		<pubDate>Mon, 04 Feb 2008 19:59:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[data structure]]></category>

		<category><![CDATA[Design]]></category>

		<category><![CDATA[math]]></category>

		<guid isPermaLink="false">http://www.ottosalminen.net/archives/37</guid>
		<description><![CDATA[What kind of plant is binary tree? Never seen one alive but on this t-shirt it looks pretty neat. Binary tree actually means a tree  where every branch has at most two child branches.
]]></description>
			<content:encoded><![CDATA[<p>What kind of plant is binary tree? Never seen one alive but on this <a href="http://www.insanelygreattees.com/shirt/binarytree">t-shirt</a> it looks pretty neat. Binary tree actually means a tree  where every branch has at most two child branches.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ottosalminen.net/archives/37/feed</wfw:commentRss>
		</item>
		<item>
		<title>Infector Wars</title>
		<link>http://www.ottosalminen.net/archives/32</link>
		<comments>http://www.ottosalminen.net/archives/32#comments</comments>
		<pubDate>Sun, 03 Feb 2008 19:24:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[2008]]></category>

		<category><![CDATA[game]]></category>

		<category><![CDATA[pygame]]></category>

		<guid isPermaLink="false">http://www.ottosalminen.net/archives/32</guid>
		<description><![CDATA[Just finished a new visual theme for Vector Wars by pyMike.



Download Infector Wars (PyGame is required)

]]></description>
			<content:encoded><![CDATA[<p>Just finished a new visual theme for Vector Wars by <a href="http://pymike93.googlepages.com/home">pyMike</a>.</p>
<p><img src="http://media.peukalo.net/photo/main.php?g2_view=core.DownloadItem&amp;g2_itemId=66010&amp;g2_serialNumber=1" height="314" width="404" /></p>
<p><img src="http://media.peukalo.net/photo/main.php?g2_view=core.DownloadItem&amp;g2_itemId=66007&amp;g2_serialNumber=1" height="471" width="606" /></p>
<ul>
<li><a href="Infector_Wars_0.0.2.zip">Download Infector Wars</a> (<a href="http://www.pygame.org">PyGame</a> is required)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.ottosalminen.net/archives/32/feed</wfw:commentRss>
		</item>
		<item>
		<title>GetDeb</title>
		<link>http://www.ottosalminen.net/archives/30</link>
		<comments>http://www.ottosalminen.net/archives/30#comments</comments>
		<pubDate>Thu, 24 Jan 2008 19:33:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.ottosalminen.net/archives/30</guid>
		<description><![CDATA[Found a nice source of fresh deb packages. Just download and install no compiling required.

 getdeb

]]></description>
			<content:encoded><![CDATA[<p>Found a nice source of fresh deb packages. Just download and install no compiling required.</p>
<ul>
<li> <a href="http://www.getdeb.net/" target="_blank">getdeb</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.ottosalminen.net/archives/30/feed</wfw:commentRss>
		</item>
		<item>
		<title>Kaukajärvi freezes</title>
		<link>http://www.ottosalminen.net/archives/29</link>
		<comments>http://www.ottosalminen.net/archives/29#comments</comments>
		<pubDate>Sat, 05 Jan 2008 18:00:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Photo]]></category>

		<category><![CDATA[ice]]></category>

		<category><![CDATA[lake]]></category>

		<category><![CDATA[winter]]></category>

		<guid isPermaLink="false">http://www.ottosalminen.net/?p=29</guid>
		<description><![CDATA[Winter is weird this year. Kaukajärvi freezes for a 10th time.


More photos&#8230;

]]></description>
			<content:encoded><![CDATA[<p>Winter is weird this year. Kaukajärvi freezes for a 10th time.</p>
<p><img src="http://media.peukalo.net/photo/main.php?g2_view=core.DownloadItem&amp;g2_itemId=65855&amp;g2_serialNumber=2" height="480" width="640" /></p>
<ul>
<li><a href="http://media.peukalo.net/photo/main.php/kaukajarvi/2008/" target="_blank">More photos&#8230;</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.ottosalminen.net/archives/29/feed</wfw:commentRss>
		</item>
		<item>
		<title>How to cd with sudo in Ubuntu</title>
		<link>http://www.ottosalminen.net/archives/28</link>
		<comments>http://www.ottosalminen.net/archives/28#comments</comments>
		<pubDate>Sat, 15 Sep 2007 17:53:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.ottosalminen.net/?p=28</guid>
		<description><![CDATA[In Ubuntu you cannot directly sudo cd folder. But in sudo bash you can.
So enter to bash mode:
$ sudo bash
Now you can sudo etc.
# cd
Leave sudo bash with exit-command:
# exit
]]></description>
			<content:encoded><![CDATA[<p>In Ubuntu you cannot directly sudo cd folder. But in sudo bash you can.<br />
So enter to bash mode:</p>
<p><code>$ sudo bash</code></p>
<p>Now you can sudo etc.</p>
<p><code># cd</code></p>
<p>Leave sudo bash with exit-command:</p>
<p><code># exit</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ottosalminen.net/archives/28/feed</wfw:commentRss>
		</item>
		<item>
		<title>Back up folder in tar.gz and split it to smaller chunks</title>
		<link>http://www.ottosalminen.net/archives/27</link>
		<comments>http://www.ottosalminen.net/archives/27#comments</comments>
		<pubDate>Mon, 06 Aug 2007 07:57:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://www.ottosalminen.net/?p=27</guid>
		<description><![CDATA[Making compressed archive from  a folder:
tar -czvf destination.tar.gz source_folder/
Use split to slice the file. Slice size can be defined with -b option:
split -b 1100m destination.tar.gz destination_
To join parts use cat:
cat destination_a* &#62; destination.tar.gz
To extract the compressed file:
tar -zxvf destination.tar.gz
]]></description>
			<content:encoded><![CDATA[<p>Making compressed archive from  a folder:</p>
<p><code>tar -czvf destination.tar.gz source_folder/</code></p>
<p>Use split to slice the file. Slice size can be defined with <code>-b</code> option:</p>
<p><code>split -b 1100m destination.tar.gz destination_</code></p>
<p>To join parts use cat:</p>
<p><code>cat destination_a* &gt; destination.tar.gz</code></p>
<p>To extract the compressed file:</p>
<p><code>tar -zxvf destination.tar.gz</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ottosalminen.net/archives/27/feed</wfw:commentRss>
		</item>
		<item>
		<title>Installing pyGame for OS X</title>
		<link>http://www.ottosalminen.net/archives/26</link>
		<comments>http://www.ottosalminen.net/archives/26#comments</comments>
		<pubDate>Tue, 24 Jul 2007 06:30:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://www.ottosalminen.net/?p=26</guid>
		<description><![CDATA[Find out the version of installed Python.
Type to terminal:
$ python -V
Load packages for your version of Python from:
http://pythonmac.org/packages/
Install needed packages:

pygame
PyObjC

]]></description>
			<content:encoded><![CDATA[<p>Find out the version of installed Python.<br />
Type to terminal:</p>
<p><code>$ python -V</code></p>
<p>Load packages for your version of Python from:<br />
<a href="http://pythonmac.org/packages/">http://pythonmac.org/packages/</a></p>
<p>Install needed packages:</p>
<ul>
<li>pygame</li>
<li>PyObjC</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.ottosalminen.net/archives/26/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
