<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Senarai Waktu &#187; ubuntu</title>
	<atom:link href="http://ewesewes.web.id/category/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://ewesewes.web.id</link>
	<description>Yang sempat ketulis</description>
	<lastBuildDate>Fri, 20 Jan 2012 20:54:37 +0000</lastBuildDate>
	<language>id</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ewesewes.web.id' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Senarai Waktu &#187; ubuntu</title>
		<link>http://ewesewes.web.id</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ewesewes.web.id/osd.xml" title="Senarai Waktu" />
	<atom:link rel='hub' href='http://ewesewes.web.id/?pushpress=hub'/>
		<item>
		<title>Install Maple 10 (or 11) on Ubuntu, License Manager and Compiz Problem</title>
		<link>http://ewesewes.web.id/2008/02/09/install-maple-10-or-11-on-ubuntu-license-manager-and-compiz-problem/</link>
		<comments>http://ewesewes.web.id/2008/02/09/install-maple-10-or-11-on-ubuntu-license-manager-and-compiz-problem/#comments</comments>
		<pubDate>Sat, 09 Feb 2008 02:22:24 +0000</pubDate>
		<dc:creator>rodin</dc:creator>
				<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://rodin.wordpress.com/?p=45</guid>
		<description><![CDATA[&#8230;dreaming, what will be happened in the next exam week&#8230; So you have trouble installing Maple 10 on your ubuntu because *it fails to your detect Host ID* The problem is because the license manager used in the Maple can only use eth0 (the network device on your notebook). If you are like me, that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ewesewes.web.id&amp;blog=1742558&amp;post=45&amp;subd=rodin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><i>&#8230;dreaming, what will be happened in the next exam week&#8230;</i></p>
<p>So you have trouble installing Maple 10 on your ubuntu because <i>*it fails to your detect Host ID*</i></p>
<p>The problem is because the license manager used in the Maple can only use <code>eth0</code> (the network device on your notebook). If you are like me, that has notebook with WIFI, ubuntu may not assign your network card  to <code>eth0</code>.  My notebook was using <code>eth3</code> before, because I have moved my hard disk to  my current notebook.  So when you install  Maple, it fails to detect your Host ID (your Host ID is based on your eth0 MAC Address).</p>
<p>Now you have to find out which ethernet card number you are using right now, using ifconfig</p>
<p><code>romi@mesintik:~$ ifconfig<br />
eth0      Link encap:Ethernet  HWaddr 00:01:4A:XX:YY:ZZ<br />
UP BROADCAST MULTICAST  MTU:1500  Metric:1<br />
RX packets:0 errors:0 dropped:0 overruns:0 frame:0<br />
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0<br />
collisions:0 txqueuelen:1000<br />
RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)</code></p>
<p><code>eth3      Link encap:Ethernet  HWaddr 00:0E:35:XX:YY:ZZ<br />
inet addr:192.168.1.33  Bcast:192.168.1.255  Mask:255.255.255.0<br />
inet6 addr: fe80::20e:35ff:fefd:3f1b/64 Scope:Link<br />
UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1<br />
RX packets:221396 errors:0 dropped:0 overruns:0 frame:0<br />
TX packets:138753 errors:0 dropped:0 overruns:0 carrier:1<br />
collisions:0 txqueuelen:1000<br />
RX bytes:287095962 (273.7 MB)  TX bytes:18427810 (17.5 MB)<br />
Interrupt:22 Base address:0x6000 Memory:b0006000-b0006fff<br />
</code></p>
<p>Now, for example I need to use <code>eth3</code> to be <code>eth0</code>.</p>
<p>So, fire up your text editor (I use gedit), and using sudo command:</p>
<p><code>sudo gedit /etc/udev/rules.d/70-persistent-net.rules</code></p>
<p>The file contents will look like this:</p>
<p><code># This file maintains persistent names for network interfaces.<br />
# See udev(7) for syntax.<br />
#<br />
# Entries are automatically added by the 75-persistent-net-generator.rules<br />
# file; however you are also free to add your own entries.</code></p>
<p><code># PCI device 0x8086:0x1043 (ipw2100)<br />
SUBSYSTEM=="net", DRIVERS=="?*", ATTRS{address}=="00:04:23:XX:YY:ZZ", NAME="eth1"<br />
</code><br />
<code># PCI device 0x8086:0x1068 (e100)<br />
SUBSYSTEM=="net", DRIVERS=="?*", ATTRS{address}=="00:01:4a:XX:YY:ZZ", NAME="eth0"<br />
</code><br />
<code># PCI device 0x8086:0x4220 (ipw2200)<br />
SUBSYSTEM=="net", DRIVERS=="?*", ATTRS{address}=="00:0e:35:XX:YY:ZZ", NAME="eth3"<br />
</code></p>
<p>Because we need to change <code>eth3</code> (HWaddr 00:0E:35:XX:YY:ZZ) to <code>eth0</code>, so you need to edit to change <code>NAME="eth3"</code> to <code>NAME="eth0"</code> and change the previous <code>eth0</code> to <code>ethX</code> where <code>X</code> can be any number.</p>
<p>So the new file is like below:<br />
<code><br />
# PCI device 0x8086:0x1043 (ipw2100)<br />
SUBSYSTEM=="net", DRIVERS=="?*", ATTRS{address}=="00:04:23:XX:YY:ZZ", NAME="eth1"<br />
</code><br />
<code># PCI device 0x8086:0x1068 (e100)<br />
SUBSYSTEM=="net", DRIVERS=="?*", ATTRS{address}=="00:01:4a:XX:YY:ZZ", NAME="eth3"<br />
</code><br />
<code># PCI device 0x8086:0x4220 (ipw2200)<br />
SUBSYSTEM=="net", DRIVERS=="?*", ATTRS{address}=="00:0e:35:XX:YY:ZZ", NAME="eth0"<br />
</code><br />
<code></code>Now, reboot the system and then start Maple installer and proceed as usual.</p>
<p>Now after that, if you enable Compiz and then Maple screen is only display grey-blank-window, you can make a fix as follows:</p>
<p>First, you need to install java-sun-6 from your Synaptic Package Manager (in the <code>System -&gt; Administration</code>)</p>
<p>Edit a maple file that is /path/to/maple/bin/maple:</p>
<p>Find string MAPLE_JRE_BIN and change it to this</p>
<p><code>MAPLE_JRE_BIN="/usr/lib/jvm/java-6-sun/bin/"</code></p>
<p>(Maybe you need to adjust it according with your java installation)</p>
<p>Save and then run xmaple.</p>
<p>Voila!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rodin.wordpress.com/45/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rodin.wordpress.com/45/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rodin.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rodin.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rodin.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rodin.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rodin.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rodin.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rodin.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rodin.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rodin.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rodin.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rodin.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rodin.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rodin.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rodin.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ewesewes.web.id&amp;blog=1742558&amp;post=45&amp;subd=rodin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ewesewes.web.id/2008/02/09/install-maple-10-or-11-on-ubuntu-license-manager-and-compiz-problem/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d89740a75baea13567e521057d42feef?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rodin</media:title>
		</media:content>
	</item>
		<item>
		<title>Ketika memrogram dengan bahasa jawa&#8230;</title>
		<link>http://ewesewes.web.id/2008/01/20/ketika-memrogram-dengan-bahasa-jawa/</link>
		<comments>http://ewesewes.web.id/2008/01/20/ketika-memrogram-dengan-bahasa-jawa/#comments</comments>
		<pubDate>Sun, 20 Jan 2008 11:29:04 +0000</pubDate>
		<dc:creator>rodin</dc:creator>
				<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://rodin.wordpress.com/2008/01/20/ketika-memrogram-dengan-bahasa-jawa/</guid>
		<description><![CDATA[On my ubuntu&#8230;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ewesewes.web.id&amp;blog=1742558&amp;post=31&amp;subd=rodin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://rodin.files.wordpress.com/2008/01/screenshot-9.png" title="My desktop…"><img src="http://rodin.files.wordpress.com/2008/01/screenshot-9.thumbnail.png?w=500" alt="My desktop…" /></a></p>
<p>On my ubuntu&#8230;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rodin.wordpress.com/31/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rodin.wordpress.com/31/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rodin.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rodin.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rodin.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rodin.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rodin.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rodin.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rodin.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rodin.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rodin.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rodin.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rodin.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rodin.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rodin.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rodin.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ewesewes.web.id&amp;blog=1742558&amp;post=31&amp;subd=rodin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ewesewes.web.id/2008/01/20/ketika-memrogram-dengan-bahasa-jawa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d89740a75baea13567e521057d42feef?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rodin</media:title>
		</media:content>

		<media:content url="http://rodin.files.wordpress.com/2008/01/screenshot-9.thumbnail.png" medium="image">
			<media:title type="html">My desktop…</media:title>
		</media:content>
	</item>
		<item>
		<title>Terbanyak dipakai di Ubuntu</title>
		<link>http://ewesewes.web.id/2008/01/13/terbanyak-dipakai-di-ubuntu/</link>
		<comments>http://ewesewes.web.id/2008/01/13/terbanyak-dipakai-di-ubuntu/#comments</comments>
		<pubDate>Sun, 13 Jan 2008 14:26:45 +0000</pubDate>
		<dc:creator>rodin</dc:creator>
				<category><![CDATA[numpang lewat]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://rodin.wordpress.com/2008/01/13/terbanyak-dipakai-di-ubuntu/</guid>
		<description><![CDATA[Firefox OpenOffice Pidgin Terminal Gedit<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ewesewes.web.id&amp;blog=1742558&amp;post=29&amp;subd=rodin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ul>
<li>Firefox</li>
<li>OpenOffice</li>
<li>Pidgin</li>
<li>Terminal</li>
<li>Gedit</li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rodin.wordpress.com/29/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rodin.wordpress.com/29/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rodin.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rodin.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rodin.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rodin.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rodin.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rodin.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rodin.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rodin.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rodin.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rodin.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rodin.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rodin.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rodin.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rodin.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ewesewes.web.id&amp;blog=1742558&amp;post=29&amp;subd=rodin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ewesewes.web.id/2008/01/13/terbanyak-dipakai-di-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d89740a75baea13567e521057d42feef?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rodin</media:title>
		</media:content>
	</item>
		<item>
		<title>Dua Bulan Full Ubuntu</title>
		<link>http://ewesewes.web.id/2007/12/19/dua-bulan-full-ubuntu/</link>
		<comments>http://ewesewes.web.id/2007/12/19/dua-bulan-full-ubuntu/#comments</comments>
		<pubDate>Wed, 19 Dec 2007 08:44:50 +0000</pubDate>
		<dc:creator>rodin</dc:creator>
				<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://rodin.wordpress.com/2007/12/19/dua-bulan-full-ubuntu/</guid>
		<description><![CDATA[Email di Gmail Tugas-tugas di docs.google Masih main-main sama Java pake eclipse. Masalah: koneksi VPN kalau pake openvpn di linux kok nggak pernah bisa ya?<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ewesewes.web.id&amp;blog=1742558&amp;post=22&amp;subd=rodin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ul>
<li>Email di Gmail</li>
<li>Tugas-tugas di docs.google</li>
</ul>
<p>Masih main-main sama Java pake eclipse.</p>
<p>Masalah: koneksi VPN kalau pake openvpn di linux kok nggak pernah bisa ya?</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rodin.wordpress.com/22/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rodin.wordpress.com/22/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rodin.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rodin.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rodin.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rodin.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rodin.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rodin.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rodin.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rodin.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rodin.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rodin.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rodin.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rodin.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rodin.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rodin.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ewesewes.web.id&amp;blog=1742558&amp;post=22&amp;subd=rodin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ewesewes.web.id/2007/12/19/dua-bulan-full-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d89740a75baea13567e521057d42feef?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rodin</media:title>
		</media:content>
	</item>
		<item>
		<title>Terselamatkan oleh Ubuntu</title>
		<link>http://ewesewes.web.id/2007/10/28/terselamatkan-oleh-ubuntu/</link>
		<comments>http://ewesewes.web.id/2007/10/28/terselamatkan-oleh-ubuntu/#comments</comments>
		<pubDate>Sun, 28 Oct 2007 12:54:36 +0000</pubDate>
		<dc:creator>rodin</dc:creator>
				<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://rodin.wordpress.com/2007/10/28/terselamatkan-oleh-ubuntu/</guid>
		<description><![CDATA[&#8220;Eh Romi, entar di sana kontak-kontakan ya&#8221; Ok, itu artinya sesampai di tempat tinggal sekarang, aku masih harus tetap kontak untuk masalah kerjaan lama. No problem, Internet di kantor lama sudah OK banget sejak pindah dari Supidi ke Melsa Kabel. Hard disk dan USB casing masuk koper, notebook kantor tinggal dan berangkat. Di sini sudah [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ewesewes.web.id&amp;blog=1742558&amp;post=13&amp;subd=rodin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#8220;Eh Romi, entar di sana kontak-kontakan ya&#8221;</p>
<p>Ok, itu artinya sesampai di tempat tinggal sekarang, aku masih harus tetap kontak untuk masalah kerjaan lama. <i>No problem</i>, Internet di kantor lama sudah OK banget sejak pindah dari Supidi ke Melsa Kabel. <i>Hard disk</i> dan USB <i>casing</i> masuk koper, <i>notebook</i> kantor tinggal dan berangkat.</p>
<p>Di sini sudah ngantri sang Acer 2001 something. Colok USB <i>casing</i>, piranti terdeteksi and hmmmm kok tidak ada tanda-tanda <i>drive</i> baru keluar ya?</p>
<p>Cabut colokan, pindah ke VAIO kakak.</p>
<p>Sama.</p>
<p><i>Download</i> Ubuntu Gutsy yang beta, jalankan. Ahhhh apa itu ada di log? USB reset something&#8230;</p>
<p>Beberapa hari kemudian, kepikir, kenapa tidak masukkan saja ke <i>notebook</i> sebagai <i>hard disk</i> utama?</p>
<p>Bongkar <i>harddisk</i> VAIO, ganti dengan <i>hard disk</i> yang dikira rusak.  <i>Boot</i> ke Ubuntu.</p>
<p>Jalan! Walau cuma mode 800&#215;600, tapi semuanya ada. Tidak <strike>majalah</strike> masalah. Perbarui <i>driver</i> nvidia, dan semuanya kembali normal.</p>
<p>Terima Kasih Ubuntu!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rodin.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rodin.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rodin.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rodin.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rodin.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rodin.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rodin.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rodin.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rodin.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rodin.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rodin.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rodin.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rodin.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rodin.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rodin.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rodin.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ewesewes.web.id&amp;blog=1742558&amp;post=13&amp;subd=rodin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ewesewes.web.id/2007/10/28/terselamatkan-oleh-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d89740a75baea13567e521057d42feef?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rodin</media:title>
		</media:content>
	</item>
		<item>
		<title>PCMAV di Ubuntu</title>
		<link>http://ewesewes.web.id/2007/06/23/pcmav-di-ubuntu/</link>
		<comments>http://ewesewes.web.id/2007/06/23/pcmav-di-ubuntu/#comments</comments>
		<pubDate>Sat, 23 Jun 2007 11:58:00 +0000</pubDate>
		<dc:creator>rodin</dc:creator>
				<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://rodin.wordpress.com/2007/06/23/pcmav-di-ubuntu/</guid>
		<description><![CDATA[Menjalankan PC Media Antivirus RC17 (kenapa sih pake RC bukan V aja?) ternyata&#8230; Persyaratan: -Ubuntu feisty -Install wine Cara menjalankan: -Double klik PCMAV-CLN.exe Lho gitu aja? iya<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ewesewes.web.id&amp;blog=1742558&amp;post=61&amp;subd=rodin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://bp1.blogger.com/_mw52Y8rZnuo/Rn0OLb0dqtI/AAAAAAAABAs/i8094LLmt_k/s1600-h/Screenshot.png"><img src="http://bp1.blogger.com/_mw52Y8rZnuo/Rn0OLb0dqtI/AAAAAAAABAs/i8094LLmt_k/s320/Screenshot.png" style="float:right;margin:0 0 10px 10px;" border="0" /></a><br />
Menjalankan PC Media Antivirus RC17 (kenapa sih pake RC bukan V aja?) ternyata&#8230;</p>
<p>Persyaratan:</p>
<p>-Ubuntu feisty<br />
-Install wine</p>
<p>Cara menjalankan:</p>
<p>-Double klik PCMAV-CLN.exe</p>
<p>Lho gitu aja? iya</p>
<div class="blogger-post-footer"></div>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rodin.wordpress.com/61/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rodin.wordpress.com/61/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rodin.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rodin.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rodin.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rodin.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rodin.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rodin.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rodin.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rodin.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rodin.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rodin.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rodin.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rodin.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rodin.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rodin.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ewesewes.web.id&amp;blog=1742558&amp;post=61&amp;subd=rodin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ewesewes.web.id/2007/06/23/pcmav-di-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d89740a75baea13567e521057d42feef?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rodin</media:title>
		</media:content>

		<media:content url="http://bp1.blogger.com/_mw52Y8rZnuo/Rn0OLb0dqtI/AAAAAAAABAs/i8094LLmt_k/s320/Screenshot.png" medium="image" />
	</item>
		<item>
		<title>Instal SIMA di Ubuntu</title>
		<link>http://ewesewes.web.id/2007/06/01/instal-sima-di-ubuntu/</link>
		<comments>http://ewesewes.web.id/2007/06/01/instal-sima-di-ubuntu/#comments</comments>
		<pubDate>Thu, 31 May 2007 23:16:00 +0000</pubDate>
		<dc:creator>rodin</dc:creator>
				<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://rodin.wordpress.com/2007/06/01/instal-sima-di-ubuntu/</guid>
		<description><![CDATA[Nggak, nggak sulit-sulit amat kok Pertama: Jika Wine belum terinstalasi, klik pada Add/Remove Program, cari wine dan install. Kedua: Buka Terminal dari menu Accesories, ketik wine msiexec /i sima_setup.msi Ketiga: Masih dari Terminal, ini yang rada ribet: Buat folder /home/namauser/.wine/drive_c/Program\ Files/Common\ Files/System/ado/ dengan perintah mkdir /home/namauser/.wine/drive_c/Program\ Files/Common\ Files/System/ado/ Keempat: Copy file-file dari Windows XP yang [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ewesewes.web.id&amp;blog=1742558&amp;post=59&amp;subd=rodin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Nggak, nggak sulit-sulit amat kok</p>
<p>Pertama:<br />
Jika Wine belum terinstalasi, klik pada Add/Remove Program, cari wine dan install.</p>
<p>Kedua:<br />
Buka Terminal dari menu Accesories, ketik<br />
<code>wine msiexec /i sima_setup.msi</code></p>
<p>Ketiga:<br />
Masih dari Terminal, ini yang rada ribet:<br />
Buat folder<br />
/home/namauser/.wine/drive_c/Program\ Files/Common\ Files/System/ado/<br />
dengan perintah<br />
<code>mkdir /home/namauser/.wine/drive_c/Program\ Files/Common\ Files/System/ado/</code></p>
<p>Keempat:<br />
Copy file-file dari Windows XP yang ada di bawah C:\Program Files\Common Files\System\ado ke folder /home/namauser/.wine/drive_c/Program\ Files/Common\ Files/System/ado/<br />
Catatan: kalau folder .wine anda tidak kelihatan, Buka Home Folder dari Menu Places, Pilih menu View -&gt; Show Hidden Files</p>
<p>Kelima:<br />
Copy file C:\Windows\System32\msdart.dll ke /home/namauser/.wine/drive_c/windows/system32</p>
<p>Keempat :<br />
Ketikkan dari window Terminal:<br />
<code>wine regsvr32 /home/namauser/.wine/drive_c/windows/system32/msdart.dll</code><br />
Dan<br />
<code>wine regsvr32 /home/namauser/.wine/drive_c/Program\ Files/Common\ Files/System/ado/msado15.dll</code></p>
<p>Kelima:<br />
Klik icon SIMA dari Desktop, atau dari menu Applications | Wine</p>
<p>Keenam:<br />
Voila</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rodin.wordpress.com/59/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rodin.wordpress.com/59/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rodin.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rodin.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rodin.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rodin.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rodin.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rodin.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rodin.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rodin.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rodin.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rodin.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rodin.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rodin.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rodin.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rodin.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ewesewes.web.id&amp;blog=1742558&amp;post=59&amp;subd=rodin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ewesewes.web.id/2007/06/01/instal-sima-di-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d89740a75baea13567e521057d42feef?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rodin</media:title>
		</media:content>
	</item>
		<item>
		<title>Rame2 Feisty</title>
		<link>http://ewesewes.web.id/2007/04/29/rame2-feisty/</link>
		<comments>http://ewesewes.web.id/2007/04/29/rame2-feisty/#comments</comments>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<dc:creator>rodin</dc:creator>
				<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://rodin.wordpress.com/?p=56</guid>
		<description><![CDATA[Akhirnya keluar Dan langsung pesta&#8230; Kudu kompile deui euy&#8230;. sun-java5 apa sun-java6 ya?<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ewesewes.web.id&amp;blog=1742558&amp;post=56&amp;subd=rodin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ubuntu.com">Akhirnya keluar</a></p>
<p>Dan langsung pesta&#8230;</p>
<p>Kudu kompile deui euy&#8230;.</p>
<p>sun-java5 apa sun-java6 ya?</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rodin.wordpress.com/56/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rodin.wordpress.com/56/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rodin.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rodin.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rodin.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rodin.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rodin.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rodin.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rodin.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rodin.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rodin.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rodin.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rodin.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rodin.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rodin.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rodin.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ewesewes.web.id&amp;blog=1742558&amp;post=56&amp;subd=rodin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ewesewes.web.id/2007/04/29/rame2-feisty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d89740a75baea13567e521057d42feef?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rodin</media:title>
		</media:content>
	</item>
		<item>
		<title>Kubuntu 5.04 (Hoary Hedgehog)</title>
		<link>http://ewesewes.web.id/2005/04/09/kubuntu-504-hoary-hedgehog/</link>
		<comments>http://ewesewes.web.id/2005/04/09/kubuntu-504-hoary-hedgehog/#comments</comments>
		<pubDate>Sat, 09 Apr 2005 07:26:00 +0000</pubDate>
		<dc:creator>rodin</dc:creator>
				<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://rodin.wordpress.com/2005/04/09/kubuntu-504-hoary-hedgehog/</guid>
		<description><![CDATA[Nyam, nyam&#8230;. http://cdimage.ubuntu.com/kubuntu/releases/hoary/current/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ewesewes.web.id&amp;blog=1742558&amp;post=114&amp;subd=rodin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Nyam, nyam&#8230;.<br />
<a href="http://cdimage.ubuntu.com/kubuntu/releases/hoary/current/">http://cdimage.ubuntu.com/kubuntu/releases/hoary/current/</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rodin.wordpress.com/114/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rodin.wordpress.com/114/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rodin.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rodin.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rodin.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rodin.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rodin.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rodin.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rodin.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rodin.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rodin.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rodin.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rodin.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rodin.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rodin.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rodin.wordpress.com/114/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ewesewes.web.id&amp;blog=1742558&amp;post=114&amp;subd=rodin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ewesewes.web.id/2005/04/09/kubuntu-504-hoary-hedgehog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d89740a75baea13567e521057d42feef?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rodin</media:title>
		</media:content>
	</item>
		<item>
		<title>Kubuntu 5.04 (Hoary Hedgehog) Release Candidate</title>
		<link>http://ewesewes.web.id/2005/03/31/kubuntu-504-hoary-hedgehog-release-candidate/</link>
		<comments>http://ewesewes.web.id/2005/03/31/kubuntu-504-hoary-hedgehog-release-candidate/#comments</comments>
		<pubDate>Thu, 31 Mar 2005 01:55:00 +0000</pubDate>
		<dc:creator>rodin</dc:creator>
				<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://rodin.wordpress.com/2005/03/31/kubuntu-504-hoary-hedgehog-release-candidate/</guid>
		<description><![CDATA[Get it here http://cdimage.ubuntu.com/kubuntu/releases/hoary/current Wak, download lagi&#8230;.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ewesewes.web.id&amp;blog=1742558&amp;post=110&amp;subd=rodin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Get it here <a href="http://cdimage.ubuntu.com/kubuntu/releases/hoary/current/">http://cdimage.ubuntu.com/kubuntu/releases/hoary/current</a><br />
Wak, download lagi&#8230;.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/rodin.wordpress.com/110/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/rodin.wordpress.com/110/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rodin.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rodin.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rodin.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rodin.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rodin.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rodin.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rodin.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rodin.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rodin.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rodin.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rodin.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rodin.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rodin.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rodin.wordpress.com/110/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ewesewes.web.id&amp;blog=1742558&amp;post=110&amp;subd=rodin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ewesewes.web.id/2005/03/31/kubuntu-504-hoary-hedgehog-release-candidate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d89740a75baea13567e521057d42feef?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rodin</media:title>
		</media:content>
	</item>
	</channel>
</rss>
