<?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>华水 &#187; Linux</title>
	<atom:link href="http://huashui.org/topics/linux/feed" rel="self" type="application/rss+xml" />
	<link>http://huashui.org</link>
	<description>总是到下雨才想到雨伞，总是到拿雨伞时才发现不见了。</description>
	<lastBuildDate>Thu, 29 Jul 2010 09:53:42 +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>Linux中修改ip的办法</title>
		<link>http://huashui.org/post/linux%e4%b8%ad%e4%bf%ae%e6%94%b9ip%e7%9a%84%e5%8a%9e%e6%b3%95.html</link>
		<comments>http://huashui.org/post/linux%e4%b8%ad%e4%bf%ae%e6%94%b9ip%e7%9a%84%e5%8a%9e%e6%b3%95.html#comments</comments>
		<pubDate>Fri, 05 Mar 2010 07:25:37 +0000</pubDate>
		<dc:creator>Huashui</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[IP]]></category>

		<guid isPermaLink="false">http://huashui.org/?p=393</guid>
		<description><![CDATA[切换到root账户下 切换到/etc/sysconfig/network-scripts/目录下； 编辑网卡编码：vi ifcfg-ethX X为第X-1个网卡。 DEVICE=ethX 设备名称 ONBOOT=yes 计算机启动时是否激活网卡 BOOTPROTO=static 获取ip地址的方式， IPADDR=192.168.2.111 ip地址 NETMASK=255.255.255.0 子网掩码 GATEWAY=192.168.0.1 网关 重启网络 /etc/init.d/network restart Related Posts2010-03-02 -- linux下的文件的压缩和解压缩2010-02-08 -- PHP获取客户端IP的几种方法2009-10-13 -- MySQL出现No space left on device导致的无法启动2009-01-12 -- Ubuntu试用记]]></description>
		<wfw:commentRss>http://huashui.org/post/linux%e4%b8%ad%e4%bf%ae%e6%94%b9ip%e7%9a%84%e5%8a%9e%e6%b3%95.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>linux下的文件的压缩和解压缩</title>
		<link>http://huashui.org/post/linux-tar-zip-gz.html</link>
		<comments>http://huashui.org/post/linux-tar-zip-gz.html#comments</comments>
		<pubDate>Tue, 02 Mar 2010 08:39:00 +0000</pubDate>
		<dc:creator>Huashui</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[tar]]></category>
		<category><![CDATA[Zip]]></category>
		<category><![CDATA[压缩]]></category>
		<category><![CDATA[解压缩]]></category>

		<guid isPermaLink="false">http://huashui.org/?p=341</guid>
		<description><![CDATA[SSH常用SecureCRT 5.5进行连接，使用sz和rz命令来上传下去。但这个命令只支持单文件传输，多文件就比较麻烦。但是如果使用压缩包的方式就省事很多。我们来看看在liux下压缩包的压缩和解压方法. tar -c: 建立压缩档案 -x：解压 -t：查看内容 -r：向压缩归档文件末尾追加文件 -u：更新原压缩包中的文件 这五个是独立的命令，压缩解压都要用到其中一个，可以和别的命令连用但只能用其中一个。下面的参数是根据需要在压缩或解压档案时可选的。 -z：有gzip属性的 -j：有bz2属性的 -Z：有compress属性的 -v：显示所有过程 -O：将文件解开到标准输出 下面的参数-f是必须的 -f: 使用档案名字，切记，这个参数是最后一个参数，后面只能接档案名。 # tar -cf all.tar *.jpg 这条命令是将所有.jpg的文件打成一个名为all.tar的包。-c是表示产生新的包，-f指定包的文件名。 # tar -rf all.tar *.gif 这条命令是将所有.gif的文件增加到all.tar的包里面去。-r是表示增加文件的意思。 # tar -uf all.tar logo.gif 这条命令是更新原来tar包all.tar中logo.gif文件，-u是表示更新文件的意思。 # tar -tf all.tar 这条命令是列出all.tar包中所有文件，-t是列出文件的意思 # tar -xf all.tar 这条命令是解出all.tar包中所有文件，-t是解开的意思 压缩 tar –cvf jpg.tar *.jpg //将目录里所有jpg文件打包成tar.jpg tar –czf jpg.tar.gz [...]]]></description>
		<wfw:commentRss>http://huashui.org/post/linux-tar-zip-gz.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu试用记</title>
		<link>http://huashui.org/post/linux-ubuntu.html</link>
		<comments>http://huashui.org/post/linux-ubuntu.html#comments</comments>
		<pubDate>Mon, 12 Jan 2009 12:37:16 +0000</pubDate>
		<dc:creator>Huashui</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubutuntu]]></category>

		<guid isPermaLink="false">http://localhost/post/linux-ubuntu-html.html</guid>
		<description><![CDATA[1、在DIGG.COM看到一则新闻Ubuntu and Its Leader Set Sights on the Mainstream ，而且据说越南政府在强行推广Ubutu，要求各级政府机构的IT部门必须（must）在今年6月底之前将全部服务器(系统)改换成Linux操作系统及相关开源软件产品。 这也不失为在经济危机下的一项措施，这不也是奥巴马先生所提倡的。]]></description>
		<wfw:commentRss>http://huashui.org/post/linux-ubuntu.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
