<?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>NamHuy &#187; Open Source</title>
	<atom:link href="http://namhuy.org/blog/category/open-source/feed/" rel="self" type="application/rss+xml" />
	<link>http://namhuy.org/blog</link>
	<description>Linux tips and tricks</description>
	<lastBuildDate>Fri, 23 Jul 2010 08:41:35 +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>MySQL Change root Password</title>
		<link>http://namhuy.org/blog/2010/07/23/mysql-change-root-password/</link>
		<comments>http://namhuy.org/blog/2010/07/23/mysql-change-root-password/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 08:39:11 +0000</pubDate>
		<dc:creator>Huy Tran</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[freebsb]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[telnet]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://namhuy.org/blog/?p=100</guid>
		<description><![CDATA[How do I change MySQL root password under Linux, FreeBSD, OpenBSD and UNIX like operating system over ssh / telnet session? Setting up mysql password is one of the essential tasks. By default root user is MySQL admin account. Please &#8230; <a href="http://namhuy.org/blog/2010/07/23/mysql-change-root-password/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>How do I change MySQL root password under Linux, FreeBSD, OpenBSD and UNIX like operating system over ssh / telnet session?</p>
<p>Setting up mysql password is one of the essential tasks. By default root user is MySQL admin account. Please note that the Linux / UNIX login root account for your operating system and MySQL root are different. They are separate and nothing to do with each other (indeed some admin removes root account and setup admin as mysql super user).<br />
mysqladmin command to change root password</p>
<p>If you have never set a root password for MySQL, the server does not require a password at all for connecting as root. To setup root password for first time, use mysqladmin command at shell prompt as follows:</p>
<p>$ mysqladmin -u root password NEWPASSWORD</p>
<p>However, if you want to change (or update) a root password, then you need to use following command</p>
<p>$ mysqladmin -u root -p&#8217;oldpassword&#8217; password newpass</p>
<p>For example, If old password is abc, and set new password to 123456, enter:</p>
<p>$ mysqladmin -u root -p&#8217;abc&#8217; password &#8217;123456&#8242;</p>
<p>Change MySQL password for other user</p>
<p>To change a normal user password you need to type (let us assume you would like to change password for vivek):</p>
<p>$ mysqladmin -u vivek -p oldpassword password newpass</p>
<p>Changing MySQL root user password using MySQL sql command</p>
<p>This is another method. MySQL stores username and passwords in user table inside MySQL database. You can directly update password using the following method to update or change password for user vivek:</p>
<p>1) Login to mysql server, type following command at shell prompt:</p>
<p>$ mysql -u root -p</p>
<p>2) Use mysql database (type command at mysql&gt; prompt):</p>
<p>mysql&gt; use mysql;</p>
<p>3) Change password for user vivek:</p>
<p>mysql&gt; update user set password=PASSWORD(&#8220;NEWPASSWORD&#8221;) where User=&#8217;vivek&#8217;;</p>
<p>4) Reload privileges:</p>
<p>mysql&gt; flush privileges;<br />
mysql&gt; quit</p>
<p>This method you need to use while using PHP or Perl scripting.</p>
]]></content:encoded>
			<wfw:commentRss>http://namhuy.org/blog/2010/07/23/mysql-change-root-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Opportunity in Mobile Computing</title>
		<link>http://namhuy.org/blog/2010/07/12/an-opportunity-in-mobile-computing/</link>
		<comments>http://namhuy.org/blog/2010/07/12/an-opportunity-in-mobile-computing/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 20:08:58 +0000</pubDate>
		<dc:creator>Huy Tran</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Google Android]]></category>
		<category><![CDATA[iPhone (iOS)]]></category>
		<category><![CDATA[Mobile Phones]]></category>

		<guid isPermaLink="false">http://namhuy.org/blog/?p=96</guid>
		<description><![CDATA[An obvious and large opportunity exists in the mobile phone market. At present, developing mobile phone apps requires a development team to obtain specialized skills in either Java/Linux for Google’s Android or Objective C for Apple’s iOS. A code generator &#8230; <a href="http://namhuy.org/blog/2010/07/12/an-opportunity-in-mobile-computing/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>An obvious and large opportunity exists in the mobile phone market. At present, developing mobile phone apps requires a development team to obtain specialized skills in either Java/Linux for Google’s Android or Objective C for Apple’s iOS.</p>
<p>A code generator that can output to both Java and Objective C, combined with an abstraction layer, would appear to be an obvious winner.</p>
<p>Clearly, this is a difficult problem to solve, but one that would none the less have huge market potential.</p>
]]></content:encoded>
			<wfw:commentRss>http://namhuy.org/blog/2010/07/12/an-opportunity-in-mobile-computing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Minutes on Linux: Unable to remove user shares</title>
		<link>http://namhuy.org/blog/2010/05/31/5-minutes-on-linux-unable-to-remove-user-shares/</link>
		<comments>http://namhuy.org/blog/2010/05/31/5-minutes-on-linux-unable-to-remove-user-shares/#comments</comments>
		<pubDate>Mon, 31 May 2010 20:30:58 +0000</pubDate>
		<dc:creator>Huy Tran</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tips - Tricks]]></category>
		<category><![CDATA[GUI]]></category>
		<category><![CDATA[samba]]></category>
		<category><![CDATA[user shares]]></category>

		<guid isPermaLink="false">http://namhuy.org/blog/?p=93</guid>
		<description><![CDATA[Problem: I shared a folder using samba sometime back, the share name I used was “MyDocs”, the user was removed later.  After logging in as a new user, I’m unable to use the share name “MyDocs”. Challenge: for GUI users, &#8230; <a href="http://namhuy.org/blog/2010/05/31/5-minutes-on-linux-unable-to-remove-user-shares/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong> I shared a folder using samba sometime  back, the share name I used was “MyDocs”, the user was removed later.   After logging in as a new user, I’m unable to use the share name  “MyDocs”.</p>
<p><strong>Challenge:</strong> for GUI users, one does not have a  facility to unshare or manage the orphan shares.</p>
<p><strong>Solution</strong> 1 (to unshare): use the command line:</p>
<ol>
<li>net usershare list</li>
<li>net usershare delete sharename</li>
</ol>
<p><strong>Solution</strong> 2 (to remove orphan shares):</p>
<p>ls -l /var/lib/samba/usershares</p>
<p>sudo rm /var/lib/samba/usershares/sharename</p>
<p>Once this is done, I was able to reuse the share name again.   However, in the current model, it is clear that the shares with same  name (even when share is from  different users) they must all be unique.</p>
]]></content:encoded>
			<wfw:commentRss>http://namhuy.org/blog/2010/05/31/5-minutes-on-linux-unable-to-remove-user-shares/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Python2.4, Python2.5 and Ubuntu 10.04 lucid lynx</title>
		<link>http://namhuy.org/blog/2010/05/20/python2-4-python2-5-and-ubuntu-10-04-lucid-lynx/</link>
		<comments>http://namhuy.org/blog/2010/05/20/python2-4-python2-5-and-ubuntu-10-04-lucid-lynx/#comments</comments>
		<pubDate>Thu, 20 May 2010 18:31:33 +0000</pubDate>
		<dc:creator>Huy Tran</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tips - Tricks]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[bz2]]></category>
		<category><![CDATA[gzip]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://namhuy.org/blog/?p=91</guid>
		<description><![CDATA[Ubuntu lucid lynx does not have Python 2.4 and 2.5 runtimes available in the repositories, so if you are a developer and you are in need of those, then you have two options: One is try to find binaries somewhere &#8230; <a href="http://namhuy.org/blog/2010/05/20/python2-4-python2-5-and-ubuntu-10-04-lucid-lynx/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Ubuntu lucid lynx does not have Python 2.4 and 2.5 runtimes available in the repositories, so if you are a developer and you are in need of those, then you have two options: One is try to find binaries somewhere else or just compile them from source. In this article, I’m going to point out the steps for compilation.</p>
<p>Go to python.org and download the sources for the version you want. In my case I download Python2.4 Untar the bz2 or gzip file. Go to Python-2.4.4 (my Python version) and cd into Modules. Edit the Setup file and uncomment those modules you need. Amongst them I uncommented the zlib module. You’ll need to install from repos the zlib1g-dev package and the Tcl/Tk one as well. I take for granted you’ve got g++ compiler as well as it is necessary. ./configure, make and sudo make install. Take into account that the python2.4 runtime will be installed in /usr/local/bin/python and /usr/local/bin/python2.4 In my case I deleted the “/usr/local/bin/python” leaving the “/usr/local/bin/python2.4″  (both are the same) to avoid clashing with the python (2.6) in /usr/bin as apparently the shell looks first in /usr/local/bin.</p>
]]></content:encoded>
			<wfw:commentRss>http://namhuy.org/blog/2010/05/20/python2-4-python2-5-and-ubuntu-10-04-lucid-lynx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Log4Tailer 2.0 released with SSH tailing capabilities</title>
		<link>http://namhuy.org/blog/2010/02/23/log4tailer-2-0-released-with-ssh-tailing-capabilities/</link>
		<comments>http://namhuy.org/blog/2010/02/23/log4tailer-2-0-released-with-ssh-tailing-capabilities/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 15:15:44 +0000</pubDate>
		<dc:creator>Huy Tran</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[log4tailer]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[tailing]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://namhuy.org/blog/?p=87</guid>
		<description><![CDATA[Log4Tailer 2.0 http://code.google.com/p/log4tailer/ has just been released. It has been a month of some thought and testing the feasability of including tailing over SSH, and this release provides just that. It will open the door for a range of more &#8230; <a href="http://namhuy.org/blog/2010/02/23/log4tailer-2-0-released-with-ssh-tailing-capabilities/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Log4Tailer 2.0 <a title="log4tailer" href="http://code.google.com/p/log4tailer/">http://code.google.com/p/log4tailer/</a> has just been released. It has been a month of some thought and testing the feasability of including tailing over SSH, and this release provides just that. It will open the door for a range of more features to control remote logs scattered across a network from a single terminal, instead of having multiple terminals or windows opened. As always, the project provides a nice pdf UserGuide explaining the ssh tailing capabilities of log4tailer.</p>
]]></content:encoded>
			<wfw:commentRss>http://namhuy.org/blog/2010/02/23/log4tailer-2-0-released-with-ssh-tailing-capabilities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Karmik and Eclipse Galileo</title>
		<link>http://namhuy.org/blog/2010/01/11/ubuntu-karmik-and-eclipse-galileo/</link>
		<comments>http://namhuy.org/blog/2010/01/11/ubuntu-karmik-and-eclipse-galileo/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 21:46:45 +0000</pubDate>
		<dc:creator>Huy Tran</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://namhuy.org/blog/?p=83</guid>
		<description><![CDATA[The great Ubuntu Karmik is just around the corner. If you happen to use Eclipse from the official eclipse webpage and you see that some eclipse buttons do not work, then apply the following hack. Make yourself a one line &#8230; <a href="http://namhuy.org/blog/2010/01/11/ubuntu-karmik-and-eclipse-galileo/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The great Ubuntu Karmik is just around the corner. If you happen to use Eclipse from the official eclipse webpage and you see that some eclipse buttons do not work, then apply the following hack. Make yourself a one line script to execute eclipse like follows:</p>
<blockquote><p>#!/bin/bash</p>
<p>export GDK_NATIVE_WINDOWS=1<br />
./eclipse</p></blockquote>
<p>and it will work again. For tptp (the profiling tools for eclipse) you’ll need libstdc++5 package from debian.</p>
]]></content:encoded>
			<wfw:commentRss>http://namhuy.org/blog/2010/01/11/ubuntu-karmik-and-eclipse-galileo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Linux enable telnet service</title>
		<link>http://namhuy.org/blog/2009/11/03/ubuntu-linux-enable-telnet-service-2/</link>
		<comments>http://namhuy.org/blog/2009/11/03/ubuntu-linux-enable-telnet-service-2/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 20:14:10 +0000</pubDate>
		<dc:creator>Huy Tran</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[telnet]]></category>

		<guid isPermaLink="false">http://namhuy.org/blog/2009/11/03/ubuntu-linux-enable-telnet-service-2/</guid>
		<description><![CDATA[Q. How do I install and start telnet service / server under Ubuntu Linux? A. Telnet is an insecure service. It is recommended that you use ssh service. However sometime telnet server or service is needed. Here are instructions to &#8230; <a href="http://namhuy.org/blog/2009/11/03/ubuntu-linux-enable-telnet-service-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Q. How do I install and start telnet service / server under Ubuntu Linux?</p>
<p>A. Telnet is an insecure service. It is recommended that you use ssh service. However sometime telnet server or service is needed. Here are instructions to enable telnet:<br />
Install telnetd server</p>
<p>$ sudo apt-get install telnetd<br />
Restart inetd service:<br />
$ sudo /etc/init.d/openbsd-inetd restart<br />
You should now be able to telnet to the server from Windows or Linux desktop system to Ubentu Linux telnet server. Type the following command to connect to Telnet server:<br />
$ telnet ubentu-linux-server-ip<br />
$ telnet 192.168.1.200<br />
$ telnet ubentu.mydomain.com</p>
]]></content:encoded>
			<wfw:commentRss>http://namhuy.org/blog/2009/11/03/ubuntu-linux-enable-telnet-service-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Linux Security Hole Goes Back Eight Years</title>
		<link>http://namhuy.org/blog/2009/08/23/linux-security-hole-goes-back-eight-years/</link>
		<comments>http://namhuy.org/blog/2009/08/23/linux-security-hole-goes-back-eight-years/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 23:20:07 +0000</pubDate>
		<dc:creator>Huy Tran</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[debain]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[redhat]]></category>
		<category><![CDATA[security hole]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://namhuy.org/blog/2009/08/23/linux-security-hole-goes-back-eight-years/</guid>
		<description><![CDATA[Here’s another deep chink in the armor of the braindead zealots who claim Linux is inherently more secure than Windows. Julien Tinnes and Tavis Ormandy have found what could be the widest ranging vulnerability yet discovered in the Linux kernel. &#8230; <a href="http://namhuy.org/blog/2009/08/23/linux-security-hole-goes-back-eight-years/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here’s another deep chink in the armor of the braindead zealots who claim Linux is inherently more secure than Windows. <a href="http://blog.cr0.org/2009/08/linux-null-pointer-dereference-due-to.html">Julien Tinnes</a> and <a href="http://archives.neohapsis.com/archives/fulldisclosure/2009-08/0174.html">Tavis Ormandy</a> have found what could be the widest ranging vulnerability yet discovered in the Linux kernel.</p>
<p>Affected versions include all Linux 2.4 and2.6 versions since May 2001. This spans 2.4.4 up to and including 2.4.37.4 in the 2.4 kernel and every iteration of 2.6 from 2.6.0 up to and including 2.6.30.4.</p>
<p>What is this vulnerability all about? Functions in certain kernel routines are left uninitialized, so pointers aren’t validated before dereferencing. This allows local execution of code (sample POC available in both articles linked above) which compromises the machine. Compromise? Yes, pwnt.</p>
<p>These are known affected modules according to <a href="https://bugzilla.redhat.com/show_bug.cgi?id=516949">Redhat’s bugzilla</a>:<br />
ipx.ko<br />
irda.ko<br />
x25.ko<br />
ax25.ko<br />
bluetooth.ko<br />
sctp.ko<br />
pppoe.ko<br />
pppox.ko<br />
appletalk.ko</p>
<p>That thread offers mitigation possibilities (and some commenters — see <a href="https://bugzilla.redhat.com/show_bug.cgi?id=516949#c32">#32</a> and <a href="https://bugzilla.redhat.com/show_bug.cgi?id=516949#c48">#48</a> — explain why those steps won’t work). According to <a href="https://bugzilla.redhat.com/show_bug.cgi?id=516949#c27">post #27</a> in that thread, the exploit is already being used (as of about a week ago as I write this) to attack machines: “They entered the system through a web application exploit and then used the exploit to gain a root shell.”</p>
<p>This gets to the bigger problems of security. If you think of Linux as only the kernel or even the kernel plus the utilities that make it a functioning operating system, you’re seeing only one layer of vulnerability. Add another layer of complexity with various software and you’re adding more complexity and, accordingly exponentially more layers of vulnerability. If someone can get in through one door, he can often find “keys” to open other doors. That in a nutshell is what happens in cases like #27 in the Redhat bugzilla thread.</p>
<p>Fedora, Debian, and Ubuntu have reportedly already patched for this kernel issue.</p>
]]></content:encoded>
			<wfw:commentRss>http://namhuy.org/blog/2009/08/23/linux-security-hole-goes-back-eight-years/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9.04 (Jaunty Jackalope) Final</title>
		<link>http://namhuy.org/blog/2009/04/23/ubuntu-904-jaunty-jackalope-final/</link>
		<comments>http://namhuy.org/blog/2009/04/23/ubuntu-904-jaunty-jackalope-final/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 02:45:10 +0000</pubDate>
		<dc:creator>Huy Tran</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Jaunty Jackalope]]></category>

		<guid isPermaLink="false">http://namhuy.org/blog/?p=76</guid>
		<description><![CDATA[Ubuntu is a community developed, linux-based operating system that is perfect for laptops, desktops and servers. It contains all the applications you need &#8211; a web browser, presentation, document and spreadsheet software, instant messaging and much more. Ubuntu is free &#8230; <a href="http://namhuy.org/blog/2009/04/23/ubuntu-904-jaunty-jackalope-final/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Ubuntu is a community developed, linux-based operating system that is perfect for laptops, desktops and servers. It contains all the applications you need &#8211; a web browser, presentation, document and spreadsheet software, instant messaging and much more. Ubuntu is free software. Whether you use it at home, at school or at work Ubuntu contains all the applications you&#8217;ll ever need, from word processing and email applications, to web server software and programming tools.</p>
<p>Ubuntu is and always will be free of charge. You do not pay any licensing fees. You can download, use and share Ubuntu with your friends, family, school or business for absolutely nothing. We issue a new desktop and server release every six months. That means you&#8217;ll always have the the latest and greatest applications that the open source world has to offer. Everything you need on one CD, which provides a complete working environment. Additional software is available online.</p>
<p>Ubuntu comes with full commercial support from Canonical and hundreds of companies around the world. Ubuntu includes the very best translations and accessibility infrastructure that the free software community has to offer. Ubuntu CDs contain only free software applications; we encourage you to use free and open source software, improve it and pass it on.</p>
<p>With Ubuntu Desktop Edition you can surf the web, read email, create documents and spreadsheets, edit images and much more. Ubuntu has a fast and easy graphical installer right on the Desktop CD. On a typical computer the installation should take you less than 25 minutes. The graphical installer enables you to get up and running quickly and easily. On the desktop you have a full set of productivity, internet, drawing and graphics applications, and games.</p>
<p>The Server Edition &#8211; built on the solid foundation of Debian which is known for its robust server installations — has a strong heritage for reliable performance and predictable evolution. As your business grows, so does your network. More applications need to be deployed and more servers are required. Ubuntu Server Edition offers support for several common configurations, and simplifies common Linux server deployment processes. It provides a well-integrated platform enabling you to quickly and easily deploy a new server with any of the standard internet services: mail, web, DNS, file serving or database management. A key lesson from its Debian heritage is that of security by default. The Ubuntu Server has no open ports after the installation and contains only the essential software needed to build a secure server.</p>
<p>Link : <a title="Ubuntu" href="http://releases.ubuntu.com/9.04/">Ubuntu 9.04 (Jaunty Jackalope) Final </a></p>
]]></content:encoded>
			<wfw:commentRss>http://namhuy.org/blog/2009/04/23/ubuntu-904-jaunty-jackalope-final/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HOWTO: Recording audio cds with K3b</title>
		<link>http://namhuy.org/blog/2009/03/09/howto-recording-audio-cds-with-k3b-2/</link>
		<comments>http://namhuy.org/blog/2009/03/09/howto-recording-audio-cds-with-k3b-2/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 09:38:23 +0000</pubDate>
		<dc:creator>Huy Tran</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tips - Tricks]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[k3b]]></category>
		<category><![CDATA[mp3]]></category>

		<guid isPermaLink="false">http://namhuy.org/blog/?p=74</guid>
		<description><![CDATA[k3b cannot deal with mp3 files by default in Ubuntu Edgy Eft. If you need to produce an audio cd by adding mp3 files with k3b, you’ll need to install the following package: sudo apt-get install libk3b2-mp3 and you are &#8230; <a href="http://namhuy.org/blog/2009/03/09/howto-recording-audio-cds-with-k3b-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>k3b cannot deal with mp3 files by default in Ubuntu Edgy Eft.<br />
If you need to produce an audio cd by adding mp3 files with k3b, you’ll need to install the following package:<br />
sudo apt-get install libk3b2-mp3<br />
and you are done!!</p>
]]></content:encoded>
			<wfw:commentRss>http://namhuy.org/blog/2009/03/09/howto-recording-audio-cds-with-k3b-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
