<?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>Pario TechnoBlob &#187; Ubuntu</title>
	<atom:link href="http://pario.no/tag/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://pario.no</link>
	<description>A cronological documentation test project, nothing serious, really!</description>
	<lastBuildDate>Thu, 26 Apr 2012 08:18:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Change how the swap memory behave in Ubuntu</title>
		<link>http://pario.no/2012/04/25/change-how-the-swap-memor-behave-in-ubuntu/</link>
		<comments>http://pario.no/2012/04/25/change-how-the-swap-memor-behave-in-ubuntu/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 19:15:36 +0000</pubDate>
		<dc:creator>Hans-Henry Jakobsen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[swappiness]]></category>
		<category><![CDATA[sysctl]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://pario.no/?p=1717</guid>
		<description><![CDATA[This post is just a cut and paste job from the Ubuntu SwapFaq for my future reference Ubuntu installation. The swappiness parameter controls the tendency of the kernel to move processes out of physical memory and onto the swap disk. Because disks are much slower than RAM, this can lead to slower response times for [...]]]></description>
			<content:encoded><![CDATA[<p>This post is just a cut and paste job from the Ubuntu <a title="Ubuntu SwapFaq" href="https://help.ubuntu.com/community/SwapFaq">SwapFaq</a> for my future reference Ubuntu installation.</p>
<p>The swappiness parameter controls the tendency of the kernel to move processes out of physical memory and onto the swap disk. Because disks are much slower than RAM, this can lead to slower response times for system and applications if processes are too aggressively moved out of memory.</p>
<ul>
<li>swappiness can have a value of between 0 and 100</li>
<li>swappiness=0 tells the kernel to avoid swapping processes out of physical memory for as long as possible</li>
<li>swappiness=100 tells the kernel to aggressively swap processes out of physical memory and move them to swap cache</li>
</ul>
<p>The default setting in Ubuntu is swappiness=60. Reducing the default value of swappiness will probably improve overall performance for a typical Ubuntu desktop installation. A value of swappiness=10 is recommended, but feel free to experiment. <strong>Note</strong>: Ubuntu server installations have different performance requirements to desktop systems, and the default value of 60 is likely more suitable.</p>
<p>To check the swappiness value</p>
<pre># cat /proc/sys/vm/swappiness</pre>
<p>To change the swappiness value A temporary change (lost on reboot) with a swappiness value of 10 can be made with</p>
<pre># sudo sysctl vm.swappiness=10</pre>
<p>To make a change permanent, edit the configuration file with your favorite editor:</p>
<pre># gksudo gedit /etc/sysctl.conf</pre>
<p>Search for <em>vm.swappiness</em> and change its value as desired. If <em>vm.swappiness</em> does not exist, add it to the end of the file like so:</p>
<pre>vm.swappiness=10</pre>
<p>Save the file and reboot.</p>
<script type="text/javascript">var wordpress_toolbar_urls = ["https:\/\/help.ubuntu.com\/community\/SwapFaq"];var wordpress_toolbar_url = "http://pario.no/wp-content/plugins/wordpress-toolbar/toolbar.php";var wordpress_toolbar_oinw = "n";var wordpress_toolbar_hash = "aHR0cDovL3BhcmlvLm5vLzIwMTIvMDQvMjUvY2hhbmdlLWhvdy10aGUtc3dhcC1tZW1vci1iZWhhdmUtaW4tdWJ1bnR1Lzx3cHRiPkNoYW5nZSBob3cgdGhlIHN3YXAgbWVtb3J5IGJlaGF2ZSBpbiBVYnVudHU8d3B0Yj5odHRwOi8vcGFyaW8ubm88d3B0Yj5QYXJpbyBUZWNobm9CbG9i";</script>]]></content:encoded>
			<wfw:commentRss>http://pario.no/2012/04/25/change-how-the-swap-memor-behave-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable IPv6 on Ubuntu 11.10</title>
		<link>http://pario.no/2011/12/09/disable-ipv6-on-ubuntu-11-10/</link>
		<comments>http://pario.no/2011/12/09/disable-ipv6-on-ubuntu-11-10/#comments</comments>
		<pubDate>Fri, 09 Dec 2011 08:39:49 +0000</pubDate>
		<dc:creator>Hans-Henry Jakobsen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[11.10]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[ipv6]]></category>
		<category><![CDATA[sysct]]></category>
		<category><![CDATA[sysctl.conf]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[ubuntu oneiric]]></category>

		<guid isPermaLink="false">http://pario.no/?p=1662</guid>
		<description><![CDATA[This is a short HOWTO on disabling IP version 6 support on your ethernet devices like eth0 on Ubuntu 11.10. I guess you can do this on earlier version of Ubuntu as well. Add the following line to the end of the file /etc/sysctl.conf (as root or use sudo) net.ipv6.conf.all.disable_ipv6 = 1 Run the following [...]]]></description>
			<content:encoded><![CDATA[<p>This is a short HOWTO on disabling IP version 6 support on your ethernet devices like eth0 on Ubuntu 11.10.<br />
I guess you can do this on earlier version of Ubuntu as well.</p>
<p><il>
<li>Add the following line to the end of the file <strong>/etc/sysctl.conf</strong> (as root or use sudo)</p>
<li>
<pre>net.ipv6.conf.all.disable_ipv6 = 1</pre>
</li>
</li>
</ul>
<p>Run the following command to make this change effective immediately</p>
<pre># sudo sysctl -p</pre>
<p>A result from this command could be like this</p>
<pre>
net.ipv6.conf.all.disable_ipv6 = 1</pre>
<p>To check that IPv6 has been disabled or not, run the following command from your console window</p>
<pre>
# ip a | grep inet</pre>
<p>IPv6 has been disabled if this command does not return any IPv6 addresses.</p>
<script type="text/javascript">var wordpress_toolbar_urls = [];var wordpress_toolbar_url = "http://pario.no/wp-content/plugins/wordpress-toolbar/toolbar.php";var wordpress_toolbar_oinw = "n";var wordpress_toolbar_hash = "aHR0cDovL3BhcmlvLm5vLzIwMTEvMTIvMDkvZGlzYWJsZS1pcHY2LW9uLXVidW50dS0xMS0xMC88d3B0Yj5EaXNhYmxlIElQdjYgb24gVWJ1bnR1IDExLjEwPHdwdGI%2BaHR0cDovL3BhcmlvLm5vPHdwdGI%2BUGFyaW8gVGVjaG5vQmxvYg%3D%3D";</script>]]></content:encoded>
			<wfw:commentRss>http://pario.no/2011/12/09/disable-ipv6-on-ubuntu-11-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix low volume issue in Ubuntu 11.04</title>
		<link>http://pario.no/2011/09/19/fix-low-volume-issue-in-ubuntu-11-04/</link>
		<comments>http://pario.no/2011/09/19/fix-low-volume-issue-in-ubuntu-11-04/#comments</comments>
		<pubDate>Sun, 18 Sep 2011 22:06:57 +0000</pubDate>
		<dc:creator>Hans-Henry Jakobsen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[11.04]]></category>
		<category><![CDATA[alsamixer]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://pario.no/?p=1602</guid>
		<description><![CDATA[This post is a short howto to fix/workaround the problem with low volume in some Ubuntu 11.04 installations. The fix for me was to open a console window (as the user I&#8217;m logged in with) and start the alsamixer # alsamixer You will then see the alsamixer window. Use the left/right arrow keys and choose [...]]]></description>
			<content:encoded><![CDATA[<p>This post is a short howto to fix/workaround the problem with low volume in some Ubuntu 11.04 installations.<br />
The fix for me was to open a console window (as the user I&#8217;m logged in with) and start the alsamixer</p>
<pre># alsamixer</pre>
<p>You will then see the alsamixer window. Use the left/right arrow keys and choose the device you would like to configure. In my case it was the headphone.<br />
<img class="alignleft size-full wp-image-1604" title="ubuntu-1104-alsamixer-01" src="http://pario.no/wp-content/uploads/2011/09/ubuntu-1104-alsamixer-01.png" alt="" width="625" height="320" /></p>
<p>Choose which sound card you would like to configure on the headphone by pressing the F6-key. Make your choice and press the Enter-key.<br />
<img class="alignleft size-full wp-image-1605" title="ubuntu-1104-alsamixer-02" src="http://pario.no/wp-content/uploads/2011/09/ubuntu-1104-alsamixer-02.png" alt="" width="635" height="333" /></p>
<p>Use your up/down arrow keys to choose the right volume for your configuration. You should have some audio playing while you configure to determine the right value.<br />
<img class="alignleft size-full wp-image-1606" title="ubuntu-1104-alsamixer-03" src="http://pario.no/wp-content/uploads/2011/09/ubuntu-1104-alsamixer-03.png" alt="" width="631" height="336" /></p>
<p>Press the Esc key to exit alsamixer when you have found the right volume. Your settings are persistent and will survive a reboot.<br />
<img class="alignleft size-full wp-image-1607" title="ubuntu-1104-alsamixer-04" src="http://pario.no/wp-content/uploads/2011/09/ubuntu-1104-alsamixer-04.png" alt="" width="628" height="321" /></p>
<p>You are now done with configuring your sound card.</p>
<script type="text/javascript">var wordpress_toolbar_urls = [];var wordpress_toolbar_url = "http://pario.no/wp-content/plugins/wordpress-toolbar/toolbar.php";var wordpress_toolbar_oinw = "n";var wordpress_toolbar_hash = "aHR0cDovL3BhcmlvLm5vLzIwMTEvMDkvMTkvZml4LWxvdy12b2x1bWUtaXNzdWUtaW4tdWJ1bnR1LTExLTA0Lzx3cHRiPkZpeCBsb3cgdm9sdW1lIGlzc3VlIGluIFVidW50dSAxMS4wNDx3cHRiPmh0dHA6Ly9wYXJpby5ubzx3cHRiPlBhcmlvIFRlY2hub0Jsb2I%3D";</script>]]></content:encoded>
			<wfw:commentRss>http://pario.no/2011/09/19/fix-low-volume-issue-in-ubuntu-11-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Choosing Gnome as default Desktop in Ubuntu 11.04</title>
		<link>http://pario.no/2011/04/17/choosing-gnome-as-default-desktop-in-ubuntu-11-04/</link>
		<comments>http://pario.no/2011/04/17/choosing-gnome-as-default-desktop-in-ubuntu-11-04/#comments</comments>
		<pubDate>Sat, 16 Apr 2011 22:52:08 +0000</pubDate>
		<dc:creator>Hans-Henry Jakobsen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[11.04]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[natty narwhal]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[unity]]></category>

		<guid isPermaLink="false">http://pario.no/?p=1509</guid>
		<description><![CDATA[This post describes how you can change from the Unity Desktop environment that is the default desktop environment to the Gnome Desktop in Ubuntu 11.04 (Natty Narwhal) Beta. The desktop environment I like to use is the desktop named Ubuntu Classic and you can change to this desktop by going to (or searching for) System [...]]]></description>
			<content:encoded><![CDATA[<p>This post describes how you can change from the Unity Desktop environment that is the default desktop environment to the Gnome Desktop in Ubuntu 11.04 (Natty Narwhal) Beta.<br />
The desktop environment I like to use is the desktop named Ubuntu Classic and you can change to this desktop by going to (or searching for) System Settings -&gt; System-&gt; Admin -&gt; Login.<br />
<img class="alignleft size-medium wp-image-1511" title="ubuntu-1104-login-screen" src="http://pario.no/wp-content/uploads/2011/04/ubuntu-1104-login-screen-300x207.png" alt="" width="300" height="207" /><br />
Here you can choose between</p>
<ul>
<li>Ubuntu Classic (No effects)</li>
<li>Ubuntu (Safe Mode)</li>
<li>Ubuntu</li>
<li>XBMC</li>
<li>Ubuntu Classic</li>
<li>Recovery Console</li>
</ul>
<p>Log out of the Unity desktop after choosing Ubuntu Classic and pressing the Close button.</p>
<p>You can now choose your desired desktop environment from the bottom of the screen. If you would like to use the Gnome Desktop environment like the one we are used to in Ubuntu 10.10 and earlier, just choose Ubuntu Classic and login again.</p>
<script type="text/javascript">var wordpress_toolbar_urls = [];var wordpress_toolbar_url = "http://pario.no/wp-content/plugins/wordpress-toolbar/toolbar.php";var wordpress_toolbar_oinw = "n";var wordpress_toolbar_hash = "aHR0cDovL3BhcmlvLm5vLzIwMTEvMDQvMTcvY2hvb3NpbmctZ25vbWUtYXMtZGVmYXVsdC1kZXNrdG9wLWluLXVidW50dS0xMS0wNC88d3B0Yj5DaG9vc2luZyBHbm9tZSBhcyBkZWZhdWx0IERlc2t0b3AgaW4gVWJ1bnR1IDExLjA0PHdwdGI%2BaHR0cDovL3BhcmlvLm5vPHdwdGI%2BUGFyaW8gVGVjaG5vQmxvYg%3D%3D";</script>]]></content:encoded>
			<wfw:commentRss>http://pario.no/2011/04/17/choosing-gnome-as-default-desktop-in-ubuntu-11-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change console language i Ubuntu</title>
		<link>http://pario.no/2011/04/12/change-console-language-i-ubuntu/</link>
		<comments>http://pario.no/2011/04/12/change-console-language-i-ubuntu/#comments</comments>
		<pubDate>Tue, 12 Apr 2011 13:43:01 +0000</pubDate>
		<dc:creator>Hans-Henry Jakobsen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://pario.no/?p=1507</guid>
		<description><![CDATA[A short description on how to change the console language in Ubuntu 10.04 LTS Server but it should work on other Debian flavours as well. # dpkg-reconfigure console-data]]></description>
			<content:encoded><![CDATA[<p>A short description on how to change the console language in Ubuntu 10.04 LTS Server but it should work on other Debian flavours as well.</p>
<pre>
# dpkg-reconfigure console-data</pre>
<script type="text/javascript">var wordpress_toolbar_urls = [];var wordpress_toolbar_url = "http://pario.no/wp-content/plugins/wordpress-toolbar/toolbar.php";var wordpress_toolbar_oinw = "n";var wordpress_toolbar_hash = "aHR0cDovL3BhcmlvLm5vLzIwMTEvMDQvMTIvY2hhbmdlLWNvbnNvbGUtbGFuZ3VhZ2UtaS11YnVudHUvPHdwdGI%2BQ2hhbmdlIGNvbnNvbGUgbGFuZ3VhZ2UgaSBVYnVudHU8d3B0Yj5odHRwOi8vcGFyaW8ubm88d3B0Yj5QYXJpbyBUZWNobm9CbG9i";</script>]]></content:encoded>
			<wfw:commentRss>http://pario.no/2011/04/12/change-console-language-i-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

