<?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>Codigo Manso &#187; ubuntu</title>
	<atom:link href="http://www.codigomanso.com/en/tag/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codigomanso.com</link>
	<description>Programación, informática y tecnología</description>
	<lastBuildDate>Sun, 21 Aug 2011 10:54:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>[SOLVED] Number pad is not working in ubuntu</title>
		<link>http://www.codigomanso.com/en/2010/09/solved-number-pad-not-working-n-ubuntu/</link>
		<comments>http://www.codigomanso.com/en/2010/09/solved-number-pad-not-working-n-ubuntu/#comments</comments>
		<pubDate>Thu, 09 Sep 2010 06:20:10 +0000</pubDate>
		<dc:creator>Pau Sanchez</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[solved]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.codigomanso.com/es/?p=926</guid>
		<description><![CDATA[It&#8217;s the second time that I have to solve the problem of the number pad not working in Ubuntu. For what I&#8217;ve seen in some forums it happens in other linux distributions as well.
The solution in 4 simple steps:
  &#8211; Open System -> Preferences -> Keyboard
  &#8211; Click on the Mouse Keys tab
 [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s the second time that I have to solve the problem of the number pad not working in Ubuntu. For what I&#8217;ve seen in some forums it happens in other linux distributions as well.</p>
<p>The solution in 4 simple steps:<br />
  &#8211; Open <strong>System -> Preferences -> Keyboard</strong><br />
  &#8211; Click on the <strong>Mouse Keys</strong> tab<br />
  &#8211; Deselect <strong>&quot;Pointer can be controlled using the keypad&quot;</strong><br />
  &#8211; And, finally, just click on <strong>Close</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codigomanso.com/en/2010/09/solved-number-pad-not-working-n-ubuntu/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Running Google App Engine in Ubuntu 10.4 Lucid Lynx</title>
		<link>http://www.codigomanso.com/en/2010/05/google-app-engine-en-ubuntu-10-4-lucid-lynx/</link>
		<comments>http://www.codigomanso.com/en/2010/05/google-app-engine-en-ubuntu-10-4-lucid-lynx/#comments</comments>
		<pubDate>Mon, 03 May 2010 17:06:55 +0000</pubDate>
		<dc:creator>Pau Sanchez</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[gae]]></category>
		<category><![CDATA[google app engine]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.codigomanso.com/es/?p=863</guid>
		<description><![CDATA[It is not new, it always happens the same to me. After I update my computer to the latest version of Ubuntu (in this case version 10.4) I always have to spend a couple of days  reconfiguring things or reinstalling packages.
The thing is that right now I am developing an application using Google App [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">It is not new, it always happens the same to me. After I update my computer to the latest version of Ubuntu (in this case version 10.4) I always have to spend a couple of days  <a href="http://www.codigomanso.com/es/2010/04/ubuntu-10-4-poner-el-boton-de-cerrar-la-ventana-a-la-derecha/" target="_self">reconfiguring things</a> or reinstalling packages.</p>
<p style="text-align: justify;">The thing is that right now I am developing an application using <a href="http://code.google.com/appengine/">Google App Engine</a> (GAE  for friends), and for not having problems when deploying the next version, it is recommended to use Python 2.5 when developing.</p>
<p style="text-align: justify;">As you might have guessed in the title, Canonical have removed the Python2.5 package from the latest Ubuntu Lucid release, so I cannot run the local  Google App Engine web server.</p>
<p style="text-align: justify;">Lucky me, after searching for a while on <a href="http://www.launchpad.net">launchpad.net</a> I&#8217;ve found a solution. There is a person that has created  <a href="https://launchpad.net/~fkrull/+archive/deadsnakes">python2.4 and python2.5 packages</a> for Ubuntu Lucid Lynx.</p>
<p style="text-align: justify;">The only think you should do is add the following two lines at the end of your   /etc/apt/sources.list</p>
<pre id="sources-list-entries">deb <a href="http://ppa.launchpad.net/fkrull/deadsnakes/ubuntu">http://ppa.launchpad.net/fkrull/deadsnakes/ubuntu</a> lucid main
deb-src <a href="http://ppa.launchpad.net/fkrull/deadsnakes/ubuntu">http://ppa.launchpad.net/fkrull/deadsnakes/ubuntu</a> lucid main</pre>
<p style="text-align: justify;">And finally run:</p>
<pre>
$ sudo apt-get update
$ sudo apt-get install python2.5
</pre>
<p style="text-align: justify;">And that&#8217;s it, you can now run GoogleAppEngine.</p>
<p>Interesting links:</p>
<ul>
<li><a href="https://launchpad.net/~fkrull/+archive/deadsnakes">Old Python  versions in Launchpad</a> (you can check on this website the packages and how to install them)</li>
<li><a href="http://www.python.org/download/releases/2.5.5/">Python 2.5.5  release page</a></li>
<li><a href="http://code.google.com/appengine/">Google App Engine</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.codigomanso.com/en/2010/05/google-app-engine-en-ubuntu-10-4-lucid-lynx/feed/</wfw:commentRss>
		<slash:comments>2805</slash:comments>
		</item>
		<item>
		<title>Ubuntu 10.4: How to place the window close button on the right again</title>
		<link>http://www.codigomanso.com/en/2010/04/ubuntu-10-4-poner-el-boton-de-cerrar-la-ventana-a-la-derecha/</link>
		<comments>http://www.codigomanso.com/en/2010/04/ubuntu-10-4-poner-el-boton-de-cerrar-la-ventana-a-la-derecha/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 11:16:07 +0000</pubDate>
		<dc:creator>Pau Sanchez</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.codigomanso.com/es/?p=860</guid>
		<description><![CDATA[Ubuntu  10.4 is live. I&#8217;ve been using Ubuntu for around 4 to 5 years, and I am a pretty happy user.
From my point of view, the big problem I found on this release (which I just installed 5 minutes ago) is that they changed the window buttons from the right to the left side [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ubuntu.com/">Ubuntu  10.4</a> is live. I&#8217;ve been using Ubuntu for around 4 to 5 years, and I am a pretty happy user.</p>
<p>From my point of view, the big problem I found on this release (which I just installed 5 minutes ago) is that they changed the window buttons from the right to the left side of the window. I think 95% of the users are used to the buttons on the right side, and I don&#8217;t see the point on moving them to the left.</p>
<p>Anyway, I don&#8217;t like it, so I searched around, and I&#8217;ve found a quick and easy solution.</p>
<p>Press Alt+F2, then type <strong>gconf-editor</strong> and press enter. That&#8217;s for opening the configuration editor.</p>
<p>Once on this editor, in the item tree at the left, you have to look for this path  <strong>app -&gt; metacity -&gt; general</strong> and you doubleclick on the field named  <strong>button_layout</strong>.</p>
<p>Then, you have only to change the value field and put this:</p>
<p><strong>menu:minimize,maximize,close</strong></p>
<p>You save the changes, and voila!! all the windows reconfigured again!</p>
<p>Now all the windows show the minimize, maximize and close buttons on the right again <img src='http://www.codigomanso.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.codigomanso.com/en/2010/04/ubuntu-10-4-poner-el-boton-de-cerrar-la-ventana-a-la-derecha/feed/</wfw:commentRss>
		<slash:comments>492</slash:comments>
		</item>
		<item>
		<title>Google Chrome for Linux</title>
		<link>http://www.codigomanso.com/en/2009/12/google-chrome-para-linux/</link>
		<comments>http://www.codigomanso.com/en/2009/12/google-chrome-para-linux/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 06:09:44 +0000</pubDate>
		<dc:creator>Pau Sanchez</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[navegador]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.codigomanso.com/es/?p=800</guid>
		<description><![CDATA[Today I&#8217;ve received an e-mail from Google telling me that they launched the new beta for linux of their browser Google Chrome.  It&#8217;s been a while since they first launched a version for Windows.
As you might expect, I&#8217;ve downloaded and installed this brand new version of Chrome for Linux and I installed on my Ubuntu [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Today I&#8217;ve received an e-mail from Google telling me that they launched the new beta for linux of their browser Google Chrome.  It&#8217;s been a while since they first launched a version for Windows.</p>
<p style="text-align: justify;">As you might expect, I&#8217;ve downloaded and installed <a href="http://www.google.com/chrome/intl/en-GB/w00t.html" target="_blank">this brand new version of Chrome for Linux</a> and I installed on my Ubuntu 64-bit laptop.</p>
<p style="text-align: justify;">The truth is that it caused me a great impression, when I launched google-chrome command, the browser just appeared in a fraction of a second. I though Opera was quite amazing at rendering the browser, but now I think Chrome is even faster.</p>
<p style="text-align: justify;">The next thing I tried is <a href="http://www.artypist.com/en/typing-test/" target="_self">the typing test of ARTypist</a>, and it worked amazingly well. I know it uses internally a lot of javascript, and it all works great.  Even the CSS displays properly well, and since several months ago I haven&#8217;t tried to run ARTypist on Chrome <img src='http://www.codigomanso.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="text-align: justify;">Finally, after visiting another couple of web sites I realized flash worked as well without me having to install any plugin. I don&#8217;t know if it has detected the flash plugin was already installed (probably), but it&#8217;s great having it working on all pages. At the first sight, it seems the browser seems it&#8217;s working well <img src='http://www.codigomanso.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="text-align: justify;">Right now I&#8217;m not planning to change Firefox by Chrome, but at least I can test my webs on Chrome without having to open a virtual machine with Windows.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codigomanso.com/en/2009/12/google-chrome-para-linux/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>[SOLVED] The kvm-qemu virtual machine ignores shutdown and reboot</title>
		<link>http://www.codigomanso.com/en/2009/11/solved-qemu-kvm-virtual-machine-ignores-shutdown-and-reset/</link>
		<comments>http://www.codigomanso.com/en/2009/11/solved-qemu-kvm-virtual-machine-ignores-shutdown-and-reset/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 08:46:55 +0000</pubDate>
		<dc:creator>Pau Sanchez</dc:creator>
				<category><![CDATA[Administracion de Servidores]]></category>
		<category><![CDATA[acpi]]></category>
		<category><![CDATA[apic]]></category>
		<category><![CDATA[kvm]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[qemu]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[virtualización]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.codigomanso.com/es/?p=761</guid>
		<description><![CDATA[These days I&#8217;ve been playing with KVM (Kernel-based Virtual Machine). All started with a kernel upgrade and VMWare Server stop working, and getting lots of errors when executing vmware-config.pl while recompiling the modules.
Anyway, what matters is that I&#8217;ve migrated a couple of virtual machines from VMWare Server 2 to qemu-kvm.
One of the virtual machines ignored [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">These days I&#8217;ve been playing with KVM (Kernel-based Virtual Machine). All started with a kernel upgrade and VMWare Server stop working, and getting lots of errors when executing vmware-config.pl while recompiling the modules.</p>
<p style="text-align: justify;">Anyway, what matters is that I&#8217;ve migrated a couple of virtual machines from VMWare Server 2 to qemu-kvm.</p>
<p style="text-align: justify;">One of the virtual machines ignored me completely when I pressed the &#8220;Shutdown&#8221; and &#8220;Reboot&#8221; buttons in the Virtual Manager. The virtualized/guest machine was a Ubuntu Server.</p>
<p style="text-align: justify;">After searching in Google for a while I found a solution! Fortunately it was an easy solution, although I had to search for a while. The package <strong>acpid</strong> was missing.</p>
<p style="text-align: justify;">The problem was solved after installling acpid package.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> acpid</pre></div></div>

<p style="text-align: justify;">After installing this, the &#8217;shutdown&#8217; and &#8216;reboot&#8217; buttons worked perfectly!</p>
<p style="text-align: justify;">Just in case you have the same problem when virtualizing a Windows machine (yes, I had the same problem), the problem is in the configuration of the virtual machine. The solution I&#8217;ve found is to edit the configuration and between &lt;feature&gt; and &lt;/feature&gt; add &lt;acpi/&gt; and &lt;apic/&gt;. After doing this you will probably have to reinstall windows, or repair it using the installation CD or iso (I think there is another way of doing this without reinstalling, but you will have to use Google this time).</p>
<p style="text-align: justify;">Finally, I just want to mention that the Virtual Manager in linux surprised me, it&#8217;s simple but quite functional. It&#8217;s not as functional  as virsh command for editing virtual machine configurations, but you can do the basic, and install new virtual machines from the Virtual Manager GUI which is always a good thing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codigomanso.com/en/2009/11/solved-qemu-kvm-virtual-machine-ignores-shutdown-and-reset/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>How to get the UUID of a disk or partition in Ubuntu</title>
		<link>http://www.codigomanso.com/en/2009/11/como-averiguar-el-uuid-de-un-disco-o-particion-en-ubuntu/</link>
		<comments>http://www.codigomanso.com/en/2009/11/como-averiguar-el-uuid-de-un-disco-o-particion-en-ubuntu/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 15:33:06 +0000</pubDate>
		<dc:creator>Pau Sanchez</dc:creator>
				<category><![CDATA[Administracion de Servidores]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[useful commands]]></category>
		<category><![CDATA[uuid]]></category>

		<guid isPermaLink="false">http://www.codigomanso.com/es/?p=757</guid>
		<description><![CDATA[Sometimes it can be very useful, and even necessary, to know the UUID (Universally Unique Identifier) of a disk or partition in Linux.
Nowadays the configuration for mounting disk partitions on linux (the file /etc/fstab) uses the UUID instead of the device name (/dev/hda1, /dev/sda1 &#8230;).
If you need to know which is the UUID of a [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Sometimes it can be very useful, and even necessary, to know the UUID (Universally Unique Identifier) of a disk or partition in Linux.</p>
<p style="text-align: justify;">Nowadays the configuration for mounting disk partitions on linux (the file /etc/fstab) uses the UUID instead of the device name (/dev/hda1, /dev/sda1 &#8230;).</p>
<p style="text-align: justify;">If you need to know which is the UUID of a particular device you can run the <strong>blkid</strong> command. E.g:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">sudo</span> blkid <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>sda1
<span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>sda1: <span style="color: #007800;">UUID</span>=<span style="color: #ff0000;">&quot;8b6ec31c-1f41-49f3-82da-d2ab0f0fa312&quot;</span> <span style="color: #007800;">TYPE</span>=<span style="color: #ff0000;">&quot;ext3&quot;</span></pre></div></div>

<p style="text-align: justify;">If you don&#8217;t like this command, or you think you cannot remember it, there is another way of knowing the UUID. If you have udev in your system (I think is udev the one that updates the list), you can go to  <strong>/dev/disks/by-uuid/</strong> folder and run a list command (ls). E.g:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">ls</span> <span style="color: #660033;">-l</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>disks<span style="color: #000000; font-weight: bold;">/</span>by-uuid<span style="color: #000000; font-weight: bold;">/</span>
lrwxrwxrwx <span style="color: #000000;">1</span> root root <span style="color: #000000;">10</span> <span style="color: #000000;">2009</span>-<span style="color: #000000;">11</span>-<span style="color: #000000;">19</span> 07:<span style="color: #000000;">56</span> 8b6ec31c-1f41-49f3-82da-d2ab0f0fa312 -<span style="color: #000000; font-weight: bold;">&gt;</span> ..<span style="color: #000000; font-weight: bold;">/</span>..<span style="color: #000000; font-weight: bold;">/</span>sda1
lrwxrwxrwx <span style="color: #000000;">1</span> root root <span style="color: #000000;">10</span> <span style="color: #000000;">2009</span>-<span style="color: #000000;">11</span>-<span style="color: #000000;">19</span> 07:<span style="color: #000000;">56</span> 626adc53-<span style="color: #000000;">3478</span>-4eb1-9f68-dc0b6f9308e7 -<span style="color: #000000; font-weight: bold;">&gt;</span> ..<span style="color: #000000; font-weight: bold;">/</span>..<span style="color: #000000; font-weight: bold;">/</span>sda2
lrwxrwxrwx <span style="color: #000000;">1</span> root root <span style="color: #000000;">10</span> <span style="color: #000000;">2009</span>-<span style="color: #000000;">11</span>-<span style="color: #000000;">19</span> 07:<span style="color: #000000;">56</span> 9cfc5c6d-f343-411e-ac59-31eee6b12a9b -<span style="color: #000000; font-weight: bold;">&gt;</span> ..<span style="color: #000000; font-weight: bold;">/</span>..<span style="color: #000000; font-weight: bold;">/</span>sda3</pre></div></div>

<p style="text-align: justify;">The advantage of this command is that we don&#8217;t need administrator privileges, and it&#8217;s easier to remember <img src='http://www.codigomanso.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.codigomanso.com/en/2009/11/como-averiguar-el-uuid-de-un-disco-o-particion-en-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PHP amazingly improves itself</title>
		<link>http://www.codigomanso.com/en/2009/11/php-se-supera-a-si-mismo/</link>
		<comments>http://www.codigomanso.com/en/2009/11/php-se-supera-a-si-mismo/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 09:20:29 +0000</pubDate>
		<dc:creator>Pau Sanchez</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[goto]]></category>
		<category><![CDATA[karmic]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[php 5.3]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.codigomanso.com/es/?p=748</guid>
		<description><![CDATA[This was me, looking how to install PHP 5.3 in the new Ubuntu Karmic, because using the new functionality of late static binding will simplify my code, and I&#8217;ve found something amazing. A new feature that was missing in PHP, but they have included in PHP 5.3&#8230;
the&#8230;
wait for it&#8230;.
wait for it&#8230;.
wait for it&#8230;.
GOTO
It&#8217;s amazing how [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">This was me, looking how to install PHP 5.3 in the new Ubuntu Karmic, because using the new functionality of late static binding will simplify my code, and I&#8217;ve found something amazing. A new feature that was missing in PHP, but they have included in PHP 5.3&#8230;</p>
<p style="text-align: center;height: 3em;">the&#8230;</p>
<p style="text-align: center;height: 3em;">wait for it&#8230;.</p>
<p style="text-align: center;height: 3em;">wait for it&#8230;.</p>
<p style="text-align: center;height: 3em;">wait for it&#8230;.</p>
<p style="text-align: center;font-size: 2em; height: 2em;"><strong>GOTO</strong></p>
<p style="text-align: justify;">It&#8217;s amazing how PHP team is including in the same release high-level features, as well as a low-level feature like that (BTW most of the people will consider this feature harmful). They should have felt a great pressure from people or something, because I cannot find any reasonable reason for them to include it&#8230;</p>
<p style="text-align: justify;"><a href="http://us.php.net/goto" target="_blank">In the PHP <b>goto</b> documentation</a> you will see that at least, they are funny about it:</p>
<p style="text-align: justify;"><a href="http://us.php.net/goto" target="_blank"><img class="aligncenter" title="Take care, hungry dinosaur approaching" src="http://us.php.net/manual/en/images/0baa1b9fae6aec55bbb73037f3016001-xkcd-goto.png" alt="" width="516" height="140" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codigomanso.com/en/2009/11/php-se-supera-a-si-mismo/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Installing Firefox 3.5 in Ubuntu</title>
		<link>http://www.codigomanso.com/en/2009/07/instalar-firefox-3-5-en-ubuntu/</link>
		<comments>http://www.codigomanso.com/en/2009/07/instalar-firefox-3-5-en-ubuntu/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 08:18:13 +0000</pubDate>
		<dc:creator>Pau Sanchez</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.codigomanso.com/es/?p=682</guid>
		<description><![CDATA[

In order to install Firefox 3.5 in Ubuntu (before Canonical update the official repositories) is as follows:

First you should add following line in /etc/apt/sources.list (in order to edit this file you will need admin privileges, aka run as root):

deb http://ppa.launchpad.net/fta/ppa/ubuntu jaunty main


Then, we should run following command to validate previous repository and make apt-get to [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-685" title="firefox-3.5" src="http://www.codigomanso.com/wp-content/uploads/2009/07/firefox-3.5.jpg" alt="firefox-3.5" width="320" height="102"/>
</p>
<p>In order to install Firefox 3.5 in Ubuntu (before Canonical update the official repositories) is as follows:</p>
<ul>
<li>First you should add following line in /etc/apt/sources.list (in order to edit this file you will need admin privileges, aka run as root):

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">deb http:<span style="color: #000000; font-weight: bold;">//</span>ppa.launchpad.net<span style="color: #000000; font-weight: bold;">/</span>fta<span style="color: #000000; font-weight: bold;">/</span>ppa<span style="color: #000000; font-weight: bold;">/</span>ubuntu jaunty main</pre></div></div>

</li>
<li>Then, we should run following command to validate previous repository and make apt-get to work:

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-key</span> adv <span style="color: #660033;">--recv-keys</span> <span style="color: #660033;">--keyserver</span> keyserver.ubuntu.com 0C713DA6</pre></div></div>

</li>
<li>Finally we install Firefox-3.5 by running following command:

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> firefox-<span style="color: #000000;">3.5</span></pre></div></div>

</li>
<li>Addicionally you can change the symbolic link at /usr/bin/firefox to refer to /usr/bin/firefox-3.5</li>
</ul>
<p>That&#8217;s it!! Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codigomanso.com/en/2009/07/instalar-firefox-3-5-en-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing Canon PIXMA iP2600 printer in Ubuntu 9.04 64-bits</title>
		<link>http://www.codigomanso.com/en/2009/06/instalar-impresora-canon-pixma-ip2600-en-ubuntu-904-64-bits/</link>
		<comments>http://www.codigomanso.com/en/2009/06/instalar-impresora-canon-pixma-ip2600-en-ubuntu-904-64-bits/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 05:43:14 +0000</pubDate>
		<dc:creator>Pau Sanchez</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[impresora]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[usb]]></category>

		<guid isPermaLink="false">http://www.codigomanso.com/es/?p=672</guid>
		<description><![CDATA[
While I was in UK, I bought a  Canon PIXMA iP2600 printer. It was not expensive at all and the ink was not as expensive as other printers, so I though it would be a good purchase for the price.
The thing is that when I tried to install the printer in Ubuntu 64-bit, there were [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><img class="alignnone size-full wp-image-673" style="float:left; margin-right: 8px" title="Canon PIXMA iP2600" src="http://www.codigomanso.com/wp-content/uploads/2009/06/pixma-ip2600_w200_tcm86-487291.jpg" alt="Canon PIXMA iP2600" width="200" height="200" /><br />
While I was in UK, I bought a  Canon PIXMA iP2600 printer. It was not expensive at all and the ink was not as expensive as other printers, so I though it would be a good purchase for the price.</p>
<p style="text-align: justify;">The thing is that when I tried to install the printer in Ubuntu 64-bit, there were no available drivers, and althought there were several threads explaining what to do, I never got it working (I swear I spent quite amount of time trying to install the printer, but there was no way).</p>
<p style="text-align: justify;">Yesterday I updated ubuntu, and I saw some printing-related packages updated, so I thought: &#8220;let&#8217;s try again&#8221;. Now my printer works!!</p>
<p style="text-align: justify;">As I said before, the Canon drivers for PIXMA iP2600 are only available for 32-bits, and I&#8217;m using a 64-bit ubuntu installation, so a small trick should be done for installing those drivers  (a trick that did not work 3 months ago).</p>
<p style="text-align: justify;">So, if you have a Canon PIXMA iP2600 or similar, here is what I did to get it working:</p>
<ul>
<li>Go to  <a href="http://www.linuxprinting.org">Linux Printing</a> and look for your printer (in my case PIXMA iP2600)
<ul>
<li>I found this page for the  <a href="http://www.linuxprinting.org/show_printer.cgi?recnum=Canon-PIXMA_iP2600">drivers of Canon PIXMA iP2600</a></li>
</ul>
</li>
<li>I download the drivers for 32-bits operating systems  (there are no 64-bit versions of these drivers):
<ul>
<li><span style="font-family: ms sans serif,helvetica;"><strong><em>cnijfilter-common_2.90-1_i386.deb</em></strong> at <a href="http://support-asia.canon-asia.com/contents/ASIA/EN/0100118902.html">http://support-asia.canon-asia.com/contents/ASIA/EN/0100118902.html</a></span></li>
<li><span style="font-family: ms sans serif,helvetica;"><strong><em>cnijfilter-ip2600series_2.90-1_i386.deb</em></strong> at <a href="http://support-asia.canon-asia.com/contents/ASIA/EN/0100119102.html">http://support-asia.canon-asia.com/contents/ASIA/EN/0100119102.html</a></span></li>
</ul>
</li>
<li><span style="font-family: ms sans serif,helvetica;">I forced the installation of both packages using dpkg:</span>
<ul>
<li><strong>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">dpkg</span> <span style="color: #660033;">-i</span> <span style="color: #660033;">--force-architecture</span> cnijfilter-common_2.90-<span style="color: #000000;">1</span>_i386.deb</pre></div></div>

<p></strong></li>
<li><strong>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">dpkg</span> <span style="color: #660033;">-i</span> <span style="color: #660033;">--force-architecture</span> cnijfilter-ip2600series_2.90-<span style="color: #000000;">1</span>_i386.deb</pre></div></div>

<p></strong></li>
</ul>
</li>
<li>And finally I connected the printer USB to my laptop, I opened the Printer Manager (System -&gt; Administration -&gt; Printing), and I clicked on New Printer button, and after clicking next next a couple of time I clicked on Finish (without changing anything). The printer manager added the new printer and asked me to print a test page and&#8230;</li>
<li><em><strong> voila!  The page has been magically printed!</strong></em></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.codigomanso.com/en/2009/06/instalar-impresora-canon-pixma-ip2600-en-ubuntu-904-64-bits/feed/</wfw:commentRss>
		<slash:comments>145</slash:comments>
		</item>
	</channel>
</rss>

