﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>沪江博客-青草青园-最新评论</title><link>http://blog.hjenglish.com/teliute/CommentsRSS.aspx</link><description> &lt;font color=#4169E1&gt;寻找一份属于自己的蓝色天空...&lt;/font&gt; </description><language>zh-cn</language><pubDate>Wed, 17 Sep 2008 03:15:36 GMT</pubDate><lastBuildDate>Wed, 17 Sep 2008 03:15:36 GMT</lastBuildDate><generator>cnblogs</generator><item><title>re: Ubuntu Linux必备基础知识(置顶了好找:)大多转自Ubuntu中文论坛</title><link>http://blog.hjenglish.com/teliute/archive/2008/09/16/952334.html#1173039</link><dc:creator>TeliuTe</dc:creator><author>TeliuTe</author><pubDate>Tue, 16 Sep 2008 10:28:00 GMT</pubDate><guid>http://blog.hjenglish.com/teliute/archive/2008/09/16/952334.html#1173039</guid><description><![CDATA[hiweed源<br><br>## cn99<br>deb <a href="http://ubuntu.cn99.com/ubuntu/" target="_new">http://ubuntu.cn99.com/ubuntu/</a> dapper main restricted universe multiverse<br>deb <a href="http://ubuntu.cn99.com/ubuntu/" target="_new">http://ubuntu.cn99.com/ubuntu/</a> dapper-updates main restricted universe multiverse<br>deb <a href="http://ubuntu.cn99.com/ubuntu/" target="_new">http://ubuntu.cn99.com/ubuntu/</a> dapper-security main restricted universe multiverse<br>deb <a href="http://ubuntu.cn99.com/ubuntu/" target="_new">http://ubuntu.cn99.com/ubuntu/</a> dapper-backports main restricted universe multiverse<br>## ubuntu-cn<br>deb <a href="http://archive.ubuntu.org.cn/ubuntu-cn/" target="_new">http://archive.ubuntu.org.cn/ubuntu-cn/</a> dapper main universe multiverse restricted<br>## deb-src<br>deb-src <a href="http://cn.archive.ubuntu.com/ubuntu" target="_new">http://cn.archive.ubuntu.com/ubuntu</a> dapper main restricted universe multiverse <img src ="http://blog.hjenglish.com/teliute/aggbug/1173039.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://blog.hjenglish.com/teliute/" target="_blank">TeliuTe</a> 2008-09-16 18:28 <a href="http://blog.hjenglish.com/teliute/archive/2008/09/16/952334.html#1173039#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div><div align='right'><script type="text/javascript"><!--
google_ad_client = "pub-4210569241504288";
google_alternate_color = "FFFFFF";
google_ad_width = 234;
google_ad_height = 60;
google_ad_format = "234x60_as";
google_ad_type = "text_image";
google_ad_channel ="8623530809";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0000FF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>]]></description></item><item><title>re: Ubuntu Linux必备基础知识(置顶了好找:)大多转自Ubuntu中文论坛</title><link>http://blog.hjenglish.com/teliute/archive/2008/09/15/952334.html#1172442</link><dc:creator>TeliuTe</dc:creator><author>TeliuTe</author><pubDate>Mon, 15 Sep 2008 15:10:00 GMT</pubDate><guid>http://blog.hjenglish.com/teliute/archive/2008/09/15/952334.html#1172442</guid><description><![CDATA[首先保证linux的正常安装和网络的通畅这个必要条件。<br>　　<br>　　下载socks5-v1.0r11.tar.gz和socks5-v1.0r11.patch<br>　　(这个补丁对此版本很重要)拷贝到/tmp目录下<br>　　<br>　　在此目录下执行<br>　　<br>　　#tar -xvzf socks5-v1.0r11.tgz<br>　　<br>　　进行patch，在socks5-v1.0r11/include目录下执行<br>　　<br>　　#patch -p0 &lt;; /tmp/socks5-v1.0r11.patch<br>　　<br>　　回到socks5-v1.0r11目录开始编译<br>　　<br>　　#cd socks5-v1.0r11<br>　　<br>　　#./configure --with-threads<br>　　<br>　　#make<br>　　<br>　　#make install<br>　　<br>　　进行配置，在/etc下用vi生成socks5.conf文件,主要内容为：<br>　　<br>　　set SOCKS5_BINDINFC serverIP:port<br>　　　　set SOCKS5_NOIDENT<br>　　　　set SOCKS5_TIMEOUT 15<br>　　　　set SOCKS5_V4SUPPORT<br>　　<br>　　　　auth - - -<br>　　　　permit - - clientIP - - -<br>　　　　deny - - - - - - -<br>　　noproxy - - 202.38.-<br>　　<br>　　测试，执行<br>　　<br>　　#/usr/local/bin/socks5 -f -s<br>　　<br>　　若仅显示<br>　　<br>　　XXXXX: Socks5 starting at Mon Jun 21 01:23:45 2002 in normal mode<br>　　<br>　　则表示成功，<br>　　如果显示<br>　　<br>　　XXXXX：Bind failed for serverip:1080:address already in use<br>　　<br>　　则换一个不常用的port试试。<br>　　　　<br>　　系统起动时自动运行，在/etc/rc.d/rc.local里加入下面这一行<br>　　<br>　　/usr/local/bin/socks5 -t -s 2&gt;; /var/log/socks5<br>　　<br>　　以后关于socks5的日志都单独记录在/var/log/socks5里了。<br>　　<br>　　希望这篇小文能对和我一样的新手有所帮助，祝大家好运。<img src ="http://blog.hjenglish.com/teliute/aggbug/1172442.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://blog.hjenglish.com/teliute/" target="_blank">TeliuTe</a> 2008-09-15 23:10 <a href="http://blog.hjenglish.com/teliute/archive/2008/09/15/952334.html#1172442#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div><div align='right'><script type="text/javascript"><!--
google_ad_client = "pub-4210569241504288";
google_alternate_color = "FFFFFF";
google_ad_width = 234;
google_ad_height = 60;
google_ad_format = "234x60_as";
google_ad_type = "text_image";
google_ad_channel ="8623530809";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0000FF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>]]></description></item><item><title>re: Ubuntu Linux必备基础知识(置顶了好找:)大多转自Ubuntu中文论坛</title><link>http://blog.hjenglish.com/teliute/archive/2008/09/15/952334.html#1172075</link><dc:creator>TeliuTe</dc:creator><author>TeliuTe</author><pubDate>Mon, 15 Sep 2008 07:33:00 GMT</pubDate><guid>http://blog.hjenglish.com/teliute/archive/2008/09/15/952334.html#1172075</guid><description><![CDATA[Linux Socks5代理服务器安装<br>下载socks5-v1.0r11.tar.gz<br>下载socks5-v1.0r11.patched.tar.gz<br> <br>由于公司在代理服务器上绑定了IP和Mac地址，并且对相应的IP地址作了相应的限制，使得受限制的IP只能上网、收发邮件，不能用QQ（好严重的问题哦，不能上QQ，那不是不能泡小MM的吗。。。），不过本人由于工作原因有两台机器一台为Linux另一台为Win，是属于不受限制的，我的同事就叫我他做个代理。<br>另外在QQ上遇到了版主，他叫我写一下配置的过程，于是就有了这篇，请大家多指教<br><br>－－－－－－－－－－－－－－－－－－－－－－－－－－－－<br>1.找到socks5-v1.0r11.tar.gz这个软件包，我找这个软件包找了有一会，建议在北大天网中搜索，很快的<br>2.传到服务器上 <br>3.开始编译，安装<br>#tar xvfz socks5-v1.0r11.tar.gz<br>#cd socks5-v1.0r11<br>#./configure --with-threads<br>#make<br>#make install<br>4.开始配置<br>一般来说安装完后，会在/etc目录下生成socks5.conf(配置文件)和socks5.passwd(用于验证的文件)这两个文件，<br>下面我把我的配置文件帖出来<br><br>#/etc/socks5.conf<br><br>#指定SOCKS v5绑定的ip地址和监听的端口。如果不指定绑定的IP将使用0.0.0.0<br><br>set SOCKS5_BINDINFC 192.168.0.8:1080<br><br><br><br>#忽略ident请求。当客户机没有运行identd时，使用SOCKS5_NOIDENT将降低超时值<br><br>set SOCKS5_NOIDENT<br><br><br><br>#指定连接停顿最长时间。超过最大值后，socks5断开连接<br><br>set SOCKS5_TIMEOUT 15<br><br><br><br>#socks5将接受SOCKS V4 协议的请求,默认不接受<br><br>set SOCKS5_V4SUPPORT<br><br><br><br>#指定同时存在的最大子进程数,Socks5预设为64<br><br>set SOCKS5_MAXCHILD 4<br><br><br><br>#指定密码文件<br><br>set SOCKS5_PWDFILE /etc/socks5.passwd<br><br><br><br>#对所有的客户连接都使用username/password用户认证方法<br><br>auth - - u<br><br><br><br>#允许来自192.168.0.X的任何经过用户认证的连接<br><br>permit u - 192.168.0.X - - -<br><br>permit u - 192.168.0.X - - -<br><br>permit u - 192.168.0.X - - -<br><br>permit u - 192.168.0.X - - -<br><br><br><br><br>#/etc/socks5.passwd<br><br>#用户  密码<br><br>userA passwdA<br><br>userB passwdB<br><br>userC passwdC<br><br><br><br>前面的一些设置由于我在配置文件里都写了相关的内容，就不在说明了<br>如果不需要用户验证只需要把<br><br>auth - - u<br><br>改成 auth - - -<br><br><br><br>permit u - 192.168.0.X - - -<br><br>改成<br><br>permit - - - - - -<br><br><br>大家注意上面permit - - - - - -这一句，是使任何人都可以使用你的socks5 server，非常不安全（让你作跳板），最好是有点限制<br>如<br><br>permit - - clientIP - - - <br><br> 原文地址http://blog.chinaunix.net/u/24624/showart_426761.html<br><br> <a href="http://www.chinaunix.net/jh/4/68847.html" target="_new">http://www.chinaunix.net/jh/4/68847.html</a><img src ="http://blog.hjenglish.com/teliute/aggbug/1172075.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://blog.hjenglish.com/teliute/" target="_blank">TeliuTe</a> 2008-09-15 15:33 <a href="http://blog.hjenglish.com/teliute/archive/2008/09/15/952334.html#1172075#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div><div align='right'><script type="text/javascript"><!--
google_ad_client = "pub-4210569241504288";
google_alternate_color = "FFFFFF";
google_ad_width = 234;
google_ad_height = 60;
google_ad_format = "234x60_as";
google_ad_type = "text_image";
google_ad_channel ="8623530809";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0000FF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>]]></description></item><item><title>re: Ubuntu Linux必备基础知识(置顶了好找:)大多转自Ubuntu中文论坛</title><link>http://blog.hjenglish.com/teliute/archive/2008/09/14/952334.html#1171521</link><dc:creator>TeliuTe</dc:creator><author>TeliuTe</author><pubDate>Sun, 14 Sep 2008 14:50:00 GMT</pubDate><guid>http://blog.hjenglish.com/teliute/archive/2008/09/14/952334.html#1171521</guid><description><![CDATA[加载光盘映像的menu.lst<br># This is a sample file. You should make some changes to it.<br># Edit by TeliuTe<br><br>color black/cyan yellow/cyan<br>timeout 3<br>default /default<br><br>title start PE.ISO<br>find --set-root /pe.iso<br>map /pe.iso (hd32)<br>map --hook<br>chainloader (hd32)<br><br>title find and load IO.SYS of Windows 9x/Me<br>fallback 3<br>find --set-root /io.sys<br>chainloader /io.sys<br>savedefault --wait=2<br><img src ="http://blog.hjenglish.com/teliute/aggbug/1171521.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://blog.hjenglish.com/teliute/" target="_blank">TeliuTe</a> 2008-09-14 22:50 <a href="http://blog.hjenglish.com/teliute/archive/2008/09/14/952334.html#1171521#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div><div align='right'><script type="text/javascript"><!--
google_ad_client = "pub-4210569241504288";
google_alternate_color = "FFFFFF";
google_ad_width = 234;
google_ad_height = 60;
google_ad_format = "234x60_as";
google_ad_type = "text_image";
google_ad_channel ="8623530809";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0000FF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>]]></description></item><item><title>re: Ubuntu Linux必备基础知识(置顶了好找:)大多转自Ubuntu中文论坛</title><link>http://blog.hjenglish.com/teliute/archive/2008/09/14/952334.html#1171336</link><dc:creator>TeliuTe</dc:creator><author>TeliuTe</author><pubDate>Sun, 14 Sep 2008 11:04:00 GMT</pubDate><guid>http://blog.hjenglish.com/teliute/archive/2008/09/14/952334.html#1171336</guid><description><![CDATA[删除旧内核<br><br>sudo aptitude purge ~ilinux-image-.*\(\!`uname -r`\)<br><br>管理旧内核<br><br>su-to-root -X -c /usr/sbin/startupmanager<img src ="http://blog.hjenglish.com/teliute/aggbug/1171336.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://blog.hjenglish.com/teliute/" target="_blank">TeliuTe</a> 2008-09-14 19:04 <a href="http://blog.hjenglish.com/teliute/archive/2008/09/14/952334.html#1171336#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div><div align='right'><script type="text/javascript"><!--
google_ad_client = "pub-4210569241504288";
google_alternate_color = "FFFFFF";
google_ad_width = 234;
google_ad_height = 60;
google_ad_format = "234x60_as";
google_ad_type = "text_image";
google_ad_channel ="8623530809";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0000FF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>]]></description></item><item><title>re: Ubuntu Linux必备基础知识(置顶了好找:)大多转自Ubuntu中文论坛</title><link>http://blog.hjenglish.com/teliute/archive/2008/09/14/952334.html#1171329</link><dc:creator>TeliuTe</dc:creator><author>TeliuTe</author><pubDate>Sun, 14 Sep 2008 10:51:00 GMT</pubDate><guid>http://blog.hjenglish.com/teliute/archive/2008/09/14/952334.html#1171329</guid><description><![CDATA[vista 修复 ubuntu启动菜单<br><br>1.先进入grub<br>控制台键入：sudo grub<br>然后键入：find /boot/grub/stage1 确定ubuntu安装在哪个分区，该命令会返回形如（hdx,y)的参数<br>quit 退出grub<br>2.使用dd命令提取ubuntu所在分区的启动扇区为一个文件并命名为uboot,命令如下：<br>sudo dd if=/dev/hdaz of=/home/yourname/uboot bc=512 count=1<br>注意：hdaz中的z=y+1,若是sata硬盘，hdaz则应该改为sdaz，yourname就是你的帐号<br>3.将所得的uboot放在vista所在分区的根目录下<br>4.进入vista后，使用bcdedit命令将ubuntu启动项加入vista的启动管理菜单<br>首先要获得管理员权限，打开“运行&quot;,键入cmd,进入命令行，然后输入：<br>bcdedit /create /d &quot;ubuntu 7.10&quot; /application osloader #会返回一串标识码,以下用{id}指代<br>bcdedit /set {id} device boot<br>bcdedit /set {id} path \uboot<br>bcdedit /displayorder {id} /addlast <br><br>－－－－－－－－－－－－－－－－－－－－－－－<br><br>1. 下载 grub4dos<br>2. 将压缩包里面的 grldr 和 grldr.mbr 解压到 C:\ (当然别的地方也可以, 但是注意下面的命令行参数)<br>3. 在 Vista 命令行下面输入这些命令:<br><br>bcdedit /create /d “GRUB4DOS” /application bootsector<br>命令执行后会返回一个 GUID, 记下来<br>bcdedit /set {GUID} device partition=C:<br>bcdedit /set {GUID} path \grldr.mbr<br>bcdedit /displayorder {GUID} /addlast <img src ="http://blog.hjenglish.com/teliute/aggbug/1171329.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://blog.hjenglish.com/teliute/" target="_blank">TeliuTe</a> 2008-09-14 18:51 <a href="http://blog.hjenglish.com/teliute/archive/2008/09/14/952334.html#1171329#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div><div align='right'><script type="text/javascript"><!--
google_ad_client = "pub-4210569241504288";
google_alternate_color = "FFFFFF";
google_ad_width = 234;
google_ad_height = 60;
google_ad_format = "234x60_as";
google_ad_type = "text_image";
google_ad_channel ="8623530809";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0000FF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>]]></description></item><item><title>re: Ubuntu Linux必备基础知识(置顶了好找:)大多转自Ubuntu中文论坛</title><link>http://blog.hjenglish.com/teliute/archive/2008/09/14/952334.html#1170925</link><dc:creator>TeliuTe</dc:creator><author>TeliuTe</author><pubDate>Sat, 13 Sep 2008 17:59:00 GMT</pubDate><guid>http://blog.hjenglish.com/teliute/archive/2008/09/14/952334.html#1170925</guid><description><![CDATA[mkisofs.exe -o %tarfile% -V &quot;my lable&quot; -J -joliet-long -R -no-emul-boot -boot-load-size 4 -boot-info-table -b isolinux/isolinux.bin -c isolinux/boot.cat %srcfldr%<br><br>其中tarfile是目标iso名<br>my lable是光盘卷标<br>srcfldr变量是源文件根目录<img src ="http://blog.hjenglish.com/teliute/aggbug/1170925.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://blog.hjenglish.com/teliute/" target="_blank">TeliuTe</a> 2008-09-14 01:59 <a href="http://blog.hjenglish.com/teliute/archive/2008/09/14/952334.html#1170925#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div><div align='right'><script type="text/javascript"><!--
google_ad_client = "pub-4210569241504288";
google_alternate_color = "FFFFFF";
google_ad_width = 234;
google_ad_height = 60;
google_ad_format = "234x60_as";
google_ad_type = "text_image";
google_ad_channel ="8623530809";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0000FF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>]]></description></item><item><title>重置Firefox</title><link>http://blog.hjenglish.com/teliute/archive/2008/09/11/952334.html#1168608</link><dc:creator>TeliuTe</dc:creator><author>TeliuTe</author><pubDate>Thu, 11 Sep 2008 10:26:00 GMT</pubDate><guid>http://blog.hjenglish.com/teliute/archive/2008/09/11/952334.html#1168608</guid><description><![CDATA[重置Firefox<br><br>删除主目录下的隐藏目录&quot;.mozilla&quot;，重启firefox，所有设置恢复默认。<img src ="http://blog.hjenglish.com/teliute/aggbug/1168608.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://blog.hjenglish.com/teliute/" target="_blank">TeliuTe</a> 2008-09-11 18:26 <a href="http://blog.hjenglish.com/teliute/archive/2008/09/11/952334.html#1168608#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div><div align='right'><script type="text/javascript"><!--
google_ad_client = "pub-4210569241504288";
google_alternate_color = "FFFFFF";
google_ad_width = 234;
google_ad_height = 60;
google_ad_format = "234x60_as";
google_ad_type = "text_image";
google_ad_channel ="8623530809";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0000FF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>]]></description></item><item><title>re: Ubuntu Linux必备基础知识(置顶了好找:)大多转自Ubuntu中文论坛</title><link>http://blog.hjenglish.com/teliute/archive/2008/09/09/952334.html#1166602</link><dc:creator>TeliuTe</dc:creator><author>TeliuTe</author><pubDate>Tue, 09 Sep 2008 03:03:00 GMT</pubDate><guid>http://blog.hjenglish.com/teliute/archive/2008/09/09/952334.html#1166602</guid><description><![CDATA[<a href="http://register.vmware.com/content/registration.html" target="_new">http://register.vmware.com/content/registration.html</a><br>这里可以申请VM序列号<img src ="http://blog.hjenglish.com/teliute/aggbug/1166602.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://blog.hjenglish.com/teliute/" target="_blank">TeliuTe</a> 2008-09-09 11:03 <a href="http://blog.hjenglish.com/teliute/archive/2008/09/09/952334.html#1166602#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div><div align='right'><script type="text/javascript"><!--
google_ad_client = "pub-4210569241504288";
google_alternate_color = "FFFFFF";
google_ad_width = 234;
google_ad_height = 60;
google_ad_format = "234x60_as";
google_ad_type = "text_image";
google_ad_channel ="8623530809";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0000FF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>]]></description></item><item><title>re: Ubuntu Linux必备基础知识(置顶了好找:)大多转自Ubuntu中文论坛</title><link>http://blog.hjenglish.com/teliute/archive/2008/09/08/952334.html#1166369</link><dc:creator>TeliuTe</dc:creator><author>TeliuTe</author><pubDate>Mon, 08 Sep 2008 15:25:00 GMT</pubDate><guid>http://blog.hjenglish.com/teliute/archive/2008/09/08/952334.html#1166369</guid><description><![CDATA[UUID获取方法：<br>在终端中输入sudo vol_id -u /dev/sda6<img src ="http://blog.hjenglish.com/teliute/aggbug/1166369.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://blog.hjenglish.com/teliute/" target="_blank">TeliuTe</a> 2008-09-08 23:25 <a href="http://blog.hjenglish.com/teliute/archive/2008/09/08/952334.html#1166369#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div><div align='right'><script type="text/javascript"><!--
google_ad_client = "pub-4210569241504288";
google_alternate_color = "FFFFFF";
google_ad_width = 234;
google_ad_height = 60;
google_ad_format = "234x60_as";
google_ad_type = "text_image";
google_ad_channel ="8623530809";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0000FF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>]]></description></item><item><title>re: Ubuntu Linux必备基础知识(置顶了好找:)大多转自Ubuntu中文论坛</title><link>http://blog.hjenglish.com/teliute/archive/2008/09/08/952334.html#1165796</link><dc:creator>TeliuTe</dc:creator><author>TeliuTe</author><pubDate>Mon, 08 Sep 2008 05:35:00 GMT</pubDate><guid>http://blog.hjenglish.com/teliute/archive/2008/09/08/952334.html#1165796</guid><description><![CDATA[屏幕录像istanbul <br>stardict官方网站去下载相应的词典安装文件，安装方法很简单，<br>把源码包解压到/usr/share/stardict/dic/目录下，别忘了释放该文件的权限。<br><img src ="http://blog.hjenglish.com/teliute/aggbug/1165796.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://blog.hjenglish.com/teliute/" target="_blank">TeliuTe</a> 2008-09-08 13:35 <a href="http://blog.hjenglish.com/teliute/archive/2008/09/08/952334.html#1165796#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div><div align='right'><script type="text/javascript"><!--
google_ad_client = "pub-4210569241504288";
google_alternate_color = "FFFFFF";
google_ad_width = 234;
google_ad_height = 60;
google_ad_format = "234x60_as";
google_ad_type = "text_image";
google_ad_channel ="8623530809";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0000FF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>]]></description></item><item><title>re: Ubuntu Linux必备基础知识(置顶了好找:)大多转自Ubuntu中文论坛</title><link>http://blog.hjenglish.com/teliute/archive/2008/09/08/952334.html#1165778</link><dc:creator>TeliuTe</dc:creator><author>TeliuTe</author><pubDate>Mon, 08 Sep 2008 05:17:00 GMT</pubDate><guid>http://blog.hjenglish.com/teliute/archive/2008/09/08/952334.html#1165778</guid><description><![CDATA[查看ubuntu版本：<br>cat /etc/issue<br>或者：<br>sudo lsb_release -a <img src ="http://blog.hjenglish.com/teliute/aggbug/1165778.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://blog.hjenglish.com/teliute/" target="_blank">TeliuTe</a> 2008-09-08 13:17 <a href="http://blog.hjenglish.com/teliute/archive/2008/09/08/952334.html#1165778#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div><div align='right'><script type="text/javascript"><!--
google_ad_client = "pub-4210569241504288";
google_alternate_color = "FFFFFF";
google_ad_width = 234;
google_ad_height = 60;
google_ad_format = "234x60_as";
google_ad_type = "text_image";
google_ad_channel ="8623530809";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0000FF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>]]></description></item><item><title>re: Ubuntu Linux必备基础知识(置顶了好找:)大多转自Ubuntu中文论坛</title><link>http://blog.hjenglish.com/teliute/archive/2008/09/04/952334.html#1161763</link><dc:creator>TeliuTe</dc:creator><author>TeliuTe</author><pubDate>Thu, 04 Sep 2008 15:17:00 GMT</pubDate><guid>http://blog.hjenglish.com/teliute/archive/2008/09/04/952334.html#1161763</guid><description><![CDATA[title		Ubuntu 8.04, kernel 2.6.24-16-generic<br>root		(hd0,11)<br>kernel		/boot/vmlinuz-2.6.24-16-generic root=UUID=615ada9e-58f0-4ef6-8cdf-d5c4a96e21da ro quiet splash<br>initrd		/boot/initrd.img-2.6.24-16-generic<br>quiet<img src ="http://blog.hjenglish.com/teliute/aggbug/1161763.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://blog.hjenglish.com/teliute/" target="_blank">TeliuTe</a> 2008-09-04 23:17 <a href="http://blog.hjenglish.com/teliute/archive/2008/09/04/952334.html#1161763#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div><div align='right'><script type="text/javascript"><!--
google_ad_client = "pub-4210569241504288";
google_alternate_color = "FFFFFF";
google_ad_width = 234;
google_ad_height = 60;
google_ad_format = "234x60_as";
google_ad_type = "text_image";
google_ad_channel ="8623530809";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0000FF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>]]></description></item><item><title>re: 导航栏－青草青园</title><link>http://blog.hjenglish.com/teliute/archive/2008/08/29/362218.html#1154439</link><dc:creator>TeliuTe</dc:creator><author>TeliuTe</author><pubDate>Fri, 29 Aug 2008 03:02:00 GMT</pubDate><guid>http://blog.hjenglish.com/teliute/archive/2008/08/29/362218.html#1154439</guid><description><![CDATA[<a href="http://space.im286.com/?135105" target="_new">http://space.im286.com/?135105</a><img src ="http://blog.hjenglish.com/teliute/aggbug/1154439.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://blog.hjenglish.com/teliute/" target="_blank">TeliuTe</a> 2008-08-29 11:02 <a href="http://blog.hjenglish.com/teliute/archive/2008/08/29/362218.html#1154439#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div><div align='right'><script type="text/javascript"><!--
google_ad_client = "pub-4210569241504288";
google_alternate_color = "FFFFFF";
google_ad_width = 234;
google_ad_height = 60;
google_ad_format = "234x60_as";
google_ad_type = "text_image";
google_ad_channel ="8623530809";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0000FF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>]]></description></item><item><title>re: Ubuntu Linux必备基础知识(置顶了好找:)大多转自Ubuntu中文论坛</title><link>http://blog.hjenglish.com/teliute/archive/2008/08/23/952334.html#1146308</link><dc:creator>TeliuTe</dc:creator><author>TeliuTe</author><pubDate>Fri, 22 Aug 2008 18:01:00 GMT</pubDate><guid>http://blog.hjenglish.com/teliute/archive/2008/08/23/952334.html#1146308</guid><description><![CDATA[在Html中<br>&lt;sup&gt;...&lt;/sup&gt;是上标<br>&lt;sub&gt;...&lt;/sub&gt;是下标<br><img src ="http://blog.hjenglish.com/teliute/aggbug/1146308.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://blog.hjenglish.com/teliute/" target="_blank">TeliuTe</a> 2008-08-23 02:01 <a href="http://blog.hjenglish.com/teliute/archive/2008/08/23/952334.html#1146308#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div><div align='right'><script type="text/javascript"><!--
google_ad_client = "pub-4210569241504288";
google_alternate_color = "FFFFFF";
google_ad_width = 234;
google_ad_height = 60;
google_ad_format = "234x60_as";
google_ad_type = "text_image";
google_ad_channel ="8623530809";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0000FF";
google_color_text = "000000";
google_color_url = "008000";
//--></script>
<script type="text/javascript"
  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>]]></description></item></channel></rss>