<?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; cygwin</title>
	<atom:link href="http://easwy.com/blog/archives/tag/cygwin/feed/" rel="self" type="application/rss+xml" />
	<link>http://easwy.com/blog</link>
	<description>关注Linux, Scala, Java, 开源软件和嵌入式系统</description>
	<lastBuildDate>Fri, 10 Sep 2010 09:08:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>使用cygwin X server实现Linux远程桌面 (for windows)</title>
		<link>http://easwy.com/blog/archives/linux-remote-desktop-via-cygwin-x-server/</link>
		<comments>http://easwy.com/blog/archives/linux-remote-desktop-via-cygwin-x-server/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 09:47:37 +0000</pubDate>
		<dc:creator>Easwy</dc:creator>
				<category><![CDATA[开源软件]]></category>
		<category><![CDATA[cygwin]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://easwy.com/blog/?p=403</guid>
		<description><![CDATA[在windows中，可以通过远程桌面方便的访问你的远程计算机。在Linux下也可以实现这类功能。
本文介绍了如何使用cygwin内的X server实现Linux的远程桌面。

<div class="fixed"></div><div id="related_posts"><h3  class="related_post_title">相关文章</h3><ul class="related_post"><li><a href='http://easwy.com/blog/archives/use-rxvt-in-cygwin/' rel='bookmark' title='Permanent Link: 使用rxvt做为cygwin终端'>使用rxvt做为cygwin终端</a></li>
<li><a href='http://easwy.com/blog/archives/vim-tips-windows-open-file-in-tab/' rel='bookmark' title='Permanent Link: vi/vim使用技巧: 在标签页中打开文件 (windows)'>vi/vim使用技巧: 在标签页中打开文件 (windows)</a></li>
<li><a href='http://easwy.com/blog/archives/linux-remote-desktop-by-vnc/' rel='bookmark' title='Permanent Link: 用VNC实现远程桌面共享(支持Windows, Linux, &#8230;)'>用VNC实现远程桌面共享(支持Windows, Linux, &#8230;)</a></li>
</div><div class="fixed"></div>]]></description>
			<content:encoded><![CDATA[<p>
    在windows上访问linux有多种方法：
  </p>
<p>
    对于习惯使用命令行的人来说，可以使用终端的方式进行访问，也就是通过telnet, ssh等方法远程登录到linux主机，对其进行访问。至于登录软件，既可以使用windows自带的命令行界面，也可以使用专门的终端软件，例如putty, secureCRT等。其中putty是免费软件，而secureCRT并不是。
  </p>
<p>
    对于习惯使用图形界面的人来说，更希望以图形界面的方式来访问linux主机。主要有以下几种方法：
  </p>
<div class="itemizedlist">
<ul type="disc">
<li>
      使用vnc技术。网上这方面的文档很多，我也写过一篇：<a class="link" href="http://easwy.com/blog/archives/linux-remote-desktop-by-vnc/" target="_blank">用VNC实现远程桌面共享(支持Windows, Linux, &#8230;) </a></li>
<li>
      在windows上提供一个X server，linux主机上X client程序通过XDMCP协议 (X Display Manager Control Protocol)使自己显示在windows上。
    </li>
</ul>
</div>
<p>
    今天我主要介绍第二种方法。
  </p>
<p>
    有很多软件在windows上实现了X server的功能，例如<a class="link" href="http://www.netsarang.com/products/xmg_detail.html" target="_blank">Xmanager</a>，<a class="link" href="http://connectivity.hummingbird.com/products/nc/exceed/index.html" target="_blank">Hummingbird Exceed</a>，<a class="link" href="http://www.cygwin.com/" target="_blank">cygwin X server</a>，以及<a class="link" href="http://sourceforge.net/projects/xming/" target="_blank">Xming X Server for Windows</a>。前两个都是商业软件，需要付费使用；cygwin和Xming是免费软件。本文主要介绍如何使用cygwin X实现Linux的远程桌面。关于Xming X server的使用请参见其主页。
  </p>
<p>
    先调动一下大家的积极性，看看最终的效果图：
  </p>
<div class="informalfigure">
<div class="mediaobject" align="center"><img src="http://easwy.com/blog/uploads/2009/02/cygwinx_4-300x225.jpg" align="middle"></div>
<div class="caption" align="center"><a class="link" href="http://easwy.com/blog/uploads/2009/02/cygwinx_4.jpg" target="_blank">点击查看大图</a></div>
</div>
<p>
    <span class="bold"><strong>[ 背景知识 ]</strong></span>
  </p>
<p>
    网络上有很多关于X的背景知识，如果你想对X了解的深入一些，去网上搜索一下吧。
  </p>
<p>
    这里是王垠写的&#8221;<a class="link" href="http://docs.huihoo.com/homepage/shredderyin/x.html" target="_blank">理解 Xwindow</a>&#8220;，介绍了X server, X client, 窗口管理器，桌面环境相关的知识，读一下对理解本文也有帮助。
  </p>
<p>
    好了，现在我们开始配置。
  </p>
<p>
    <span class="bold"><strong>[ 安装cygwin ]</strong></span>
  </p>
<p>
    Cygwin项目的目的是在windows主机上提供一个类UNIX的环境，网络也有很多相关的资料。大家可以看一下这一篇：<a class="link" href="http://deve.blogdriver.com/deve/413931.html" target="_blank">Cygwin使用指南</a>，这篇文章在网络上流行比较广，作者未知，上面提供的仅是其中一个链接。
  </p>
<p>
    如果你的计算机上还没有cygwin，首先需要安装它。
  </p>
<p>
    这个过程很简单，先到<a class="link" href="http://www.cygwin.com/" target="_blank">cygwin的主页</a>去下载setup.exe，然后使用setup.exe进行安装。在安装的过程中需要选择要安装的组件，此时需要把X server组件选上。
  </p>
<p>
    在<a class="link" href="http://x.cygwin.com/docs/ug/setup-cygwin-x-installing.html" target="_blank">这里</a>有一个安装指南，虽然是英文的，不过看抓图就可以了。
  </p>
<p>
    选择X server组件时，其实只需要选择xorg-x11-base，选中它之后，其它相关组件会自动被选中。
  </p>
<p>
    在安装cygwin时，记得把<span class="bold"><strong>expect</strong></span>这个软件装上，它位于interpreters类别下面。我会在后面的章节中说明为什么要安装这个组件。
  </p>
<p>
    <span class="bold"><strong>[ 运行cygwin X server]</strong></span>
  </p>
<p>
    在运行X server前，先假定一下我们的组网。
  </p>
<p>
    我们假设X server运行在一台windows XP计算机上，此机器的IP地址是192.168.190.91。
  </p>
<p>
    我们的Linux主机上将运行X client程序，它的IP地址是192.168.190.15。
  </p>
<p>
    在你的安装目录中找到c:\cygwin\usr\X11R6\bin\startxwin.bat (假设你把cygwin安装在c:\cygwin目录)，双击它就会启动X server，同时会启动一个终端(这个终端运行在Windows本地)，效果如下图：
  </p>
<div class="informalfigure">
<div class="mediaobject" align="center"><img src="http://easwy.com/blog/uploads/2009/02/cygwinx_1-300x225.jpg" align="middle"></div>
<div class="caption" align="center"><a class="link" href="http://easwy.com/blog/uploads/2009/02/cygwinx_1.jpg" target="_blank">点击查看大图</a></div>
</div>
<p>
    现在，我们要允许远程的X client对X server进行访问，因此，在终端中输入下面的命令，
  </p>
<pre class="programlisting">
xhost + 192.168.190.15 </pre>
<p>
    接下来，我们要到X client所在的计算机上进行配置，使用telnet或ssh登录Linux主机(192.168.190.15)，然后运行下面的命令，
  </p>
<pre class="programlisting">
export DISPLAY=192.168.190.91:0.0
xterm &amp;
gvim &amp;</pre>
<p>
    上面第一条命令设置DISPLAY变量，它表示X客户端将使用192.168.190.91上的0.0来显示自己。192.168.190.91是运行cygwin X server的Windows计算机(它的防火墙要打开X server所监听的端口，通常为6000)。
  </p>
<p>
    后面两条命令则在Linux主机上(192.168.190.15)启动了两个程序，一个是xterm，另外一个是gvim，我们发现这两个程序启动后，并没有显示在Linux主机上，相反，它们显示在了windows主机上。下图是执行完上述命令的效果图，我使用putty远程登录到Linux主机上，然后执行上述命令：
  </p>
<div class="informalfigure">
<div class="mediaobject" align="center"><img src="http://easwy.com/blog/uploads/2009/02/cygwinx_2-300x225.jpg" align="middle"></div>
<div class="caption" align="center"><a class="link" href="http://easwy.com/blog/uploads/2009/02/cygwinx_2.jpg" target="_blank">点击查看大图</a></div>
</div>
<p>
    用这种方法，你可以在Linux主机上运行任何图形程序，并把它显示到windows上。
  </p>
<p>
    如果你想把诸如KDE、GNOME这样的桌面环境也显示到windows上，就需要做些调整。
  </p>
<p>
    <span class="bold"><strong>[ 运行桌面环境 ]</strong></span>
  </p>
<p>
    在此我以KDE桌面为例。要把KDE桌面环境显示到windows上的X server中，需要更改一下X server的启动批处理。
  </p>
<p>
    首先备份一下c:\cygwin\usr\X11R6\bin\startxwin.bat，然后使用文本编辑器打开此文件，找到下面这行：
  </p>
<pre class="programlisting">
%RUN% XWin -multiwindow -clipboard -silent-dup-error </pre>
<p>
    去掉&#8221;<span class="emphasis"><em>-multiwindow</em></span>&#8220;参数：
  </p>
<pre class="programlisting">
%RUN% XWin -clipboard -silent-dup-error </pre>
<p>
    我们通常不需要启动一个xterm窗口，因此找到下面这行：
  </p>
<pre class="programlisting">
%RUN% xterm -e /usr/bin/bash –l </pre>
<p>
    把它注释掉：
  </p>
<pre class="programlisting">
REM %RUN% xterm -e /usr/bin/bash –l </pre>
<p>
    好了，批处理文件改完了。
  </p>
<p>
    回想一下上面的操作，在启动了X server后，我们执行了<span class="command"><strong>xhost</strong></span>命令来设置允许哪些计算机连接到X server，现在我们可以在配置文件中设置它。打开一个cygwin窗口，输入下面的命令：
  </p>
<pre class="programlisting">
echo "192.168.190.15" &gt;&gt; /etc/X0.hosts </pre>
<p>
    上面的命令会在/etc/X0.hosts文件中加入你想允许的X client，你可以在此文件中加入你的X客户端。因为我们使用的DISPLAY是0，所以在文件/etc/X0.hosts中增加；如果使用DISPLAY 1，则需要修改文件/etc/X1.hosts文件。现在启动X server后，192.168.190.15就被自动允许接入了。
  </p>
<p>
    现在我们再次双击startxwin.bat批处理，执行后就会出现一个丑陋的空白窗口，这就是所谓的根窗口。之所以是空白的，是因为现在还没有运行任何窗口管理器。别急，我们使用telnet或ssh远程登录Linux主机，执行命令：
  </p>
<pre class="programlisting">
startkde &amp; </pre>
<p>
    哈哈~~~本文开头所展示的KDE窗口出来了！！！现在你在KDE中运行任何程序，它们都运行在Linux主机上，却把结果显示在Windows主机上。
  </p>
<p>
    <span class="bold"><strong>[ 创建快捷方式 ]</strong></span>
  </p>
<p>
    在上面的操作中，启动X server后，需要使用telnet或ssh登录到Linux主机，才能启动自己想要的X client程序，有没有更简单的方法？
  </p>
<p>
    现在我们就需要用到expect软件了。这是一个如此有用的软件，以至于我忍不住要在这里插一段广告。
  </p>
<p>
    Expect为用户提供一种机制，使用户能够自动执行一些交互式的任务。例如，通常我们在使用telnet的时候，都需要手动输入用户名、密码才能登录。而使用Expect，我们就可以实现全自动的telnet交互，不需用户干预。Expect由Don Libes开发，基于TCL内核，它的主页在<a class="link" href="http://expect.nist.gov/" target="_blank">http://expect.nist.gov/</a>。
  </p>
<p>
    广告时间结束，我们继续。我使用expect编写了如下的TCL/EXPECT脚本，它可以使用ssh自动登录到指定Linux主机，然后启动我们需要的程序。程序如下：
  </p>
<pre class="programlisting">
#! /bin/expect -f

# Change these variable to yours
set user {easwy}
set host {192.168.190.15}
set xserver {192.168.190.91}
set password {123456}
set program {startkde}

set timeout 5
set done 0

spawn ssh "$user@$host"

while {!$done} {
    expect {
        "*(yes/no)?*" {
            # If the 1st time run ssh, it will prompt continue or not
            # answer yes
            exp_send "yes\n"
        }
        "assword*" {
            # Answer password
            exp_send "$password\n"
        }
        "\$*" {
            # Exit the loop
            incr done
        }
        "#*" {
            # Exit the loop
            incr done
        }
        timeout {
            # Timeout
            exp_send_user "Login timeout, please check!"
        }
    }
}

# Set DISPLAY environment variable
exp_send "export DISPLAY=$xserver:0\n"

# Start your program
exp_send "nohup $program &amp;\n"
expect -regexp {\[[0-9]*\] [0-9]*}
exp_send "\n"

# Finished </pre>
<p>
    把上面的内容保存为一个文件，例如，保存为cygwin的~/login.exp。<span class="bold"><strong>注意：</strong></span>把脚本起始处的5个变量替换成你自己的，只需要替换大括号中间的内容。使用telnet的朋友请自行修改此脚本。
  </p>
<p>
    下面我们再改一下c:\cygwin\usr\X11R6\bin\startxwin.bat文件，在此文件的最后增加：
  </p>
<pre class="programlisting">
REM Start your X client program
%CYGWIN_ROOT%\bin\run -p /bin expect -f ~/login.exp </pre>
<p>
    我们使用expect来执行刚才保存的~/login.exp。
  </p>
<p>
    现在，我们右击startxwin.bat文件，选择“发送到桌面快捷方式”。以后，只要你双击此快捷方式，就能立刻在Windows上使用Linux主机上的程序了。
  </p>
<p>
    我们再来看一个有趣的例子。
  </p>
<div class="informalfigure">
<div class="mediaobject" align="center"><img src="http://easwy.com/blog/uploads/2009/02/cygwinx_3-300x225.jpg" align="middle"></div>
<div class="caption" align="center"><a class="link" href="http://easwy.com/blog/uploads/2009/02/cygwinx_3.jpg" target="_blank">点击查看大图</a></div>
</div>
<p>
    在上图中共开了三个终端，它们分别运行在不同的主机上，却都在Windows主机上进行输入输出。这就是X window的魅力了，如果你愿意，你还可以把其它Windows及Linux主机上的程序显示到这个X server中，正所谓一&#8221;桥&#8221;飞架南北，天堑变通途。
  </p>
<p>
    在本文完成后，经网友jiachunyu介绍，才知道有一个名为XWinLogon的软件，它也是使用cygwin的X server实现Linux的远程桌面。相比之下，它的安装和使用都简单了很多。这个软件的主页在：<a class="link" href="http://sourceforge.net/projects/xwinlogon/" target="_blank">http://sourceforge.net/projects/xwinlogon/</a>
  </p>
<p>
    或者
  </p>
<p>
    <a class="link" href="http://www.calcmaster.net/visual-c++/xwinlogon/" target="_blank">http://www.calcmaster.net/visual-c++/xwinlogon/</a>
  </p>
<p>
    有兴趣可以试一下。
  </p>
<p>
    需要说明的是，XWinLogon中包含了部分cygwin的软件包，如果你安装了cygwin，则不能安装此软件(我没有试过，在作者主页这样说明)。
  </p>
<p>
    <span class="bold"><strong>[参考文档]</strong></span>
  </p>
<div class="itemizedlist">
<ul type="disc">
<li><a class="link" href="http://www.cygwin.com/" target="_blank">cygwin主页</a></li>
<li><a class="link" href="http://x.cygwin.com/docs/ug/setup-cygwin-x-installing.html" target="_blank">Installing Cygwin/X</a></li>
<li>
      xhost Man page
    </li>
<li>
      Xserver Man page
    </li>
<li>
      expect Man page
    </li>
<li><a class="link" href="http://expect.nist.gov/" target="_blank">expect主页</a></li>
</ul>
</div>
<div class="posturl">
<p><span class="bold"><strong>原创文章，请阅读页脚的<a href="#license">许可方式</a>，转载请注明：</strong></span>转载自<a class="link" href="http://easwy.com/blog/" target="_top">易水博客</a> [ <a class="link" href="http://easwy.com/blog/" target="_top">http://easwy.com/blog/</a> ]</p>
<p><span class="bold"><strong>本文链接地址:</strong></span> <a class="link" href="http://easwy.com/blog/archives/linux-remote-desktop-via-cygwin-x-server/" target="_top">http://easwy.com/blog/archives/linux-remote-desktop-via-cygwin-x-server/</a></p>
</div>
<p style="margin-top: 0; margin-bottom: 15px; color: #888888; font-size: 80%; font-style: italic">文章的脚注信息由WordPress的<a href="http://easwy.com/blog/wordpress/wp-posturl/" style="color: #8888FF; text-decoration: underline;">wp-posturl插件</a>自动生成</p>


<div class="fixed"></div><div id="related_posts"><h3  class="related_post_title">相关文章</h3><ul class="related_post"><li><a href='http://easwy.com/blog/archives/use-rxvt-in-cygwin/' rel='bookmark' title='Permanent Link: 使用rxvt做为cygwin终端'>使用rxvt做为cygwin终端</a></li>
<li><a href='http://easwy.com/blog/archives/vim-tips-windows-open-file-in-tab/' rel='bookmark' title='Permanent Link: vi/vim使用技巧: 在标签页中打开文件 (windows)'>vi/vim使用技巧: 在标签页中打开文件 (windows)</a></li>
<li><a href='http://easwy.com/blog/archives/linux-remote-desktop-by-vnc/' rel='bookmark' title='Permanent Link: 用VNC实现远程桌面共享(支持Windows, Linux, &#8230;)'>用VNC实现远程桌面共享(支持Windows, Linux, &#8230;)</a></li>
</div><div class="fixed"></div>]]></content:encoded>
			<wfw:commentRss>http://easwy.com/blog/archives/linux-remote-desktop-via-cygwin-x-server/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>使用rxvt做为cygwin终端</title>
		<link>http://easwy.com/blog/archives/use-rxvt-in-cygwin/</link>
		<comments>http://easwy.com/blog/archives/use-rxvt-in-cygwin/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 08:36:09 +0000</pubDate>
		<dc:creator>Easwy</dc:creator>
				<category><![CDATA[开源软件]]></category>
		<category><![CDATA[cygwin]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://easwy.com/blog/?p=388</guid>
		<description><![CDATA[rxvt是一个非常好用的终端仿真程序，本文介绍了如何使用rxvt做为cygwin的缺省终端。

<div class="fixed"></div><div id="related_posts"><h3  class="related_post_title">相关文章</h3><ul class="related_post"><li><a href='http://easwy.com/blog/archives/disable-ipv6-in-centos-and-redhat/' rel='bookmark' title='Permanent Link: Linux使用笔记：在CentOS 5中关闭IPv6'>Linux使用笔记：在CentOS 5中关闭IPv6</a></li>
<li><a href='http://easwy.com/blog/archives/chinese_in_debian_lenny/' rel='bookmark' title='Permanent Link: 在Debian Lenny中配置中文'>在Debian Lenny中配置中文</a></li>
<li><a href='http://easwy.com/blog/archives/proxy-setting-on-linux-console/' rel='bookmark' title='Permanent Link: Linux下常用程序的代理服务器(proxy)配置'>Linux下常用程序的代理服务器(proxy)配置</a></li>
</div><div class="fixed"></div>]]></description>
			<content:encoded><![CDATA[<p>
    昨天配置cygwin下的X server，在网上搜集资料时看到有人使用rxvt做为cygwin的终端，于是也试了一下。最终配置如下：
  </p>
<p>
    首先编辑文件~/.Xdefaults，内容如下：
  </p>
<pre class="programlisting">
! ~/.Xdefaults - X default resource settings
Rxvt*geometry: 120x40
Rxvt*background: #000020
Rxvt*foreground: #ffffbf
!Rxvt*borderColor: Blue
!Rxvt*scrollColor: Blue
!Rxvt*troughColor: Gray
Rxvt*scrollBar: True
Rxvt*scrollBar_right: True
Rxvt*font: Fixedsys
Rxvt*mfont: Terminal
Rxvt*SaveLines: 2000
Rxvt*loginShell: True
! VIM-like colors
Rxvt*color0: #000000
Rxvt*color1: #FFFFFF
Rxvt*color2: #00A800
Rxvt*color3: #FFFF00
Rxvt*color4: #0000A8
Rxvt*color5: #A800A8
Rxvt*color6: #00A8A8
Rxvt*color7: #D8D8D8
Rxvt*color8: #000000
Rxvt*color9: #FFFFFF
Rxvt*color10: #00A800
Rxvt*color11: #FFFF00
Rxvt*color12: #0000A8
Rxvt*color13: #A800A8
Rxvt*color14: #00A8A8
Rxvt*color15: #D8D8D8
! eof </pre>
<p>
    然后修改你的c:\cygwin\cygwin.bat文件，使用rxvt来替代cmd.exe：
  </p>
<pre class="programlisting">
@echo off
C:
chdir C:\cygwin\bin
set EDITOR=vi
set VISUAL=vi
set CYGWIN=codepage:oem tty binmode title
rxvt -e bash --login -i </pre>
<p>
    我在Xdefault中已经设置了中文字体，不过要想正常的显示和输入中文，还需要更改几个文件。在文件~/.bashrc中增加如下内容：
  </p>
<pre class="programlisting">
# Chinese locale
export LANG=zh_CN.GBK
export OUTPUT_CHARSET="GBK"

# Display Chinese
alias ls='ls --show-control-chars --color'
alias dir='ls --show-control-chars'
alias less='less --raw-control-chars' </pre>
<p>
    如果~/.bash_profile还未存在，那么创建它，并添加如下内容：
  </p>
<pre class="programlisting">
# Exec .bashrc
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi</pre>
<p>
    另外再创建一个~/.inputrc文件，内容如下：
  </p>
<pre class="programlisting">
# Chinese input/output in bash
set meta-flag on
set input-meta on
set output-meta on
set convert-meta off
set completion-ignore-case on</pre>
<p>
    好了，现在可以使用rxvt做为cygwin的终端了。
  </p>
<p>
    <span class="bold"><strong>[ 参考文档 ]</strong></span>
  </p>
<p><a class="link" href="http://www.freemode.net/archives/000121.html" target="_blank">Cygwin + Rxvt</a></p>
<div class="posturl">
<p><span class="bold"><strong>原创文章，请阅读页脚的<a href="#license">许可方式</a>，转载请注明：</strong></span>转载自<a class="link" href="http://easwy.com/blog/" target="_top">易水博客</a> [ <a class="link" href="http://easwy.com/blog/" target="_top">http://easwy.com/blog/</a> ]</p>
<p><span class="bold"><strong>本文链接地址:</strong></span> <a class="link" href="http://easwy.com/blog/archives/use-rxvt-in-cygwin/" target="_top">http://easwy.com/blog/archives/use-rxvt-in-cygwin/</a></p>
</div>
<p style="margin-top: 0; margin-bottom: 15px; color: #888888; font-size: 80%; font-style: italic">文章的脚注信息由WordPress的<a href="http://easwy.com/blog/wordpress/wp-posturl/" style="color: #8888FF; text-decoration: underline;">wp-posturl插件</a>自动生成</p>


<div class="fixed"></div><div id="related_posts"><h3  class="related_post_title">相关文章</h3><ul class="related_post"><li><a href='http://easwy.com/blog/archives/disable-ipv6-in-centos-and-redhat/' rel='bookmark' title='Permanent Link: Linux使用笔记：在CentOS 5中关闭IPv6'>Linux使用笔记：在CentOS 5中关闭IPv6</a></li>
<li><a href='http://easwy.com/blog/archives/chinese_in_debian_lenny/' rel='bookmark' title='Permanent Link: 在Debian Lenny中配置中文'>在Debian Lenny中配置中文</a></li>
<li><a href='http://easwy.com/blog/archives/proxy-setting-on-linux-console/' rel='bookmark' title='Permanent Link: Linux下常用程序的代理服务器(proxy)配置'>Linux下常用程序的代理服务器(proxy)配置</a></li>
</div><div class="fixed"></div>]]></content:encoded>
			<wfw:commentRss>http://easwy.com/blog/archives/use-rxvt-in-cygwin/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
