<?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>little brain &#187; ubuntu</title>
	<atom:link href="http://littlebrain.org/category/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://littlebrain.org</link>
	<description>me and my brain</description>
	<lastBuildDate>Sun, 20 Jun 2010 15:31:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Convert pdf to image</title>
		<link>http://littlebrain.org/2010/06/20/convert-pdf-to-image/</link>
		<comments>http://littlebrain.org/2010/06/20/convert-pdf-to-image/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 15:31:36 +0000</pubDate>
		<dc:creator>Aldiantoro Nugroho</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[imagemagick]]></category>
		<category><![CDATA[pdf]]></category>

		<guid isPermaLink="false">http://littlebrain.org/?p=232</guid>
		<description><![CDATA[Ever want to convert pdf file to an image? It’s easy with imagemagick. Ubuntu default installation has it. I believe it’s installed in most linux distribution by default. Anyway, here’s how: convert file.pdf file.jpg convert file.pdf file.png Yeah. That easy.]]></description>
			<content:encoded><![CDATA[<p>Ever want to convert pdf file to an image? It’s easy with imagemagick. Ubuntu default installation has it. I believe it’s installed in most linux distribution by default. Anyway, here’s how:</p>
<p><code>convert file.pdf file.jpg<br />
convert file.pdf file.png<br />
</code></p>
<p>Yeah. That easy.</p>
]]></content:encoded>
			<wfw:commentRss>http://littlebrain.org/2010/06/20/convert-pdf-to-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Error Occurred During The Signature Verification</title>
		<link>http://littlebrain.org/2008/11/25/an-error-occurred-during-the-signature-verification/</link>
		<comments>http://littlebrain.org/2008/11/25/an-error-occurred-during-the-signature-verification/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 02:55:56 +0000</pubDate>
		<dc:creator>Aldiantoro Nugroho</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[apt-key]]></category>
		<category><![CDATA[gpg]]></category>

		<guid isPermaLink="false">http://littlebrain.org/?p=211</guid>
		<description><![CDATA[If you&#8217;re using ubuntu as your choice of linux distribution, and you like to add some unofficial repositories, you probably find some warnings when you run apt-get update command. The warnings are probably like this W: A error occurred during &#8230; <a href="http://littlebrain.org/2008/11/25/an-error-occurred-during-the-signature-verification/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re using ubuntu as your choice of linux distribution, and you like to add some unofficial repositories, you probably find some warnings when you run <code>apt-get update</code> command.</p>
<p>The warnings are probably like this</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;color: #ccc; font: 12px Consolas, Lucida Console, Monaco, monospace;">W: A error occurred during the signature verification. The repository is not updated and the previous index files will be used.GPG error: http://dl.google.com stable Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY A040830F7FAC5991
&nbsp;
W: Failed to fetch http://dl.google.com/linux/deb/dists/stable/Release  
&nbsp;
W: Some index files failed to download, they have been ignored, or old ones used instead.
W: You may want to run apt-get update to correct these problems</pre></div></div>

<p>That&#8217;s the warnings I got when I added google debian repository. There won&#8217;t be anything bad about it, since we could still install the packages from that repositories. But, I we could get rid the warnings, that&#8217;s would be a lot better. We could use gpg command to get the key.</p>
<p><b>Short Version</b></p>
<p>For you who don&#8217;t want to read pointless explanations below, here&#8217;s the short version</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;color: #ccc; font: 12px Consolas, Lucida Console, Monaco, monospace;">gpg --keyserver hkp://subkeys.pgp.net --recv-keys A040830F7FAC5991
gpg --export --armor 7FAC5991 | sudo apt-key add -</pre></div></div>

<p><b>Long Version</b></p>
<p>Here&#8217;s the explained step. First we have to get the key from the key server.</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;color: #ccc; font: 12px Consolas, Lucida Console, Monaco, monospace;">gpg --keyserver hkp://subkeys.pgp.net --recv-keys A040830F7FAC5991</pre></div></div>

<p>The <code>A040830F7FAC5991</code> is from the warning shown before. You might want to change it if you have different repository. For the google repository, you should get this as the output</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;color: #ccc; font: 12px Consolas, Lucida Console, Monaco, monospace;">gpg: requesting key 7FAC5991 from hkp server subkeys.pgp.net
gpg: key 7FAC5991: public key &quot;Google, Inc. Linux Package Signing Key &lt;linux-packages-keymaster@google.com&gt;&quot; imported
gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
gpg: depth: 0  valid:   1  signed:   0  trust: 0-, 0q, 0n, 0m, 0f, 1u
gpg: Total number processed: 1
gpg:               imported: 1</pre></div></div>

<p>After that, type</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;color: #ccc; font: 12px Consolas, Lucida Console, Monaco, monospace;">gpg --export --armor 7FAC5991 | sudo apt-key add -</pre></div></div>

<p>Where the <code>7FAC5991</code> is from the output shown before.</p>
<p>After that you&#8217;ll get <code>OK</code> as the output. You may run <code>apt-get update</code> again.</p>
<p>Oh, one more thing, I only tested this method in opera and google repositories <img src='http://littlebrain.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://littlebrain.org/2008/11/25/an-error-occurred-during-the-signature-verification/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Banshee 1.0 Beta 2 in Ubuntu 8.04 Hardy Heron</title>
		<link>http://littlebrain.org/2008/05/28/banshee-10-beta-2-in-ubuntu-804-hardy-heron/</link>
		<comments>http://littlebrain.org/2008/05/28/banshee-10-beta-2-in-ubuntu-804-hardy-heron/#comments</comments>
		<pubDate>Wed, 28 May 2008 15:28:39 +0000</pubDate>
		<dc:creator>Aldiantoro Nugroho</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[apt]]></category>
		<category><![CDATA[banshee]]></category>
		<category><![CDATA[hardy heron]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[launchpad]]></category>

		<guid isPermaLink="false">http://littlebrain.org/?p=175</guid>
		<description><![CDATA[Now Banshee 1.0 Beta 2 is released. If you want to try the music player in your ubuntu hardy box, you could add sources.list entry from banshee PPA team. Open software sources (System > Administration > Software Sources). In Third-Party &#8230; <a href="http://littlebrain.org/2008/05/28/banshee-10-beta-2-in-ubuntu-804-hardy-heron/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Now <a href="http://banshee-project.org/Releases/0.99.2">Banshee 1.0 Beta 2</a> is <a href="http://gburt.blogspot.com/2008/05/banshee-10-beta-2-released.html">released</a>. If you want to try the music player in your ubuntu hardy box, you could add sources.list entry from<a href="https://edge.launchpad.net/~banshee-team/+archive"> banshee PPA team</a>.</p>
<p>Open software sources (System > Administration > Software Sources). In Third-Party Software tab, click Add and paste the code below</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="text" style="font-family:monospace;color: #ccc; font: 12px Consolas, Lucida Console, Monaco, monospace;">deb http://ppa.launchpad.net/banshee-team/ubuntu hardy main</pre></td></tr></table></div>

<p>If you need the source, you could repeat the Add proccess, and paste this</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="text" style="font-family:monospace;color: #ccc; font: 12px Consolas, Lucida Console, Monaco, monospace;">deb-src http://ppa.launchpad.net/banshee-team/ubuntu hardy main</pre></td></tr></table></div>

<p>Close the Software Sources. Wait for a few moment while the software update your package database. Then open the terminal, and type</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="text" style="font-family:monospace;color: #ccc; font: 12px Consolas, Lucida Console, Monaco, monospace;">sudo apt-get install banshee-1</pre></td></tr></table></div>

<p>Yes, use <code>banshee-1</code>. If you use <code>banshee</code>, you&#8217;ll get the old Banshee 0.13.2 from universe repository.</p>
<p>And, enjoy your new Banshee <img src='http://littlebrain.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://littlebrain.org/2008/05/28/banshee-10-beta-2-in-ubuntu-804-hardy-heron/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check Your System Compiz Capability</title>
		<link>http://littlebrain.org/2008/05/20/check-your-system-compiz-capability/</link>
		<comments>http://littlebrain.org/2008/05/20/check-your-system-compiz-capability/#comments</comments>
		<pubDate>Tue, 20 May 2008 16:49:30 +0000</pubDate>
		<dc:creator>Aldiantoro Nugroho</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[compiz]]></category>

		<guid isPermaLink="false">http://littlebrain.org/?p=169</guid>
		<description><![CDATA[There is a great script created to check whether your system is compiz ready or not. It&#8217;s called Compiz-Check. Gathering information about your system... Distribution: Ubuntu 8.04 Desktop environment: GNOME Graphics chip: nVidia Corporation G70 [GeForce 7300 GT] (rev a1) &#8230; <a href="http://littlebrain.org/2008/05/20/check-your-system-compiz-capability/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>There is a great script created to check whether your system is compiz ready or not. It&#8217;s called <a href="http://forlong.blogage.de/article/pages/Compiz-Check">Compiz-Check</a>.</p>
<pre>Gathering information about your system...

 Distribution:          Ubuntu 8.04
 Desktop environment:   GNOME
 Graphics chip:         nVidia Corporation G70 [GeForce 7300 GT] (rev a1)
 Driver in use:         nvidia
 Rendering method:      Nvidia

Checking if it's possible to run Compiz on your system...

 Checking for texture_from_pixmap...               [ OK ]
 Checking for non power of two support...          [ OK ]
 Checking for composite extension...               [ OK ]
 Checking for FBConfig...                          [ OK ]

Checking for hardware/setup problems...            [ OK ]</pre>
<p>If you got [ OK ] in every check, like mine, then your system is ready to run compiz. If something fails, go check the <a href="http://forum.compiz-fusion.org/">forum</a> <img src='http://littlebrain.org/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://littlebrain.org/2008/05/20/check-your-system-compiz-capability/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To Install Oracle XE in Ubuntu 64 Bit</title>
		<link>http://littlebrain.org/2008/05/12/how-to-install-oracle-xe-in-ubuntu-64-bit/</link>
		<comments>http://littlebrain.org/2008/05/12/how-to-install-oracle-xe-in-ubuntu-64-bit/#comments</comments>
		<pubDate>Mon, 12 May 2008 15:42:20 +0000</pubDate>
		<dc:creator>Aldiantoro Nugroho</dc:creator>
				<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://littlebrain.org/?p=163</guid>
		<description><![CDATA[While you&#8217;re thinking by installing 64 bit linux you&#8217;re standing in the edge of new technology era, it sucks knowing our 64 bit system is less supported than the old 32 bit system. We have to install 32 bit flash &#8230; <a href="http://littlebrain.org/2008/05/12/how-to-install-oracle-xe-in-ubuntu-64-bit/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>While you&#8217;re thinking by installing 64 bit linux you&#8217;re standing in the edge of new technology era, it sucks knowing our 64 bit system is less supported than the old 32 bit system. We have to install 32 bit flash since Adobe didn&#8217;t have the 64 bit one. We have to install 32 bit oracle xe since Oracle also didn&#8217;t have 64 bit version.</p>
<p>And now I will try explain how to install oracle xe into the 64 bit system, ubuntu way. Of course we couldn&#8217;t follow the <a href="http://www.oracle.com/technology/tech/linux/install/xe-on-kubuntu.html">guide from oracle</a>, since apt-get will detect our system architecture and we won&#8217;t get the 32 bit packages list.</p>
<p>Before we start, make sure you have the 32 bit library installed. It&#8217;s in reposity, all you have to do is</p>
<p><code>sudo apt-get install libc6-i386</code></p>
<p>The next thing to do is download the files needed. It&#8217;s <a href="http://oss.oracle.com/debian/dists/unstable/main/binary-i386/libaio_0.3.104-1_i386.deb">libaio_0.3.104-1_i386.deb</a> and <a href="http://oss.oracle.com/debian/dists/unstable/non-free/binary-i386/oracle-xe-universal_10.2.0.1-1.1_i386.deb">oracle-xe-universal_10.2.0.1-1.1_i386.deb</a>. You could use wget for this</p>
<p><code>wget -c http://oss.oracle.com/debian/dists/unstable/main/binary-i386/libaio_0.3.104-1_i386.deb http://oss.oracle.com/debian/dists/unstable/non-free/binary-i386/oracle-xe-universal_10.2.0.1-1.1_i386.deb</code></p>
<p>After your downloads are finished, we continue to the main issue, forcing the package to be installed. You could try to install with usual dpkg -i first to make sure your system is really 64 bit.</p>
<p><code>sudo dpkg -i libaio_0.3.104-1_i386.deb</code></p>
<p>You&#8217;ll get error,</p>
<p><code>dpkg: error processing libaio_0.3.104-1_i386.deb (--install):<br />
package architecture (i386) does not match system (amd64)<br />
Errors were encountered while processing:<br />
libaio_0.3.104-1_i386.deb</code></p>
<p><em>Added guide from <strong>Venka A</strong></em></p>
<p><code>sudo apt-get install bc</code></p>
<p>To force the installation, do these</p>
<p><code>dpkg -i --force-architecture libaio_0.3.104-1_i386.deb</code><br />
<code>dpkg -i --force-architecture oracle-xe-universal_10.2.0.1-1.1_i386.deb</code></p>
<p>And after the installation is finished, you need to configure it</p>
<p><code>sudo /etc/init.d/oracle-xe configure</code></p>
<p>and edit your ~/.bashrc</p>
<p><code>ORACLE_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server<br />
PATH=$PATH:$ORACLE_HOME/bin<br />
export ORACLE_HOME<br />
export ORACLE_SID=XE<br />
export PATH</code></p>
<p>And, voila, the oracle xe is ready. You could go to <a href="http://127.0.0.1:8080/apex">http://127.0.0.1:8080/apex</a> from your browser.</p>
<p>References:</p>
<ul>
<li><a href="http://dballester.blogspot.com/2007/04/oracle-xe-en-ubuntu-edgy-amd64-em64t.html">Oracle XE en Ubuntu Edgy amd64 / em64t ( x86-64 )</a></li>
<li><a href="https://help.ubuntu.com/community/Oracle10g#head-310ffbf270536395fae3c8f74c7817a60ef7c3f1">Oracle Express Edition / on Ubuntu Edgy 6.10</a></li>
<li><a href="http://www.oracle.com/technology/tech/linux/install/xe-on-kubuntu.html">Installing Oracle Database XE on Debian, Ubuntu, and Kubuntu</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://littlebrain.org/2008/05/12/how-to-install-oracle-xe-in-ubuntu-64-bit/feed/</wfw:commentRss>
		<slash:comments>54</slash:comments>
		</item>
	</channel>
</rss>
