<?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; Software</title>
	<atom:link href="http://namhuy.org/blog/category/software/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>Terminal or shell command to shutdown or reboot Ubuntu Linux</title>
		<link>http://namhuy.org/blog/2008/02/09/terminal-or-shell-command-to-shutdown-or-reboot-ubuntu-linux/</link>
		<comments>http://namhuy.org/blog/2008/02/09/terminal-or-shell-command-to-shutdown-or-reboot-ubuntu-linux/#comments</comments>
		<pubDate>Sat, 09 Feb 2008 11:48:55 +0000</pubDate>
		<dc:creator>Huy Tran</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[reboot]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[shutdown]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://namhuy.org/blog/2008/02/09/terminal-or-shell-command-to-shutdown-or-reboot-ubuntu-linux/</guid>
		<description><![CDATA[So how do you shutdown or reboot Ubuntu Linux from a terminal or a shell prompt? If GUI is working you can always click on a Quit button. If GUI is not working or if you are working remotely over &#8230; <a href="http://namhuy.org/blog/2008/02/09/terminal-or-shell-command-to-shutdown-or-reboot-ubuntu-linux/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So how do you shutdown or reboot Ubuntu Linux from a terminal or a shell prompt? If GUI is working you can always click on a Quit button. If GUI is not working or if you are working remotely over ssh type the following command:</p>
<p><strong><br />
To shutdown / poweroff Ubuntu Linux</strong></p>
<p>Type the command:</p>
<blockquote><p>sudo halt</p></blockquote>
<p>OR</p>
<blockquote><p>sudo shutdown -h now</p></blockquote>
<p>OR</p>
<blockquote><p>sudo shutdown -r now</p></blockquote>
<p>OR</p>
<blockquote><p>sudo init 6</p></blockquote>
<p><strong>To reboot Ubuntu Linux</strong></p>
<p>Type the command:</p>
<blockquote><p>sudo reboot</p></blockquote>
<p>More information can be found about these two commands by typing following commands (man page):</p>
<blockquote><p>man reboot<br />
man shutdown</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://namhuy.org/blog/2008/02/09/terminal-or-shell-command-to-shutdown-or-reboot-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CVS server on Ubuntu</title>
		<link>http://namhuy.org/blog/2008/02/05/cvs-server-on-ubuntu/</link>
		<comments>http://namhuy.org/blog/2008/02/05/cvs-server-on-ubuntu/#comments</comments>
		<pubDate>Tue, 05 Feb 2008 23:46:39 +0000</pubDate>
		<dc:creator>Huy Tran</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips - Tricks]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[CVS server]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://namhuy.org/blog/2008/02/05/cvs-server-on-ubuntu/</guid>
		<description><![CDATA[Install CVS files: sudo apt-get install cvs Install the CVS server: sudo apt-get install cvsd When prompted in the cvsd installation process for Repository, type in “/cvsrepo”. Now that the cvsd installation in complete goto /var/lib/cvsd or seeking for a &#8230; <a href="http://namhuy.org/blog/2008/02/05/cvs-server-on-ubuntu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: 85%">Install CVS files:<br />
<strong><span style="color: #ff0000">sudo apt-get install cvs</span></strong></span></p>
<p>Install the CVS server:<br />
<strong><span style="color: #ff0000">sudo apt-get install cvsd</span></strong></p>
<p>When prompted in the cvsd installation process for Repository, type in “/cvsrepo”.</p>
<p>Now that the cvsd installation in complete goto /var/lib/cvsd<br />
<span style="font-size: 85%">or seeking for a change(or if there is a new version of cvs updated):</span></p>
<p><span style="font-size: 85%"><strong><span style="color: #ff0000">sudo cvsd-buildroot /var/lib/cvsd</span></strong></span><br />
If the folder cvsrepo does not exist, then create it ..<br />
<strong><span style="color: #ff0000">sudo mkdir cvsrepo</span></strong><br />
<strong><span style="color: #ff0000">sudo chown -R cvsd:cvsd cvsrepo</span><br />
</strong><br />
and then initilize the repository<br />
<span style="color: #ff0000"><strong>sudo cvs -d /var/lib/cvsd/cvsrepo init</strong></span><br />
create a user and password<br />
<span style="color: #ff0000"><strong>sudo cvsd-passwd /var/lib/cvsd/cvsrepo +username</strong></span><br />
<span style="font-family: 宋体">sudo vi /</span><span style="font-family: Times New Roman"><strong><span style="color: #ff0000">/var/lib/cvsd/cvsrepo/CVSROOT/config</span></strong></span><br />
<span style="font-family: Times New Roman"><strong><span style="color: #ff0000">Change &#8220;SystemAuto=no&#8221;</span></strong><br />
</span><br />
<span style="font-family: Times New Roman"><span style="font-family: 宋体">Test</span></span><br />
<span style="font-family: Times New Roman"></span><br />
<span style="font-family: Times New Roman"><span style="color: #ff0000"><strong><span style="font-family: 宋体">cvs -d :pserver:username@localhost:/</span><span style="font-family: Times New Roman">cvsrepo login</span></strong></span></span></p>
<p><span style="font-family: Times New Roman"><span style="color: #ff0000"><strong><span style="font-family: 宋体">cvs -d :pserver:username@localhost:/</span><span style="font-family: Times New Roman">cvsrepo checkout .</span></strong></span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://namhuy.org/blog/2008/02/05/cvs-server-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HOWTO: Monitoring your desktop Linux the easy way</title>
		<link>http://namhuy.org/blog/2007/07/31/howto-monitoring-your-desktop-linux-the-easy-way/</link>
		<comments>http://namhuy.org/blog/2007/07/31/howto-monitoring-your-desktop-linux-the-easy-way/#comments</comments>
		<pubDate>Tue, 31 Jul 2007 05:01:27 +0000</pubDate>
		<dc:creator>Huy Tran</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips - Tricks]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[cpu]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[gkrellm]]></category>
		<category><![CDATA[memory]]></category>
		<category><![CDATA[monitor]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[programs]]></category>
		<category><![CDATA[usage]]></category>

		<guid isPermaLink="false">http://namhuy.org/blog/2007/07/31/howto-monitoring-your-desktop-linux-the-easy-way/</guid>
		<description><![CDATA[There are lots of programs that help us to monitor our personal computer. They provide us with memory consumption, cpu usage, network statistics and lots more. In this article I’m going to introduce gkrellm. I’ve always had gkrellm running in &#8230; <a href="http://namhuy.org/blog/2007/07/31/howto-monitoring-your-desktop-linux-the-easy-way/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>There are lots of programs that help us to monitor our personal computer. They provide us with memory consumption, cpu usage, network statistics and lots more. In this article I’m going to introduce gkrellm. I’ve always had gkrellm running in every desktop Linux. It’s very useful and provides essential information in real time. Installing gkrellm is just very easy, type:sudo apt-get install gkrellm</p>
<p>to run it, type</p>
<p>gkrellm &amp;</p>
<p>and you’ll get several info about your computer in real time.</p>
<p>Gkrellm supports themes, so the app can have several appearances. I always use the “invisible” theme, which is a transparent theme, so you can see the background. Very cool. To install a new theme (Ubuntu) go to</p>
<p><a href="http://www.muhri.net/gkrellm/" target="_blank">http://www.muhri.net/gkrellm/</a></p>
<p>and download the theme you like. Most of the themes come gzipped. Once you download the theme to your home directory, ungzipp it and move the whole directory to ~/.gkrellm2/themes.</p>
]]></content:encoded>
			<wfw:commentRss>http://namhuy.org/blog/2007/07/31/howto-monitoring-your-desktop-linux-the-easy-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOWTO: Recording audio cds with K3b</title>
		<link>http://namhuy.org/blog/2007/07/29/howto-recording-audio-cds-with-k3b/</link>
		<comments>http://namhuy.org/blog/2007/07/29/howto-recording-audio-cds-with-k3b/#comments</comments>
		<pubDate>Sun, 29 Jul 2007 05:00:03 +0000</pubDate>
		<dc:creator>Huy Tran</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips - Tricks]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[k3b]]></category>
		<category><![CDATA[mp3]]></category>

		<guid isPermaLink="false">http://namhuy.org/blog/2007/07/29/howto-recording-audio-cds-with-k3b/</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/2007/07/29/howto-recording-audio-cds-with-k3b/">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:</p>
<blockquote><p>sudo apt-get install libk3b2-mp3</p></blockquote>
<p>and you are done!!</p>
]]></content:encoded>
			<wfw:commentRss>http://namhuy.org/blog/2007/07/29/howto-recording-audio-cds-with-k3b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 20 Linux Softwares</title>
		<link>http://namhuy.org/blog/2007/07/27/top-20-linux-apps/</link>
		<comments>http://namhuy.org/blog/2007/07/27/top-20-linux-apps/#comments</comments>
		<pubDate>Fri, 27 Jul 2007 10:19:01 +0000</pubDate>
		<dc:creator>Huy Tran</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips - Tricks]]></category>

		<guid isPermaLink="false">http://namhuy.org/blog/2007/07/27/top-20-linux-apps/</guid>
		<description><![CDATA[It seems like every blog on the internet has one of these, so here’s my picks for the top 20 Linux applications. I’ll be covering programs from all different categories that I think stand out and shine as true wonders &#8230; <a href="http://namhuy.org/blog/2007/07/27/top-20-linux-apps/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It seems like every blog on the internet has one of these, so here’s my picks for the top 20 Linux applications. I’ll be covering programs from all different categories that I think stand out and shine as true wonders of Linux and will be presented in no particular order. I’ll even go over a few that I think could use some work but have potential to be something great.</p>
<p><strong>Audio/Video</strong></p>
<p>K3B</p>
<p>K3B is KDE’s cd burning application and it has nearly every feature you’d want. It has an interface similar to Nero and its capabilities are on par with Nero. I use this application for all my burning needs. It is a standard program and should be in all major distributions’ package managers.<span id="more-22"></span></p>
<p>Audacity</p>
<p>Audacity is an audio editing software that lets you edit audio tracks quickly and easily and gives you a nice selection of default effects to modify your tracks. This is an excellent program for beginners that need to edit some audio for a home movie. It is also excellent for bands with low budgets to get some experience mixing and mastering their own tracks, I’ve heard some excellent sounding cds come as a result of Audacity.</p>
<p>Amarok</p>
<p>Amarok is an advanced media player for KDE. It features playlists, an equalizer, iPod support, video support, the Magnatune music store, album art, Wikipedia information for the selected band, Lyrics, a file browser to open tracks not yet in your library, last.fm support, custom themes, and alot more. Amarok is a full-featured product and can stand toe to toe with Windows Media Player.</p>
<p>DeVeDe</p>
<p>DeVeDe is a DVD ripping application with one of the simplest interfaces I’ve ever seen. You can burn it to disc, to an iso, or convert your video files to MPEG files. Quick and easy way to rip DVDs.</p>
<p><strong>File Sharing</strong></p>
<p>Deluge</p>
<p>Deluge has become my default torrent application. It has a simple interface but respectable options under the hood including encryption, plugins, and torrent creation. The protocol implementation in Deluge is impressive and transfer speeds are fast. Azureus is a good client, it has nice features and a well-designed interface but it is a memory hog. Deluge is the best Linux torrent client I’ve found and runs much faster and consumes far less resources than Azureus.</p>
<p>Tribler</p>
<p>An interesting combination of file sharing and social networking. It exists as a network of people who share their torrents and files and you can search for torrents right in the client. It’s basically taking web trackers out of the equation and creating a decentralized tracker. Features are a bit lacking and its still fairly buggy but its an interesting concept and could work if the app is nurtured well.</p>
<p><strong>VoIP</strong></p>
<p>mumble</p>
<p>mumble and murmur are open source alternatives to Teamspeak and Ventrilo. mumble is the client and murmur is the server. The interface is simple and intuitive, user management is handled in the client as of the latest svn release, and the sound quality is fantastic. The major kicker for this one is its efficient use of bandwidth. mumble uses significantly less RAM and bandwidth than either Teamspeak or Ventrilo. It is built on QT4 so you’ll need to get those extra libraries. This program could quite conceivably dethrone the big boys in their gaming VoIP dominance. mumble is available for both Linux and Windows so no matter which OS you game on, you can communicate with the rest of your friends.</p>
<p><strong>Graphics</strong></p>
<p>GIMP</p>
<p>The venerable GIMP has been around for a long time and has evolved into a serious competitor to Photoshop. I personally prefer to work in GIMP rather than Photoshop as most of the functions that I do alot are more easily accessible and the Script-Fu scripting language makes for easy creations of additional plugins. The interface can be a nuisance for some but once you get used to it, it’s hard to go back to Photoshop. Available for Linux and Windows.</p>
<p>Blender</p>
<p>Blender is a 3d modeling program in the vein of 3D Studio Max and Maya but with a unique interface which is daunting at first glance but very intuitive and easy to use once you get the hang of it. Many game designers that have worked with commercial programs for years prefer Blender’s interface and the output is of the same quality as any of those expensive commercial offerings. Blender is a masterpeice of open source enginuity and really shines in its field. Available for Linux and Windows.</p>
<p>Inkscape</p>
<p>Inkscape is an open source illustration app that rivals Adobe Illustrator in terms of both functionality and features. Some of the best freelance vector artists on the net use Inkscape and their work is amazing.</p>
<p>Xara LX</p>
<p>Xara is another vector illustration program that some would say is even better than Inkscape. For most people, either will do but the hardcore vector artists have made their choice over either Inkscape or Xara. If you’re looking for an open source vector graphics program, you should try both to see which fits your needs better.</p>
<p>Scribus</p>
<p>Yet another illustration oriented application focusing on page layout. Many people swear by this app and for good reason. Its slough of features such as CMYK color make this a valid alternative for anyone, not only people who can’t afford Acrobat Pro.</p>
<p><strong>Games</strong></p>
<p>Alien Arena 2007</p>
<p>AA2k7 is a first person deathmatch shooter based off the Quake 2 derivative CRX engine. CRX is an advanced engine rivaling the Q3 and UT2.5 engines. It is set in a Sci-Fi world of Martians and Humans battling it out for control of the galaxy. AA2k7 features some of the fastest, most brutal deathmatch action ever created. It sports a large community of battle-hungry fraggers ready to take you down anytime. Tournaments and clan matches happen fairly often (Martian Mayhem Tournament is every Sunday at 6 PM EDT) but more clans are wanted. This community uses mumble for their in-game voice chat solution. This game is available for both Linux and Windows.</p>
<p>Nexuiz</p>
<p>Nexuiz is another deathmatch brawl but it stems from the Darkplaces engine, a Quake 1 derivative engine that features many of the same eye candy as more advanced engines. The developers have done a good job making the Q1 engine look so good and the game play so well. Gameplay is reminiscent of Quake 2 and the weapon selection is decent. The Nex community is also very skilled and very active.</p>
<p>Warsow</p>
<p>Warsow is a Quake 2 derivative but feels more like Quake 3. It sports cell shaded graphics, trick jumping, and lots of steady action on the servers. Gameplay is deathmatch speed and features nice weapons balance. This game is a member of the Esports Reality Gaming League and has received lots of attention from serious gamers. Most of the players are based in Europe and for Americans, it can be rather challenging to find suitable servers sometimes.</p>
<p>Neverball</p>
<p>Neverball is an open source Super Monkey Ball clone that will keep your attention for weeks. It takes a steady hand to maneuver your ball through the various levels and once you get to the harder levels, you’ll be gritting your teeth and sweating with suspense. There are some insanely difficult levels for Neverball called Mehdi’s levels that I cant even begin to get through but there are some raging fanatics out there that do speed runs through them! Neverball is pure fun and should accompany anyone’s game collection.<!--more--></p>
<p>Neverputt</p>
<p>Neverball’s companion game, that concentrates on that oldest of family traditions, mini golf. It is simply a mini golf game set in the Neverball engine with some very fun and very challenging holes. This one is a great one for Dad if he’s a golfer and likewise should be a part of anyone’s gaming collection.</p>
<p>Unreal Tournament 2004</p>
<p>That’s right folks, Linux DOES have commercial game support! UT2k4 is one of the largest multiplayer games in existence and for good reason. Its fast deathmatch is classic and it sports lots of other very fun game modes. I won’t go into much detail about this one since it is such a big game and obviously well known. You can pick this sucker up on Amazon for less than $15 and comes with a Linux binary installer.</p>
<p>Quake 3 Arena</p>
<p>Another quality commercial game available for Linux that everyone knows. Q3A is arguably the best deathmatch game ever created. It set the standard for future deathmatch games and remains one of the most popular FPS games on the Internet. Whether it be an online game with a bunch of strangers, a clan party with your best buds, or arch rivals in a competition, Q3A is a timeless classic that will be played for years to come. You can pick this up for $10 if you look hard enough.</p>
<p>Cedega</p>
<p>Cedega is a fairly controversial application in the Linux community. It’s based off the open source Wine but charges a $5 monthly fee. While some think this is unfair to the Wine developers, Cedega contributes alot of code to their product and its not just a frontend. This is known to run many Windows games including Counterstrike, World of Warcraft, and Madden 07 along with hundreds of other games that I wont list here. Lots of gamers don’t realize that they have this option or are reluctant to pay the price but I assure you its worth it. For hardcore gamers, this is a great tool to have as it plays those Windows games better than Windows does much of the time because it doesn’t quite have support for some of the fancier things that DirectX can do so you get better framerates as a result.</p>
]]></content:encoded>
			<wfw:commentRss>http://namhuy.org/blog/2007/07/27/top-20-linux-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
