<?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>anyLinux, nonsense talking &#187; 0pen Source</title>
	<atom:link href="http://anylinux.net/post/category/0pen-source/feed" rel="self" type="application/rss+xml" />
	<link>http://anylinux.net</link>
	<description>念書是一項每日任務，但是解完了也不給G</description>
	<lastBuildDate>Wed, 08 Sep 2010 03:32:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>「Linux Next」 初瞰</title>
		<link>http://anylinux.net/post/1765.html</link>
		<comments>http://anylinux.net/post/1765.html#comments</comments>
		<pubDate>Fri, 03 Sep 2010 06:16:52 +0000</pubDate>
		<dc:creator>drivel</dc:creator>
				<category><![CDATA[0pen Source]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Linux-Next]]></category>

		<guid isPermaLink="false">http://anylinux.net/?p=1765</guid>
		<description><![CDATA[<p>　　今日到 Kernel.org 上闲逛，发现了一个新东西，叫做 「Linux Next」，这个新东东不但独立于其他的 version，还被放在了第一位 =,=，如图所示</p>
<p align="center">
<img src="http://anylinux.net/wp-content/uploads/2010/09/ScreenShot00006.png" alt="" title="Linux-Next" width="396" height="215" class="aligncenter size-full wp-image-1766" />
</p>
<p>　　那么这个东西到底是做什么用的呢？根据 Sean Michael Kerner 的文章所述，随着 2.6 版本的内核越来越庞大，而且这种增加是随着时间一直在增长的，维护则变的越来越困难。这样，「Linux Next」就是为了解决这种情况的产物。</p>
<p>　　Linux 内核的第二号人物，Andrew Morton 发现，如果让其他人去测试代码，而不是写这些代码的开发者，会出现一些问题。为此 Andrew Morton 创建了这个新项目，每天都会把所有 Linux 内核代码的所有分支汇集到一起，然后进行一次测试。唔，听起来似乎挺简单的，但是事实可真不是如此。</p>
<p>　　送上两个关于 「Linux Next」 的文章，如果大家有兴趣继续了解的话。</p>
<p><a href="http://kerneltrap.org/Linux/The_Usefulness_Of_Linux-Next">http://kerneltrap.org/Linux/The_Usefulness_Of_Linux-Next</a><br />
<a href="http://blog.internetnews.com/skerner/2008/02/-linux-next-begins-to-take-sha.html">http://blog.internetnews.com/skerner/2008/02/-linux-next-begins-to-take-sha.html</a></p>
<h2  class="related_post_title">相关日志</h2><ul class="related_post"><li>12/14/2009 -- <a href="http://anylinux.net/post/1302.html" title="NOI Linux 终于更新到 Ubuntu 7.10 了…内牛满面">NOI Linux 终于更新到 Ubuntu 7.10 了…内牛满面</a></li><li>12/16/2007 -- <a href="http://anylinux.net/post/487.html" title="Debian 硬盘安装系统">Debian 硬盘安装系统</a></li><li>12/05/2007 -- <a href="http://anylinux.net/post/484.html" title="Miniplayer 转换 脚本">Miniplayer 转换 脚本</a></li></ul>]]></description>
		<wfw:commentRss>http://anylinux.net/post/1765.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux 流量分析的命令</title>
		<link>http://anylinux.net/post/1753.html</link>
		<comments>http://anylinux.net/post/1753.html#comments</comments>
		<pubDate>Thu, 02 Sep 2010 13:57:12 +0000</pubDate>
		<dc:creator>drivel</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Net]]></category>

		<guid isPermaLink="false">http://anylinux.net/?p=1753</guid>
		<description><![CDATA[<p>唔，直接做成一个 alias 吧</p>
<p>适用于 RHEL：<br />
列出所有 ESTABLISHED 状态的连接</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline">netstat -nta | fgrep &quot;ESTABLISHED&quot; | cut -b 49-75 | cut -d ':' -f1 | sort | uniq -c | sort -n -r --key=1,7 | head -25</li></ol></div>
<p>列出所有连接状态的统计</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline">netstat -nta | fgrep &quot;:&quot; | cut -b 77-90 | sort | uniq -c</li></ol></div>
<p>适用于 Debian：<br />
列出所有 ESTABLISHED 状态的连接</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline">netstat -nta | fgrep &quot;ESTABLISHED&quot; | cut -b 45-75 | cut -d ':' -f1 | sort | uniq -c | sort -n -r --key=1,7 | head -25</li></ol></div>
<p>列出所有连接状态的统计</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline">netstat -nta | fgrep &quot;:&quot; | cut -b 69-90 | sort | uniq -c</li></ol></div>
<p>列出所有 ESTABLISHED 状态的连接对 IPv6 不友好</p>
<h2  class="related_post_title">随机日志</h2><ul class="related_post"><li>06/06/2007 -- <a href="http://anylinux.net/post/162.html" title="令人厌恶的ARP攻击">令人厌恶的ARP攻击</a></li><li>02/12/2009 -- <a href="http://anylinux.net/post/751.html" title="咱还能再卡一点儿吗">咱还能再卡一点儿吗</a></li><li>09/30/2009 -- <a href="http://anylinux.net/post/1172.html" title="联通的 iPhone 价格？相对来说不贵，但还是很贵">联通的 iPhone 价格？相对来说不贵，但还是很贵</a></li><li>12/31/2007 -- <a href="http://anylinux.net/post/508.html" title="最强的种子">最强的种子</a></li><li>05/03/2010 -- <a href="http://anylinux.net/post/1420.html" title="使用 MATLAB 最小二乘法拟合直线">使用 MATLAB 最小二乘法拟合直线</a></li><li>10/11/2007 -- <a href="http://anylinux.net/post/454.html" title="Gentoo USE参数清单中文详解">Gentoo USE参数清单中文详解</a></li><li>07/03/2007 -- <a href="http://anylinux.net/post/274.html" title="神奇的64 = 65?">神奇的64 = 65?</a></li><li>02/16/2008 -- <a href="http://anylinux.net/post/554.html" title="很黄很暴力的N种现象">很黄很暴力的N种现象</a></li><li>02/09/2008 -- <a href="http://anylinux.net/post/543.html" title="RIAA 败诉了，大快人心啊">RIAA 败诉了，大快人心啊</a></li><li>04/14/2010 -- <a href="http://anylinux.net/post/1388.html" title="Beauty of Azeroth">Beauty of Azeroth</a></li></ul>]]></description>
		<wfw:commentRss>http://anylinux.net/post/1753.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>时隔两年，再回 Gentoo （三）</title>
		<link>http://anylinux.net/post/1649.html</link>
		<comments>http://anylinux.net/post/1649.html#comments</comments>
		<pubDate>Sun, 15 Aug 2010 00:34:29 +0000</pubDate>
		<dc:creator>drivel</dc:creator>
				<category><![CDATA[0pen Source]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://anylinux.net/?p=1649</guid>
		<description><![CDATA[<p>　　如果没有什么问题，你现在应该可以看到邀请你登录的命令提示符了，使用 root 和刚才设置好的 root 密码登录。由于网络什么的都还没配置，因此需要手工来获取 IP 地址，我的网络是 DHCP 来的</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline"># dhcpd eth1</li></ol></div>
<p>先装上我最爱的 VIM 和 eix 吧，如果遇到拿不准准确名字的包，可以用 eix 来查询</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline"># emerge -av vim eix</li>
<li># eix-update</li></ol></div>
<p>后面就可以重新编译一次所有的东西了，因为 stage3 并不是完全在你的机器上编译的东西，因此可能会出现一些问题</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline"># emerge -uND world &amp;&amp; emerge -e world &amp;&amp; emerge --depclean &amp;&amp; revdep-rebuild</li></ol></div>
<p>配置一下网络</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline">vim /etc/conf.d/net</li></ol></div>
<p>对于 DHCP 的配置方法，很简单</p>
<blockquote><p>
config_eth1=( &#8220;dhcp&#8221; )
</p></blockquote>
<p>以上都完成后，就让我们一起来编译 Gnome 吧，至少我是</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline"># emerge -av xorg-x11 gnome ibus ibus-pinyin</li></ol></div>
<p>大概几百个包吧，编译完之后先配置下 .xinitrc</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline"># vim ~/.xinitrc</li></ol></div>
<p>并且写入内容，第一行是启动 GNOME 为默认桌面，后面的则为 ibus 的配置</p>
<blockquote><p>
exec gnome-session<br />
export XMODIFIERS=&#8221;@im=ibus&#8221;<br />
export GTK_IM_MODULE=&#8221;ibus&#8221;<br />
export QT_IM_MODULE=&#8221;xim&#8221;<br />
ibus-daemon -d -x
</p></blockquote>
<p>我用的是 N 卡，所以编译 N 卡驱动的时候，如果遇到说内核有问题，就去检查一下这几个地方</p>
<blockquote><p>Loadable module support &#8212;><br />
  [*] Enable loadable module support
</p></blockquote>
<blockquote><p>Processor and Features &#8212;><br />
  [*] MTRR (Memory Type Range Register) support
</p></blockquote>
<blockquote><p>Device Drivers &#8212;><br />
Character devices &#8212;><br />
< *> /dev/agpgart (AGP Support) &#8212;>
</p></blockquote>
<blockquote><p>Device Drivers &#8212;><br />
Graphics Support &#8212;><br />
< *> Support for frame buffer devices &#8212;><br />
<>   nVidia Framebuffer Support<br />
<>   nVidia Riva support
</p></blockquote>
<blockquote><p>Device Drivers &#8212;><br />
Graphics Support &#8212;><br />
< *> Support for frame buffer devices &#8212;><br />
< *>   Userspace VESA VGA graphics support
</p></blockquote>
<blockquote><p>Device Drivers &#8212;><br />
Graphics Support &#8212;><br />
< *> Support for frame buffer devices &#8212;><br />
[*]   VESA VGA graphics support
</p></blockquote>
<p>然后重新编译之。完成后使用编译的新内核重启，就可以用</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline"># nvidia-xconfig</li></ol></div>
<p>来自动配置 /etc/X11/xorg.conf 了，随后手动加入</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline"># vim /etc/X11/xorg.conf</li></ol></div>
<blockquote><p>Section &#8220;ServerFlags&#8221;<br />
        Option &#8220;AutoAddDevices&#8221; &#8220;False&#8221;<br />
        Option &#8220;AllowMouseOpenFail&#8221; &#8220;True&#8221;<br />
EndSection
</p></blockquote>
<p>否则你的鼠标和键盘很可能无法使用。这样就可以</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline"># startx</li></ol></div>
<p>桌面启动了吧？</p>
<p>完全完</p>
<p>时隔两年，再回 Gentoo （二）：<a href="http://anylinux.net/post/1637.html">http://anylinux.net/post/1637.html</a></p>
<h2  class="related_post_title">相关日志</h2><ul class="related_post"><li>08/15/2010 -- <a href="http://anylinux.net/post/1637.html" title="时隔两年，再回 Gentoo （二）">时隔两年，再回 Gentoo （二）</a></li><li>08/14/2010 -- <a href="http://anylinux.net/post/1617.html" title="时隔两年，再回 Gentoo （一）">时隔两年，再回 Gentoo （一）</a></li><li>05/10/2009 -- <a href="http://anylinux.net/post/803.html" title="Ubuntu 中文社区宣传视频及口号有奖征集">Ubuntu 中文社区宣传视频及口号有奖征集</a></li><li>02/24/2008 -- <a href="http://anylinux.net/post/558.html" title="该死的 gparted">该死的 gparted</a></li><li>06/02/2010 -- <a href="http://anylinux.net/post/1513.html" title="HowTo: lubuntu and Ubuntu 10.04 华为3G 连接">HowTo: lubuntu and Ubuntu 10.04 华为3G 连接</a></li><li>12/14/2009 -- <a href="http://anylinux.net/post/1302.html" title="NOI Linux 终于更新到 Ubuntu 7.10 了…内牛满面">NOI Linux 终于更新到 Ubuntu 7.10 了…内牛满面</a></li><li>11/23/2008 -- <a href="http://anylinux.net/post/685.html" title="Ian Murdock VS Scott McNealy">Ian Murdock VS Scott McNealy</a></li><li>07/22/2008 -- <a href="http://anylinux.net/post/611.html" title="自由的 Linux，谁在乎？">自由的 Linux，谁在乎？</a></li><li>05/24/2008 -- <a href="http://anylinux.net/post/573.html" title="geek life,apt-get your wife">geek life,apt-get your wife</a></li><li>12/17/2007 -- <a href="http://anylinux.net/post/488.html" title="xorg 1.4 键盘灯问题">xorg 1.4 键盘灯问题</a></li></ul>]]></description>
		<wfw:commentRss>http://anylinux.net/post/1649.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>时隔两年，再回 Gentoo （二）</title>
		<link>http://anylinux.net/post/1637.html</link>
		<comments>http://anylinux.net/post/1637.html#comments</comments>
		<pubDate>Sun, 15 Aug 2010 00:12:55 +0000</pubDate>
		<dc:creator>drivel</dc:creator>
				<category><![CDATA[0pen Source]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://anylinux.net/?p=1637</guid>
		<description><![CDATA[<p>　　既然一个简单的 stage3 已经完成，那么就 chroot 进去好了</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline">$ sudo chroot /media/gentoo /bin/bash</li></ol></div>
<p>唔，让我们首先改了 root 的密码吧</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline"># passwd</li></ol></div>
<p>　　对于 Gentoo 和 FreeBSD 来说，有一个配置文件非常的重要，就是 /etc/make.conf 了，这个文件配置着你编译时用的参数，你的系统配置情况，你的 USE。Stage3 的系统不包含 VIM，因此只能使用 nano 去编辑了</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline"># nano /etc/make.conf</li></ol></div>
<p>　　CHOST 为你的系统整体的构架情况，我的当然是 i686 了，CFLAGS 为你的 CPU 构架，GCC 可以根据这个参数，在编译的时候进行优化，我选择的是一个 native 选项，由 GCC 自己去选择。MAKEOPTS 表示编译时候的同时并发的进程数，一般选择物理内核数+1，我的是4核 CPU，因此选择的是5。USE 是针对一些软件会提供的相关特性，emerge 会在 ./configure 的时候，自动加上的一些 option，可以在随后使用 ufed 去选择。这里我使用了一个 ccache 的 FEATURES，可以保存编译时产生的文件，加速第二次编译。SYNC 和 GENTOO_MIRRORS 均为同步镜像，上文有提到，我选择的是厦门大学的镜像服务器。INPUT_DEVICES 很简单，就是鼠标和键盘而已，如果你用的是笔记本，还要再加上一个触摸板就可以了。VIDEO_CARDS 和 LINGUAS 就不用说了，从字面上很好理解。</p>
<blockquote><p>
CHOST=&#8221;i686-pc-linux-gnu&#8221;<br />
CFLAGS=&#8221;-march=native -O2 -pipe&#8221;<br />
CXXFLAGS=&#8221;${CFLAGS}&#8221;<br />
MAKEOPTS=&#8221;-j5&#8243;<br />
USE=&#8221;3dnow alac bash-completion caps cdrom chroot cjk cscope css curl<br />
     curlwrappers cvs device-mapper expat extras faac fat fbcon ffmpeg ftp<br />
     fuse gdu ggi gimp gnome gnutls gpg gpu gzip h224 h281 h323 imagemagick<br />
     java kdrive latex latex3 lzo md5 md5sum mmx mmxext mplayer network nvidia<br />
     policykit rar real reiserfs samba sha1 sha512 smp socks5 sound sqlite sse<br />
     sse2 sse3 sse4 subversion tex threads type3 unzip utils vim vim-syntax<br />
     wav webkit win32codecs wma xmlrpc zip -dso -extra&#8221;<br />
FEATURES=&#8221;ccache&#8221;<br />
CCACHE_DIR=&#8221;/var/tmp/ccache/&#8221;<br />
CCACHE_SIZE=&#8221;5G&#8221;<br />
SYNC=&#8221;rsync://mirrors.xmu.edu.cn/gentoo-portage&#8221;<br />
GENTOO_MIRRORS=&#8221;http://mirrors.xmu.edu.cn/gentoo&#8221;<br />
INPUT_DEVICES=&#8221;keyboard mouse&#8221;<br />
LINGUAS=&#8221;en_US&#8221;<br />
VIDEO_CARDS=&#8221;nvidia&#8221;
</p></blockquote>
<p>在以上全部配置完成后，就可以先同步一个 emerge 的 portage 数据了</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline"># env-update &amp;&amp; source /etc/profile</li>
<li># emerge --sync</li></ol></div>
<p>这样，你本机的 portage 数据就和服务器上的进行了同步，下面先编译一些系统需要和个人感觉需要先编译的东西</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline"># emerge pciutils usbutils gentoolkit ufed</li></ol></div>
<p>其中<br />
pciutils -> 查看相关 PCI 信息<br />
usbutils -> USB 相关信息<br />
gentoolkit -> Gentoo 的一些工具集<br />
ufed -> USE 的图形化选择界面</p>
<p>　　点下回车的之后，就会发现和 FreeBSD 一样，emerge 就自己去下载代码，./configure，make，make install 去了，完全自动喔。之后就可以进行历史耗时最长的一项工作了，编译一个可以启动的内核。</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline"># emerge gentoo-sources</li>
<li># cd /usr/src/linux</li>
<li># make menuconfig</li></ol></div>
<p>　　如何配置就不说了，<a href="http://anylinux.net/wp-content/uploads/2010/08/config-2.6.34-gentoo-r1">这里</a>是我的配置信息。配置完成之后，则可以 make -j5 之，注意因为不是 emerge 的，所以要自己手动加上 -jX 的选项，否则可是要多花很长时间的，虽然这样花的时间也不短。完成之后，则可以</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline"># make modules_install</li></ol></div>
<p>来完成模块的安装，然后则可以手动拷贝内核到 /boot 里</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline"># cp arch/i386/boot/bzImage /boot/vmlinuz-2.6.34-gentoo-r1</li>
<li># cp .config /boot/config-2.6.34-gentoo-r1</li></ol></div>
<p>　　Ubuntu 10.04 默认使用的 Boot Manager 是 GRUB2，和 GRUB 的配置方法不是太一样，不过看看 manual 之后，就不是什么问题了</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline"># /boot/grub/grub.cfg</li></ol></div>
<blockquote><p>
menuentry &#8220;Gentoo (on /dev/sda8)&#8221; {<br />
        insmod reiserfs<br />
        set root=&#8217;(hd0,8)&#8217;<br />
        search &#8211;no-floppy &#8211;fs-uuid &#8211;set e806ba28-bb68-4c05-a107-6600327a1578<br />
        linux /vmlinuz-2.6.34-gentoo-r1 raid=noautodetect root=/dev/sda8 ro quite splash<br />
}
</p></blockquote>
<p>赶快重启去看看内核能启动起来不能吧 ^^（注意，如果你的网络是 DHCP 自动获取的，那么请在重启之前，完成 emerge -av dhcpd 或者 emerge -av dhcp，否则重启之后你会无法获取 IP 地址）</p>
<p>时隔两年，再回 Gentoo （一）：<a href="http://anylinux.net/post/1617.html">http://anylinux.net/post/1617.html</a><br />
时隔两年，再回 Gentoo （三）：<a href="http://anylinux.net/post/1649.html">http://anylinux.net/post/1649.html</a></p>
<h2  class="related_post_title">相关日志</h2><ul class="related_post"><li>08/15/2010 -- <a href="http://anylinux.net/post/1649.html" title="时隔两年，再回 Gentoo （三）">时隔两年，再回 Gentoo （三）</a></li><li>08/14/2010 -- <a href="http://anylinux.net/post/1617.html" title="时隔两年，再回 Gentoo （一）">时隔两年，再回 Gentoo （一）</a></li><li>05/10/2009 -- <a href="http://anylinux.net/post/803.html" title="Ubuntu 中文社区宣传视频及口号有奖征集">Ubuntu 中文社区宣传视频及口号有奖征集</a></li><li>02/24/2008 -- <a href="http://anylinux.net/post/558.html" title="该死的 gparted">该死的 gparted</a></li><li>06/02/2010 -- <a href="http://anylinux.net/post/1513.html" title="HowTo: lubuntu and Ubuntu 10.04 华为3G 连接">HowTo: lubuntu and Ubuntu 10.04 华为3G 连接</a></li><li>12/14/2009 -- <a href="http://anylinux.net/post/1302.html" title="NOI Linux 终于更新到 Ubuntu 7.10 了…内牛满面">NOI Linux 终于更新到 Ubuntu 7.10 了…内牛满面</a></li><li>11/23/2008 -- <a href="http://anylinux.net/post/685.html" title="Ian Murdock VS Scott McNealy">Ian Murdock VS Scott McNealy</a></li><li>07/22/2008 -- <a href="http://anylinux.net/post/611.html" title="自由的 Linux，谁在乎？">自由的 Linux，谁在乎？</a></li><li>05/24/2008 -- <a href="http://anylinux.net/post/573.html" title="geek life,apt-get your wife">geek life,apt-get your wife</a></li><li>12/17/2007 -- <a href="http://anylinux.net/post/488.html" title="xorg 1.4 键盘灯问题">xorg 1.4 键盘灯问题</a></li></ul>]]></description>
		<wfw:commentRss>http://anylinux.net/post/1637.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>时隔两年，再回 Gentoo （一）</title>
		<link>http://anylinux.net/post/1617.html</link>
		<comments>http://anylinux.net/post/1617.html#comments</comments>
		<pubDate>Sat, 14 Aug 2010 11:09:20 +0000</pubDate>
		<dc:creator>drivel</dc:creator>
				<category><![CDATA[0pen Source]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://anylinux.net/?p=1617</guid>
		<description><![CDATA[<p>　　两年前，第一次接触到了 Gentoo，并且玩的很开心。当时还是一台 Pentium M 1.73GB 的笔记本，但是咱有的是时间啊，扔一边慢慢编译，然后用学校的台式机（大误）。等编译好了就玩笔记本，然后让学校的台式机编译去（再次大误）。两年过去了，没有再玩过 Gentoo，但是心中还是有些痒痒的感觉。LFS 太费事，懒得折腾，还是折腾 Gentoo 吧。</p>
<p>　　这次宿主系统是 Ubuntu 10.04。嗯。</p>
<p>　　首先捏，当然是要去下载 portage 和 stage3 的包了，在这里可以查看镜像列表（<a href="http://www.gentoo.org/main/en/mirrors2.xml">http://www.gentoo.org/main/en/mirrors2.xml</a>），我是教育网，因此选择的自然是厦门大学的镜像服务器咯。厦门大学的镜像服务器同时支持 IPv4 和 IPv6。</p>
<ul>
<ol>
IPv4</ol>
<li>http://mirrors.xmu.edu.cn/gentoo/
</li>
<li>ftp://mirrors.xmu.edu.cn/gentoo
</li>
<ol>
IPv6</ol>
<li>http://mirrors.xmu6.edu.cn/gentoo/
</li>
<li>ftp://mirrors.xmu6.edu.cn/gentoo
</li>
</ul>
<p>下载 </p>
<p>/gentoo/releases/x86/current-stage3/stage3-i686-20100622.tar.bz2</p>
<p>/gentoo/releases/snapshots/current/portage-latest.tar.bz2</p>
<p>我的环境<br />
宿主系统：Ubuntu 10.04<br />
Boot 分区：/dev/sda7<br />
root 分区：/dev/sda6<br />
Gentoo root 分区：/dev/sda8<br />
以上分区均为 reiserfs</p>
<p>于是乎，先挂载上 Gentoo 的分区</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline">$ sudo mkdir /media/gentoo</li>
<li>$ sudo mount /dev/sda8 /media/gentoo</li></ol></div>
<p>然后创建 proc 和 dev 文件夹并且将宿主系统的 proc 和 dev 绑定上去</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline">$ sudo mkdir /media/gentoo/proc</li>
<li>$ sudo mkdir /media/gentoo/dev</li>
<li>$ sudo mount -t proc none /media/gentoo/proc</li>
<li>$ sudo mount -o bind /dev/ /media/gentoo/dev</li></ol></div>
<p>之后就把前面下载的两个 tar 包拷贝到 /media/gentoo/<br />
解压缩之</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline">$ sudo tar xvf stage3-i686-20100622.tar.bz2</li>
<li>$ sudo tar xvf portage-latest.tar.bz2 -C /usr</li></ol></div>
<p>这样就可以从 stage3 开始工作了，相对于 LFS，你已经拥有了一个包管理器、一个 GCC 和 GLibC；而且不用编译3次  toolchain 和2次 GCC。</p>
<p>时隔两年，再回 Gentoo （二）：<a href="http://anylinux.net/post/1637.html">http://anylinux.net/post/1637.html</a></p>
<h2  class="related_post_title">相关日志</h2><ul class="related_post"><li>08/15/2010 -- <a href="http://anylinux.net/post/1649.html" title="时隔两年，再回 Gentoo （三）">时隔两年，再回 Gentoo （三）</a></li><li>08/15/2010 -- <a href="http://anylinux.net/post/1637.html" title="时隔两年，再回 Gentoo （二）">时隔两年，再回 Gentoo （二）</a></li><li>05/10/2009 -- <a href="http://anylinux.net/post/803.html" title="Ubuntu 中文社区宣传视频及口号有奖征集">Ubuntu 中文社区宣传视频及口号有奖征集</a></li><li>02/24/2008 -- <a href="http://anylinux.net/post/558.html" title="该死的 gparted">该死的 gparted</a></li><li>06/02/2010 -- <a href="http://anylinux.net/post/1513.html" title="HowTo: lubuntu and Ubuntu 10.04 华为3G 连接">HowTo: lubuntu and Ubuntu 10.04 华为3G 连接</a></li><li>12/14/2009 -- <a href="http://anylinux.net/post/1302.html" title="NOI Linux 终于更新到 Ubuntu 7.10 了…内牛满面">NOI Linux 终于更新到 Ubuntu 7.10 了…内牛满面</a></li><li>11/23/2008 -- <a href="http://anylinux.net/post/685.html" title="Ian Murdock VS Scott McNealy">Ian Murdock VS Scott McNealy</a></li><li>07/22/2008 -- <a href="http://anylinux.net/post/611.html" title="自由的 Linux，谁在乎？">自由的 Linux，谁在乎？</a></li><li>05/24/2008 -- <a href="http://anylinux.net/post/573.html" title="geek life,apt-get your wife">geek life,apt-get your wife</a></li><li>12/17/2007 -- <a href="http://anylinux.net/post/488.html" title="xorg 1.4 键盘灯问题">xorg 1.4 键盘灯问题</a></li></ul>]]></description>
		<wfw:commentRss>http://anylinux.net/post/1617.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ttf-wqy-microhei_0.2.0-beta-2_all.deb</title>
		<link>http://anylinux.net/post/1316.html</link>
		<comments>http://anylinux.net/post/1316.html#comments</comments>
		<pubDate>Fri, 13 Aug 2010 16:23:41 +0000</pubDate>
		<dc:creator>drivel</dc:creator>
				<category><![CDATA[0pen Source]]></category>

		<guid isPermaLink="false">http://anylinux.net/?p=1316</guid>
		<description><![CDATA[<p><img src="http://anylinux.net/wp-content/uploads/2010/01/Screenshot.png" alt="" title="Screenshot" width="583" height="327" class="aligncenter size-full wp-image-1317" /><a href="http://anylinux.net/wp-content/uploads/2010/01/Screenshot-1.png"><img src="http://anylinux.net/wp-content/uploads/2010/01/Screenshot-1.png" alt="" title="Screenshot-1" width="590" height="288" class="aligncenter size-full wp-image-1318" /></a><a href="http://anylinux.net/wp-content/uploads/2010/01/Screenshot-2.png"><img src="http://anylinux.net/wp-content/uploads/2010/01/Screenshot-2-300x246.png" alt="" title="Screenshot-2" width="300" height="246" class="aligncenter size-medium wp-image-1319" /></a></p>
<p><a href='http://anylinux.net/wp-content/uploads/2010/01/ttf-wqy-microhei_0.2.0-beta-2_all.deb'>ttf-wqy-microhei_0.2.0-beta-2_all</a></p>
<h2  class="related_post_title">随机日志</h2><ul class="related_post"><li>04/25/2007 -- <a href="http://anylinux.net/post/19.html" title="垃圾的HostGator">垃圾的HostGator</a></li><li>07/15/2009 -- <a href="http://anylinux.net/post/927.html" title="为 iBeiKe 论坛增加了外链警告">为 iBeiKe 论坛增加了外链警告</a></li><li>08/31/2007 -- <a href="http://anylinux.net/post/385.html" title="本科各学科门类、各专业等级定义">本科各学科门类、各专业等级定义</a></li><li>06/01/2010 -- <a href="http://anylinux.net/post/1509.html" title="腐蚀电路板？当心中毒…">腐蚀电路板？当心中毒…</a></li><li>10/19/2009 -- <a href="http://anylinux.net/post/1217.html" title="详解联通2G信号为何没有移动好，及为何迟迟不上2.75G">详解联通2G信号为何没有移动好，及为何迟迟不上2.75G</a></li><li>10/08/2007 -- <a href="http://anylinux.net/post/452.html" title="NetBeans 6快捷键">NetBeans 6快捷键</a></li><li>09/26/2007 -- <a href="http://anylinux.net/post/439.html" title="自动下载 百度Top100/500 的脚本">自动下载 百度Top100/500 的脚本</a></li><li>06/23/2008 -- <a href="http://anylinux.net/post/582.html" title="新身份证算法（18位）">新身份证算法（18位）</a></li><li>04/20/2010 -- <a href="http://anylinux.net/post/1406.html" title="We Made It! the Fallen of Lichking">We Made It! the Fallen of Lichking</a></li><li>07/14/2007 -- <a href="http://anylinux.net/post/285.html" title="第二人生 Second Life for Linux">第二人生 Second Life for Linux</a></li></ul>]]></description>
		<wfw:commentRss>http://anylinux.net/post/1316.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>H冰龍跑位UI</title>
		<link>http://anylinux.net/post/1604.html</link>
		<comments>http://anylinux.net/post/1604.html#comments</comments>
		<pubDate>Wed, 28 Jul 2010 09:26:15 +0000</pubDate>
		<dc:creator>drivel</dc:creator>
				<category><![CDATA[0pen Source]]></category>
		<category><![CDATA[G@me]]></category>
		<category><![CDATA[魔獸世界]]></category>
		<category><![CDATA[魔兽世界]]></category>
		<category><![CDATA[ICC]]></category>
		<category><![CDATA[wow]]></category>

		<guid isPermaLink="false">http://anylinux.net/?p=1604</guid>
		<description><![CDATA[<p>困難模式，冰龍跑位插件，for 3.3.5</p>
<p><a href='http://anylinux.net/wp-content/uploads/2010/07/time_test.zip'>點擊下載</a></p>
<p>修改过的跑位 UI</p>
<p>注意，冰龙标记必须为 頭顱、月亮、星星、方塊、圓形、叉子 才可使用</p>
<p>Modified by 數位人 @ Arthas.TW</p>
<h2  class="related_post_title">相关日志</h2><ul class="related_post"><li>08/23/2010 -- <a href="http://anylinux.net/post/1664.html" title="魔兽世界在 Win7 中性能优化和降低 Ping">魔兽世界在 Win7 中性能优化和降低 Ping</a></li><li>07/29/2010 -- <a href="http://anylinux.net/post/1608.html" title="火法 PVP 测试(法师内战)视频以及一些个人感受 [4.0.0.12604]">火法 PVP 测试(法师内战)视频以及一些个人感受 [4.0.0.12604]</a></li><li>07/24/2010 -- <a href="http://anylinux.net/post/1599.html" title="Cataclysm Beta &#8211; Build 12604 补丁说明">Cataclysm Beta &#8211; Build 12604 补丁说明</a></li><li>07/15/2010 -- <a href="http://anylinux.net/post/1559.html" title="魔兽世界 取消同步设置的一些命令">魔兽世界 取消同步设置的一些命令</a></li><li>04/14/2010 -- <a href="http://anylinux.net/post/1388.html" title="Beauty of Azeroth">Beauty of Azeroth</a></li><li>04/20/2010 -- <a href="http://anylinux.net/post/1406.html" title="We Made It! the Fallen of Lichking">We Made It! the Fallen of Lichking</a></li><li>08/19/2009 -- <a href="http://anylinux.net/post/1047.html" title="3.20 十字军竞技场 賈拉克瑟斯領主(Lord Jaraxxus)">3.20 十字军竞技场 賈拉克瑟斯領主(Lord Jaraxxus)</a></li><li>08/17/2009 -- <a href="http://anylinux.net/post/1040.html" title="在战场里也能获得逃亡者的 debuff 的…">在战场里也能获得逃亡者的 debuff 的…</a></li><li>08/14/2009 -- <a href="http://anylinux.net/post/1014.html" title="無聊錄製的魔獸世界錄影">無聊錄製的魔獸世界錄影</a></li><li>04/04/2009 -- <a href="http://anylinux.net/post/785.html" title="DK 的部分征服紋章的可換裝備及所需數量">DK 的部分征服紋章的可換裝備及所需數量</a></li></ul>]]></description>
		<wfw:commentRss>http://anylinux.net/post/1604.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HowTo: lubuntu and Ubuntu 10.04 华为3G 连接</title>
		<link>http://anylinux.net/post/1513.html</link>
		<comments>http://anylinux.net/post/1513.html#comments</comments>
		<pubDate>Wed, 02 Jun 2010 01:36:31 +0000</pubDate>
		<dc:creator>drivel</dc:creator>
				<category><![CDATA[0pen Source]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Net]]></category>
		<category><![CDATA[3G]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[华为]]></category>
		<category><![CDATA[天翼]]></category>
		<category><![CDATA[中国电信]]></category>

		<guid isPermaLink="false">http://anylinux.net/?p=1513</guid>
		<description><![CDATA[<p>　　原来在 Ubuntu 9.10 上用的好好的华为 EC169 终端，发现在 lubuntu 10.04 中无法自动抓取到了，后来发现，Ubuntu 10.04 这个本尊上原来也有这个问题 @@。anyway，搜索了一下 UbuntuForums.org 发现了一个解决方法如下：</p>
<ul>
<li>到 <a href="http://www.draisberghof.de/usb_modeswitch/#download">http://www.draisberghof.de/usb_modeswitch/#download</a> 下载三个文件</li>
<li>执行 sudo apt-get install libusb-dev</li>
<li>解压缩三个下载到的文件中的两个</li>
<ol>
tar xvf usb-modeswitch-1.1.2.tar.bz2</ol>
<ol>
tar xvf usb-modeswitch-data-20100418.tar.bz2
</ol>
<li>进入usb-modeswitch-1.1.2的目录，安装之</li>
<ol>
cd usb-modeswitch-1.1.2/
</ol>
<ol>
sudo make install
</ol>
<li>进入usb-modeswitch-data-20100418的目录，安装之（注意，我这里的数据文件是2010年04月18日的，如果以后作者有更新，请自行替换中间的数字部分）</li>
<ol>
cd usb-modeswitch-data-20100418
</ol>
<ol>
sudo make install
</ol>
<li>拷贝数据文件并且编辑</li>
<ol>
sudo mv usb_modeswitch.setup /etc/
</ol>
<ol>
sudo vim /etc/usb_modeswitch.setup</ol>
</ul>
<p>小弟这里用的是华为 EC169,那么就将 EC169 的部分前面的注释符号 “;” 删除即可，示例如下</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline">########################################################</li>
<li># Huawei E169</li>
<li>#</li>
<li># Contributor: Dale Lane</li>
<li>&nbsp;</li>
<li>DefaultVendor=&nbsp; 0x12d1</li>
<li>DefaultProduct= 0x1001</li>
<li>&nbsp;</li>
<li>TargetClass=&nbsp; &nbsp; 0xff</li>
<li>&nbsp;</li>
<li># choose one of these:</li>
<li>DetachStorageOnly=1</li>
<li>HuaweiMode=1</li>
<li>&nbsp;</li>
<li>&nbsp;</li>
<li>########################################################</li></ol></div>
<p>完成之后，执行</p>
<ul>
<li>sudo usb_modeswitch -c /etc/usb_modeswitch.setup</li>
<li>sudo usb_modeswitch -W</li>
</ul>
<p>至此，系统应该就已经可以认出来我们的 3G 数据卡了</p>
<ul>
<li>dmesg|grep tty</li>
</ul>
<p>看看是不是有类似的返回</p>
<blockquote><p>[  621.533371] usb 2-2: GSM modem (1-port) converter now attached to ttyUSB0<br />
[  621.535879] usb 2-2: GSM modem (1-port) converter now attached to ttyUSB1<br />
[  621.540106] usb 2-2: GSM modem (1-port) converter now attached to ttyUSB2</p></blockquote>
<p>如果没有任何问题，请继续看下去</p>
<ul>
<li>安装拨号软件 wvdial</li>
<ol>sudo apt-get install wvdial
</ol>
<li>使用 wvdial 附带的工具，进行自动配置</li>
<ol>
sudo wvdialconf
</ol>
<li>修改配置文件</li>
<ol>sudo vim /etc/wvdial.conf
</ol>
</ul>
<p>我们可以看到，wvdial 已经自动为用户配置了一些，但是还不完整，我们需要自己去完成他</p>
<div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline">[Dialer cdma1x]</li>
<li>Init1 = ATZ</li>
<li>Init2 = ATQ0 V1 E1 S0=0 &amp;C1 &amp;D2 +FCLASS=0</li>
<li>Modem Type = Analog Modem</li>
<li>Baud = 460800</li>
<li>New PPPD = yes</li>
<li>Modem = /dev/ttyUSB_utps_modem</li>
<li>ISDN = 0</li>
<li>Phone = #777</li>
<li>Password = CARD</li>
<li>Username = CARD</li>
<li>&nbsp;</li>
<li>[Dialer cdma3g]</li>
<li>Init1 = ATZ</li>
<li>Init2 = ATQ0 V1 E1 S0=0 &amp;C1 &amp;D2 +FCLASS=0</li>
<li>Modem Type = Analog Modem</li>
<li>Baud = 4608000</li>
<li>New PPPD = yes</li>
<li>Modem = /dev/ttyUSB_utps_modem</li>
<li>ISDN = 0</li>
<li>Phone = #777</li>
<li>Password = ctnet@mycdma.cn</li>
<li>Username = vnet.mobi</li></ol></div>
<p>以上是我的配置文件，大家可以参考一下，或者直接拷贝进去</p>
<ul>
<li>最后执行 wvdial 拨号上网啦</li>
<ol>sudo wvdial cdma3g
</ol>
</ul>
<p>Enjoy surfing the Internet!</p>
<h2  class="related_post_title">相关日志</h2><ul class="related_post"><li>11/21/2009 -- <a href="http://anylinux.net/post/1278.html" title="电信天翼 3G 无线宽带 V2.1 自动启动解决">电信天翼 3G 无线宽带 V2.1 自动启动解决</a></li><li>10/07/2009 -- <a href="http://anylinux.net/post/1200.html" title="北京电信天翼 3G 数据卡限速">北京电信天翼 3G 数据卡限速</a></li><li>09/28/2009 -- <a href="http://anylinux.net/post/1124.html" title="电信天翼 3G 试用 华为EC169终端 Windows、Ubuntu 9.10环境">电信天翼 3G 试用 华为EC169终端 Windows、Ubuntu 9.10环境</a></li><li>08/15/2010 -- <a href="http://anylinux.net/post/1649.html" title="时隔两年，再回 Gentoo （三）">时隔两年，再回 Gentoo （三）</a></li><li>08/15/2010 -- <a href="http://anylinux.net/post/1637.html" title="时隔两年，再回 Gentoo （二）">时隔两年，再回 Gentoo （二）</a></li><li>08/14/2010 -- <a href="http://anylinux.net/post/1617.html" title="时隔两年，再回 Gentoo （一）">时隔两年，再回 Gentoo （一）</a></li><li>12/14/2009 -- <a href="http://anylinux.net/post/1302.html" title="NOI Linux 终于更新到 Ubuntu 7.10 了…内牛满面">NOI Linux 终于更新到 Ubuntu 7.10 了…内牛满面</a></li><li>10/19/2009 -- <a href="http://anylinux.net/post/1217.html" title="详解联通2G信号为何没有移动好，及为何迟迟不上2.75G">详解联通2G信号为何没有移动好，及为何迟迟不上2.75G</a></li><li>10/18/2009 -- <a href="http://anylinux.net/post/1212.html" title="去了一趟西单的联通营业厅">去了一趟西单的联通营业厅</a></li><li>05/10/2009 -- <a href="http://anylinux.net/post/803.html" title="Ubuntu 中文社区宣传视频及口号有奖征集">Ubuntu 中文社区宣传视频及口号有奖征集</a></li></ul>]]></description>
		<wfw:commentRss>http://anylinux.net/post/1513.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>2010 开源校园行 北科大站 照片整理</title>
		<link>http://anylinux.net/post/1500.html</link>
		<comments>http://anylinux.net/post/1500.html#comments</comments>
		<pubDate>Tue, 01 Jun 2010 03:33:41 +0000</pubDate>
		<dc:creator>drivel</dc:creator>
				<category><![CDATA[0pen Source]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[求学生涯]]></category>
		<category><![CDATA[oss]]></category>
		<category><![CDATA[ustb]]></category>
		<category><![CDATA[开源]]></category>

		<guid isPermaLink="false">http://anylinux.net/?p=1500</guid>
		<description><![CDATA[<p><a href="http://anylinux.net/wp-content/uploads/2010/06/IMG_1117.jpg"><img src="http://anylinux.net/wp-content/uploads/2010/06/IMG_1117-630x472.jpg" alt="" title="IMG_1117" width="630" height="472" class="aligncenter size-large wp-image-1501" /></a></p>
<p><a href="http://anylinux.net/wp-content/uploads/2010/06/IMG_1118.jpg"><img src="http://anylinux.net/wp-content/uploads/2010/06/IMG_1118-630x472.jpg" alt="" title="IMG_1118" width="630" height="472" class="aligncenter size-large wp-image-1502" /></a></p>
<p><a href="http://anylinux.net/wp-content/uploads/2010/06/IMG_1121.jpg"><img src="http://anylinux.net/wp-content/uploads/2010/06/IMG_1121-630x472.jpg" alt="" title="IMG_1121" width="630" height="472" class="aligncenter size-large wp-image-1503" /></a></p>
<p><a href="http://anylinux.net/wp-content/uploads/2010/06/IMG_1123.jpg"><img src="http://anylinux.net/wp-content/uploads/2010/06/IMG_1123-630x472.jpg" alt="" title="IMG_1123" width="630" height="472" class="aligncenter size-large wp-image-1504" /></a></p>
<p><a href="http://anylinux.net/wp-content/uploads/2010/06/IMG_1124.jpg"><img src="http://anylinux.net/wp-content/uploads/2010/06/IMG_1124-630x472.jpg" alt="" title="IMG_1124" width="630" height="472" class="aligncenter size-large wp-image-1505" /></a></p>
<p><a href="http://anylinux.net/wp-content/uploads/2010/06/IMG_1126.jpg"><img src="http://anylinux.net/wp-content/uploads/2010/06/IMG_1126-630x472.jpg" alt="" title="IMG_1126" width="630" height="472" class="aligncenter size-large wp-image-1506" /></a></p>
<h2  class="related_post_title">相关日志</h2><ul class="related_post"><li>05/20/2010 -- <a href="http://anylinux.net/post/1479.html" title="2010 开源校园行 北科大站">2010 开源校园行 北科大站</a></li><li>02/18/2009 -- <a href="http://anylinux.net/post/755.html" title="保持一颗 open 的心">保持一颗 open 的心</a></li><li>08/25/2009 -- <a href="http://anylinux.net/post/1077.html" title="《开源通讯》 2008年12月刊 &#8211; 开源通讯2009年8月刊">《开源通讯》 2008年12月刊 &#8211; 开源通讯2009年8月刊</a></li><li>10/03/2008 -- <a href="http://anylinux.net/post/649.html" title="朋友！你想戒掉网瘾吗？你想从沉迷的网游世界挣脱吗？">朋友！你想戒掉网瘾吗？你想从沉迷的网游世界挣脱吗？</a></li><li>07/22/2008 -- <a href="http://anylinux.net/post/611.html" title="自由的 Linux，谁在乎？">自由的 Linux，谁在乎？</a></li><li>07/20/2008 -- <a href="http://anylinux.net/post/602.html" title="北京科技大学 2007 &#8211; 2008 学历">北京科技大学 2007 &#8211; 2008 学历</a></li><li>01/25/2008 -- <a href="http://anylinux.net/post/523.html" title="bash 监视网页内容改变">bash 监视网页内容改变</a></li></ul>]]></description>
		<wfw:commentRss>http://anylinux.net/post/1500.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2010 开源校园行 北科大站</title>
		<link>http://anylinux.net/post/1479.html</link>
		<comments>http://anylinux.net/post/1479.html#comments</comments>
		<pubDate>Thu, 20 May 2010 09:28:18 +0000</pubDate>
		<dc:creator>drivel</dc:creator>
				<category><![CDATA[0pen Source]]></category>
		<category><![CDATA[求学生涯]]></category>
		<category><![CDATA[copu]]></category>
		<category><![CDATA[oss]]></category>
		<category><![CDATA[开源]]></category>
		<category><![CDATA[开源校园行]]></category>
		<category><![CDATA[活动]]></category>

		<guid isPermaLink="false">http://anylinux.net/?p=1479</guid>
		<description><![CDATA[<p><strong>时间</strong>：5月29日 7:00 p.m. &#8211; 9:00 p.m.<br />
<strong>地点</strong>：北京科技大学 机电信息楼 203</p>
<p><strong>演讲嘉宾及主题</strong>：</p>
<ol>
<li>中标软件办公软件产品研发部 刘涛 先生</li>
<p><strong>演讲题目：</strong>走进 OpenOffice.org</p>
<li>DeviceVM公司(CSO)首席战略执行官Cliff Miller</li>
<p><strong>演讲题目：</strong>Linux/MeeGo的应用商店：开源软件的开发者如何赚钱？</p>
<li>火狐演讲工程师 张频</li>
<p><strong>演讲题目</strong>：火狐、互联网与未来<br />
Firefox, the Web, and the Future
</ol>
<p>附：Cliff Miller 个人简介</p>
<blockquote><p>    *  TurboLinux 创始人</p>
<p>    *  Linux 基金会中国区运营总监 [0]</p>
<p>    *  早在8年前Cliff Miller作为Turbolinux CEO曾多次赴北大、清华、北航、理工大等院校宣讲和倡导自由软件，传播开源精神，可以说他是最早一批在中国大学生中普及推广自由软件的外国企业家。</p>
<p>    * 知名的作家，著有《Linux革命》，在美国及日本知名媒体曾经开设过专栏。</p>
<p>    * 开源软件成功的企业家，创办过两个成功的企业，成为亚太区知名的企业高管。</p>
<p>    * 知名媒体的宠儿，经常成为媒体的封面人物。</p>
<p>    * 精通中文、日文，是一位出色的语言家。</p>
<p>    * Device Vm几年前进入中国，总部在美国，在台湾、杭州、北京设有分公司和办事处。</p>
<p>    * DeviceVM公司是开源联盟成员之一, <strong>曾被道琼斯评为最值得关注的前50家初创公司之一</strong>。凭借其即时Splashtop产品，DeviceVM已经成为一家帮助计算机用户提高和改善日常应用能力的专业公司。</p>
<p>    * Device VM成立于2006年，Splashtop是一个屡获殊荣的即时平台，用户在打开电脑几秒钟后即可阅读电子邮件、与朋友聊天、分享照片或进行网上冲浪。</p>
<p>    * Splashtop与领先制造商包括惠普，宏基，联想，华硕，索尼和LG 电子等合作，其产品出货量超过3000万台的电脑，包括200个型号的笔记本电脑、主板、台式机和上网本，自2007年10月首次亮相Splashtop已获多个奖项，包括由著名的
<pc World>颁发的“最具创新性产品”奖和
<popular Science>颁发的“最佳新产品奖” 。</popular></pc></blockquote>
<p>[0]<a href="http://www.cnbeta.com/articles/110701.htm">http://www.cnbeta.com/articles/110701.htm</a></p>
<h2  class="related_post_title">相关日志</h2><ul class="related_post"><li>06/01/2010 -- <a href="http://anylinux.net/post/1500.html" title="2010 开源校园行 北科大站 照片整理">2010 开源校园行 北科大站 照片整理</a></li><li>02/18/2009 -- <a href="http://anylinux.net/post/755.html" title="保持一颗 open 的心">保持一颗 open 的心</a></li><li>08/25/2009 -- <a href="http://anylinux.net/post/1077.html" title="《开源通讯》 2008年12月刊 &#8211; 开源通讯2009年8月刊">《开源通讯》 2008年12月刊 &#8211; 开源通讯2009年8月刊</a></li><li>07/22/2008 -- <a href="http://anylinux.net/post/611.html" title="自由的 Linux，谁在乎？">自由的 Linux，谁在乎？</a></li></ul>]]></description>
		<wfw:commentRss>http://anylinux.net/post/1479.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
