<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: 有用的 Linux 命令</title>
	<atom:link href="http://linuxtoy.org/archives/useful-linux-commands.html/feed" rel="self" type="application/rss+xml" />
	<link>http://linuxtoy.org/archives/useful-linux-commands.html</link>
	<description>LinuxTOY 是一个致力于提供 Linux 相关资讯的专题站点。如果您发现了好用好玩的 Linux 东东并愿意发扬自由、分享的精神，可以点击顶部导航 Contact 按钮进行投稿。</description>
	<pubDate>Wed, 03 Dec 2008 08:16:32 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: adqin</title>
		<link>http://linuxtoy.org/archives/useful-linux-commands.html#comment-37224</link>
		<dc:creator>adqin</dc:creator>
		<pubDate>Tue, 17 Jul 2007 11:57:43 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtoy.org/archives/useful-linux-commands.html#comment-37224</guid>
		<description>收藏了。好文章。</description>
		<content:encoded><![CDATA[<p>收藏了。好文章。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: loesprite</title>
		<link>http://linuxtoy.org/archives/useful-linux-commands.html#comment-36734</link>
		<dc:creator>loesprite</dc:creator>
		<pubDate>Tue, 10 Jul 2007 13:57:59 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtoy.org/archives/useful-linux-commands.html#comment-36734</guid>
		<description>挺不错的，这都是精华啊！</description>
		<content:encoded><![CDATA[<p>挺不错的，这都是精华啊！</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: davix</title>
		<link>http://linuxtoy.org/archives/useful-linux-commands.html#comment-17252</link>
		<dc:creator>davix</dc:creator>
		<pubDate>Wed, 14 Mar 2007 02:20:31 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtoy.org/archives/useful-linux-commands.html#comment-17252</guid>
		<description>whereis 是从系统记录的数据库中查找，速度快，但不是最新。
find 是真正从目录中一个一个查找，速度慢

PS: 查找man手册用 whatis 或 apropos</description>
		<content:encoded><![CDATA[<p>whereis 是从系统记录的数据库中查找，速度快，但不是最新。<br />
find 是真正从目录中一个一个查找，速度慢</p>
<p>PS: 查找man手册用 whatis 或 apropos</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 书键录恩仇 &#187; links for 2007-03-12</title>
		<link>http://linuxtoy.org/archives/useful-linux-commands.html#comment-17220</link>
		<dc:creator>书键录恩仇 &#187; links for 2007-03-12</dc:creator>
		<pubDate>Mon, 12 Mar 2007 16:24:34 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtoy.org/archives/useful-linux-commands.html#comment-17220</guid>
		<description>[...] LinuxTOY » 有用的 Linux 命令 (tags: linux command) [...]</description>
		<content:encoded><![CDATA[<p>[...] LinuxTOY » 有用的 Linux 命令 (tags: linux command) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: andey</title>
		<link>http://linuxtoy.org/archives/useful-linux-commands.html#comment-17208</link>
		<dc:creator>andey</dc:creator>
		<pubDate>Mon, 12 Mar 2007 08:43:39 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtoy.org/archives/useful-linux-commands.html#comment-17208</guid>
		<description>查找命令好像还有find，不过它和whereis有何区别呢？？</description>
		<content:encoded><![CDATA[<p>查找命令好像还有find，不过它和whereis有何区别呢？？</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pig345</title>
		<link>http://linuxtoy.org/archives/useful-linux-commands.html#comment-17200</link>
		<dc:creator>pig345</dc:creator>
		<pubDate>Mon, 12 Mar 2007 01:36:46 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtoy.org/archives/useful-linux-commands.html#comment-17200</guid>
		<description>我经常用到：
whereis：查找命令，源码，或 手册（man）文件位置，如： whereis java

[以下常用于USB硬盘操作]
lsusb：列出USB设备。
fdisk：磁盘分区工具，可用于列出磁盘设备，如：fdisk -l
mount / umount ：挂载／卸载 磁盘。
lsof：列出打开的文件（当你不能umount时特别有用），如：lsof &#124; grep mydisk
kill：发送信号给进程（常用于杀死lsof发现的占用USB设备的进程），比如：kill -9 进程号</description>
		<content:encoded><![CDATA[<p>我经常用到：<br />
whereis：查找命令，源码，或 手册（man）文件位置，如： whereis java</p>
<p>[以下常用于USB硬盘操作]<br />
lsusb：列出USB设备。<br />
fdisk：磁盘分区工具，可用于列出磁盘设备，如：fdisk -l<br />
mount / umount ：挂载／卸载 磁盘。<br />
lsof：列出打开的文件（当你不能umount时特别有用），如：lsof | grep mydisk<br />
kill：发送信号给进程（常用于杀死lsof发现的占用USB设备的进程），比如：kill -9 进程号</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cottage</title>
		<link>http://linuxtoy.org/archives/useful-linux-commands.html#comment-16774</link>
		<dc:creator>cottage</dc:creator>
		<pubDate>Sat, 10 Mar 2007 08:34:53 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtoy.org/archives/useful-linux-commands.html#comment-16774</guid>
		<description>很有用!
谢了大侠!</description>
		<content:encoded><![CDATA[<p>很有用!<br />
谢了大侠!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
