<?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>Nine Rivers &#187; linux</title>
	<atom:link href="http://9rivers.linkka.com/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://9rivers.linkka.com</link>
	<description>Molecular modeling in Materials Sciences Web development Programming IT</description>
	<lastBuildDate>Fri, 02 Dec 2011 06:20:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Ubuntu wubi.exe installation</title>
		<link>http://9rivers.linkka.com/2011/11/16/ubuntu-wubi-exe-installation/</link>
		<comments>http://9rivers.linkka.com/2011/11/16/ubuntu-wubi-exe-installation/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 18:26:17 +0000</pubDate>
		<dc:creator>9rivers</dc:creator>
				<category><![CDATA[Articles in English]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://9rivers.linkka.com/?p=646</guid>
		<description><![CDATA[The Ubuntu CD contents look like these: There is an executable named &#8220;wubi.exe&#8221;, which allows you installing Ubuntu alongside with an existing Windows system (dual-boot). However, many people experienced &#8220;no response&#8221;  problem after double clicking the wubi.exe. Some say this is because some of your drives contains non-English labels. However, this is not always the [...]]]></description>
		<wfw:commentRss>http://9rivers.linkka.com/2011/11/16/ubuntu-wubi-exe-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Uncompress tar to specific directory + Other tar/untar tricks</title>
		<link>http://9rivers.linkka.com/2010/08/10/uncompress-tar-to-specific-directory/</link>
		<comments>http://9rivers.linkka.com/2010/08/10/uncompress-tar-to-specific-directory/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 11:07:34 +0000</pubDate>
		<dc:creator>9rivers</dc:creator>
				<category><![CDATA[Articles in English]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tar]]></category>

		<guid isPermaLink="false">http://9rivers.linkka.com/?p=521</guid>
		<description><![CDATA[The order of the options of tar command does matter on some systems (Cygwin problem is discussed in this post). ]]></description>
		<wfw:commentRss>http://9rivers.linkka.com/2010/08/10/uncompress-tar-to-specific-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Copy/paste in gnome-terminal</title>
		<link>http://9rivers.linkka.com/2010/04/06/copypaste-in-gnome-terminal/</link>
		<comments>http://9rivers.linkka.com/2010/04/06/copypaste-in-gnome-terminal/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 15:43:40 +0000</pubDate>
		<dc:creator>9rivers</dc:creator>
				<category><![CDATA[Notes]]></category>
		<category><![CDATA[工作相关]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://9rivers.linkka.com/?p=416</guid>
		<description><![CDATA[1. Change the default keyboard shortcuts to ctrl+c and ctrl+v. They are more common shortcuts on most OS. 2. Highlighting texts and Middle mouse button clicking will do copy/paste. These are similar to the operation in PuTTY where right mouse button click is used.]]></description>
		<wfw:commentRss>http://9rivers.linkka.com/2010/04/06/copypaste-in-gnome-terminal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Print directory tree on Windows and Linux using tree, sed, awk or Python</title>
		<link>http://9rivers.linkka.com/2010/02/10/print-directory-tree-on-windows-and-linux-using-tree-sed-awk-or-python/</link>
		<comments>http://9rivers.linkka.com/2010/02/10/print-directory-tree-on-windows-and-linux-using-tree-sed-awk-or-python/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 12:24:20 +0000</pubDate>
		<dc:creator>9rivers</dc:creator>
				<category><![CDATA[Notes]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[编程]]></category>
		<category><![CDATA[AWK]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Sed]]></category>
		<category><![CDATA[tree]]></category>

		<guid isPermaLink="false">http://9rivers.linkka.com/?p=344</guid>
		<description><![CDATA[Windows: there is &#8216;tree.com&#8216; command showing the directory structure. http://chxkyy.javaeye.com/blog/213864 Linux: there is a &#8216;tree&#8216; program for Linux and also available on some Linux distributions, such as Debian. (apt-get install tree) http://www.debian-administration.org/article/Commands_you_might_have_missed_tree Sed or Awk: The Sed version: http://www.centerkey.com/tree/ The AWK version: http://www.unix.com/shell-programming-scripting/50806-directory-tree.html 1find . -type d -print 2&#38;gt;/dev/null&#124;awk '!/\.$/ {for(i=1;i&#38;lt; 5 &#160;&#38;amp;&#38;amp; i != [...]]]></description>
		<wfw:commentRss>http://9rivers.linkka.com/2010/02/10/print-directory-tree-on-windows-and-linux-using-tree-sed-awk-or-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Python and pizza.py</title>
		<link>http://9rivers.linkka.com/2009/10/27/python-and-pizza-py/</link>
		<comments>http://9rivers.linkka.com/2009/10/27/python-and-pizza-py/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 14:33:54 +0000</pubDate>
		<dc:creator>9rivers</dc:creator>
				<category><![CDATA[Modeling & Simulation]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[lammps]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[pizza]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://9rivers.linkka.com/?p=273</guid>
		<description><![CDATA[Pizza.py is a post-processing tool package for lammps &#8211; a MD package. I downloaded it and unpacked in a local directory. Each time I have to start it with a command like &#8220;python -f abs_path/pizza.py&#8221; where the abs_path is the absolute path to pizza.py source directory. However this directory is very long on my computer [...]]]></description>
		<wfw:commentRss>http://9rivers.linkka.com/2009/10/27/python-and-pizza-py/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

