<?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>OraXin</title>
	<atom:link href="http://www.oraxin.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.oraxin.com</link>
	<description>Just a blog for myself</description>
	<lastBuildDate>Sun, 06 Jun 2010 15:53:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Quixote 2.x utf-8 的字符编码问题</title>
		<link>http://www.oraxin.com/articles/quixote-2-x-utf-8-character-encoding-problem.html</link>
		<comments>http://www.oraxin.com/articles/quixote-2-x-utf-8-character-encoding-problem.html#comments</comments>
		<pubDate>Sun, 06 Jun 2010 14:09:14 +0000</pubDate>
		<dc:creator>orlando2000</dc:creator>
				<category><![CDATA[软件世家]]></category>
		<category><![CDATA[quixote]]></category>
		<category><![CDATA[utf-8]]></category>

		<guid isPermaLink="false">http://www.oraxin.com/?p=32390</guid>
		<description><![CDATA[在 debian 下安装完 quxiote 之后一直发现中文字符的编码存在问题，现在我终于解决了，其实很简单。
只要在 quixote 的安装路径下有 __init__.py，将其中的 DEFAULT_CHARSET = &#8216;iso-8859-1&#8242; 改成 &#8216;utf-8&#8242;，就大功告成了。
接下来我要解决在 quixote 中集成 Mako 框架与 SqlAlchemy。
Related Postsdebian apache2 mysql quixote 系统的安装（4）]]></description>
			<content:encoded><![CDATA[<p>在 debian 下安装完 quxiote 之后一直发现中文字符的编码存在问题，现在我终于解决了，其实很简单。</p>
<p>只要在 quixote 的安装路径下有 __init__.py，将其中的 DEFAULT_CHARSET = &#8216;iso-8859-1&#8242; 改成 &#8216;utf-8&#8242;，就大功告成了。</p>
<p>接下来我要解决在 quixote 中集成 Mako 框架与 SqlAlchemy。</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://www.oraxin.com/articles/debian-apache2-mysql-quixote-system-installation-4.html" title="debian apache2 mysql quixote 系统的安装（4）">debian apache2 mysql quixote 系统的安装（4）</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.oraxin.com/articles/quixote-2-x-utf-8-character-encoding-problem.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>debian apache2 mysql quixote 系统的安装（4）</title>
		<link>http://www.oraxin.com/articles/debian-apache2-mysql-quixote-system-installation-4.html</link>
		<comments>http://www.oraxin.com/articles/debian-apache2-mysql-quixote-system-installation-4.html#comments</comments>
		<pubDate>Fri, 04 Jun 2010 03:10:56 +0000</pubDate>
		<dc:creator>orlando2000</dc:creator>
				<category><![CDATA[软件世家]]></category>
		<category><![CDATA[apache2]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[quixote]]></category>

		<guid isPermaLink="false">http://www.oraxin.com/?p=32382</guid>
		<description><![CDATA[二、apache2 mysql quixote 的安装
安装 apache2， 运行如下命令：
apt-get install apache2-mpm-prefork
安装 mysql，运行命令：
apt-get install mysql-server mysql-client mysql-common
在安装 apache2 的时候，系统会自动安装 python2.5，但为了保险起见你也可以安装一次，运行代码：
apt-get install python2.5
安装 python 对 mysql 的接口 Mysqldb：
apt-get install python-mysqldb
安装 apache2 的 scgi 支持：
apt-get install libapache2-mod-scgi
安装 quixote：
apt-get install python-quixote
现在基本上的安装已经完成了。要对软件做一些基础的配置。
如果这只是一个实验性的系统，那你一定希望ftp能够使用 root 帐号登入，并能够访问所有文件。修改 /etc/ftpusers 文件，删除其中的 root 账户。然后再修改 /etc/vsftpd.conf，取消 local_enable=YES 与 write_enable=YES 之前的 # 号，把 chroot_local_user=YES 改成 chroot_local_user=NO 并取消前面的 # 号。
配置完 FTP，要来修改 apache2 [...]]]></description>
			<content:encoded><![CDATA[<p><strong>二、apache2 mysql quixote 的安装</strong></p>
<p>安装 apache2， 运行如下命令：</p>
<p><code>apt-get install apache2-mpm-prefork</code></p>
<p>安装 mysql，运行命令：</p>
<p><code>apt-get install mysql-server mysql-client mysql-common</code></p>
<p>在安装 apache2 的时候，系统会自动安装 python2.5，但为了保险起见你也可以安装一次，运行代码：</p>
<p><code>apt-get install python2.5</code></p>
<p>安装 python 对 mysql 的接口 Mysqldb：</p>
<p><code>apt-get install python-mysqldb</code></p>
<p>安装 apache2 的 scgi 支持：</p>
<p><code>apt-get install libapache2-mod-scgi</code></p>
<p>安装 quixote：</p>
<p><code>apt-get install python-quixote</code></p>
<p>现在基本上的安装已经完成了。要对软件做一些基础的配置。</p>
<p>如果这只是一个实验性的系统，那你一定希望ftp能够使用 root 帐号登入，并能够访问所有文件。修改 /etc/ftpusers 文件，删除其中的 root 账户。然后再修改 /etc/vsftpd.conf，取消 local_enable=YES 与 write_enable=YES 之前的 # 号，把 chroot_local_user=YES 改成 chroot_local_user=NO 并取消前面的 # 号。</p>
<p>配置完 FTP，要来修改 apache2 的配置。</p>
<p>先要激活 apache2 的 scgi 模块，运行 a2enmod scgi；激活 rewrite 模块，运行： a2enmod rewrite。</p>
<p>添加与 quixote 相关的 scgi 的配置，修改文件 /etc/apache2/httpd.conf，添加如下代码：</p>
<p><code>&lt;Location / &gt;<br />
SCGIServer localhost:3000<br />
SCGIHandler On<br />
&lt;/Location&gt;</code></p>
<p>到此算是全都配置好了。如果你要对某些 url 不设置 scgi 转发，可以在 /etc/apache2/httpd.conf 文件中再添加代码：</p>
<p><code>&lt;Location /img &gt;<br />
SCGIHandler Off<br />
&lt;/Location&gt;</code></p>
<p>还忘了一点，要安装 python-scgi 支持。</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://www.oraxin.com/articles/quixote-2-x-utf-8-character-encoding-problem.html" title="Quixote 2.x utf-8 的字符编码问题">Quixote 2.x utf-8 的字符编码问题</a></li><li><a href="http://www.oraxin.com/articles/debian-apache2-mysql-quixote-system-installation-3.html" title="debian apache2 mysql quixote 系统的安装（3）">debian apache2 mysql quixote 系统的安装（3）</a></li><li><a href="http://www.oraxin.com/articles/debian-apache2-mysql-quixote-system-installation-2.html" title="debian apache2 mysql quixote 系统的安装（2）">debian apache2 mysql quixote 系统的安装（2）</a></li><li><a href="http://www.oraxin.com/articles/debian-apache2-mysql-quixote-system-installation-1.html" title="debian apache2 mysql quixote 系统的安装（1）">debian apache2 mysql quixote 系统的安装（1）</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.oraxin.com/articles/debian-apache2-mysql-quixote-system-installation-4.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rihanna 新近单曲 Te Amo</title>
		<link>http://www.oraxin.com/articles/rihanna-new-single-te-amo.html</link>
		<comments>http://www.oraxin.com/articles/rihanna-new-single-te-amo.html#comments</comments>
		<pubDate>Tue, 01 Jun 2010 07:59:16 +0000</pubDate>
		<dc:creator>orlando2000</dc:creator>
				<category><![CDATA[音乐影视]]></category>
		<category><![CDATA[MV]]></category>
		<category><![CDATA[Rihanna]]></category>
		<category><![CDATA[单曲]]></category>

		<guid isPermaLink="false">http://www.oraxin.com/?p=32379</guid>
		<description><![CDATA[Rihanna 新出了今年新近单曲 Te Amo 的 MV，这个歌名的英文意思是 “I Love You”，这首歌由 Mikkel S. Eriksen, Tor Erik Hermansen, James Fauntleroy II 和 Rihanna 编写，Stargate 制作的。

实话说，我并不是最喜欢这首歌，但这个 MV 画面色彩浓重，整个就是充斥着红色的暴力色彩，没看过歌词，也比知道说了点设么。但既然她出了个 MV，我们能看也就看看吧。

Related PostsRihanna 与 Young Jeezy 的 Hard 新单曲 MVShakira 与 Kid Cudi 合作单曲 Did It AgainBlack Eyed Peas &#8211; Meet Me Halfway 的 MVRihanna 的又一个 MV Russian Roulettejay sean 的 down [...]]]></description>
			<content:encoded><![CDATA[<p>Rihanna 新出了今年新近单曲 Te Amo 的 MV，这个歌名的英文意思是 “I Love You”，这首歌由 Mikkel S. Eriksen, Tor Erik Hermansen, James Fauntleroy II 和 Rihanna 编写，Stargate 制作的。</p>
<p style="text-align: center;"><img src="http://www.oraxin.com/wp-content/uploads/2010/06/10053105483155418-449x448.jpg" alt="" title="10053105483155418" width="449" height="448" class="aligncenter size-medium wp-image-32380" /></p>
<p>实话说，我并不是最喜欢这首歌，但这个 MV 画面色彩浓重，整个就是充斥着红色的暴力色彩，没看过歌词，也比知道说了点设么。但既然她出了个 MV，我们能看也就看看吧。</p>
<p style="text-align: center;"><embed src='http://player.youku.com/player.php/sid/XMTc3NjM1NDQ0/v.swf' quality='high' width='480' height='400' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash'></embed></p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://www.oraxin.com/articles/rihanna-and-young-jeezys-hard-new-single-mv.html" title="Rihanna 与 Young Jeezy 的 Hard 新单曲 MV">Rihanna 与 Young Jeezy 的 Hard 新单曲 MV</a></li><li><a href="http://www.oraxin.com/articles/shakira-in-cooperation-with-the-kid-cudi-track-did-it-again.html" title="Shakira 与 Kid Cudi 合作单曲 Did It Again">Shakira 与 Kid Cudi 合作单曲 Did It Again</a></li><li><a href="http://www.oraxin.com/articles/black-eyed-peas-meet-me-halfway-of-the-mv.html" title="Black Eyed Peas &#8211; Meet Me Halfway 的 MV">Black Eyed Peas &#8211; Meet Me Halfway 的 MV</a></li><li><a href="http://www.oraxin.com/articles/rihannas-another-mv-russian-roulette.html" title="Rihanna 的又一个 MV Russian Roulette">Rihanna 的又一个 MV Russian Roulette</a></li><li><a href="http://www.oraxin.com/articles/jay-seans-down-to-mv.html" title="jay sean 的 down 的 MV">jay sean 的 down 的 MV</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.oraxin.com/articles/rihanna-new-single-te-amo.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>debian apache2 mysql quixote 系统的安装（3）</title>
		<link>http://www.oraxin.com/articles/debian-apache2-mysql-quixote-system-installation-3.html</link>
		<comments>http://www.oraxin.com/articles/debian-apache2-mysql-quixote-system-installation-3.html#comments</comments>
		<pubDate>Mon, 31 May 2010 11:49:13 +0000</pubDate>
		<dc:creator>orlando2000</dc:creator>
				<category><![CDATA[软件世家]]></category>
		<category><![CDATA[debian]]></category>

		<guid isPermaLink="false">http://www.oraxin.com/?p=32372</guid>
		<description><![CDATA[上次已经安装完了 debian 系统，今天来对他进行一些完善，安装必备的软件。
三、debian 系统软件源的设置与软件的安装
在软件安装之前，我们先要添加一个速度较快的软件仓库源，我发现网易的开源软件仓库网速比较快，而且更新也与官方源尽量保持了同步，很不错。添加源只要修改 sources.list 文件就可以了，使用 vim 打开这个文件。
vim /etc/apt/sources.list
然后按下 “i”，进入插入模式，在第二个 “deb cdrom” 前加上 “#”，注释掉从光盘安装选项，在这个文件中添加如下网易源。
deb http://mirrors.163.com/debian/ lenny contrib main non-free
按下 “ESC” 进入命令模式，键入 “:w” 保存文件，键入 “:q” 退出文件。
运行如下命令，更新软件仓库的数据，这个需要一定的时间，耐心等待。
apt-get update
上一个命令执行完后执行更新现有软件的命令，如下。
apt-get upgrade
到此软件源就算添加完成了。接下来要安装一些系统需要的软件，如 ftp、ssh 等
运行如下，安装 openssh-server。
apt-get install openssh-server
安装完 ssh-server 之后，你就可以是用 SecureCRT 来登入 debian 进行操作了，而不必开着个 VMware 的界面。
之后安装 VSftpd，运行命令。
apt-get install vsftpd
一般必备的工具也就这两个，有什么需要的，可以使用 apt-cache search + 软件名称 进行搜索，用 apt-get install + 名称 进行安装。
还有，查看网络连接信息使用 ifconfig 命令进行查看。
Related [...]]]></description>
			<content:encoded><![CDATA[<p>上次已经安装完了 debian 系统，今天来对他进行一些完善，安装必备的软件。</p>
<p><strong>三、debian 系统软件源的设置与软件的安装</strong></p>
<p>在软件安装之前，我们先要添加一个速度较快的软件仓库源，我发现网易的开源软件仓库网速比较快，而且更新也与官方源尽量保持了同步，很不错。添加源只要修改 sources.list 文件就可以了，使用 vim 打开这个文件。</p>
<p><code>vim /etc/apt/sources.list</code></p>
<p>然后按下 “i”，进入插入模式，在第二个 “deb cdrom” 前加上 “#”，注释掉从光盘安装选项，在这个文件中添加如下网易源。</p>
<p><code>deb http://mirrors.163.com/debian/ lenny contrib main non-free</code></p>
<p>按下 “ESC” 进入命令模式，键入 “:w” 保存文件，键入 “:q” 退出文件。</p>
<p>运行如下命令，更新软件仓库的数据，这个需要一定的时间，耐心等待。</p>
<p><code>apt-get update</code></p>
<p>上一个命令执行完后执行更新现有软件的命令，如下。</p>
<p><code>apt-get upgrade</code></p>
<p>到此软件源就算添加完成了。接下来要安装一些系统需要的软件，如 ftp、ssh 等</p>
<p>运行如下，安装 openssh-server。</p>
<p><code>apt-get install openssh-server</code></p>
<p>安装完 ssh-server 之后，你就可以是用 SecureCRT 来登入 debian 进行操作了，而不必开着个 VMware 的界面。</p>
<p>之后安装 VSftpd，运行命令。</p>
<p><code>apt-get install vsftpd</code></p>
<p>一般必备的工具也就这两个，有什么需要的，可以使用 <code>apt-cache search</code> + 软件名称 进行搜索，用 <code>apt-get install</code> + 名称 进行安装。</p>
<p>还有，查看网络连接信息使用 <code>ifconfig</code> 命令进行查看。</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://www.oraxin.com/articles/debian-apache2-mysql-quixote-system-installation-4.html" title="debian apache2 mysql quixote 系统的安装（4）">debian apache2 mysql quixote 系统的安装（4）</a></li><li><a href="http://www.oraxin.com/articles/debian-apache2-mysql-quixote-system-installation-2.html" title="debian apache2 mysql quixote 系统的安装（2）">debian apache2 mysql quixote 系统的安装（2）</a></li><li><a href="http://www.oraxin.com/articles/debian-apache2-mysql-quixote-system-installation-1.html" title="debian apache2 mysql quixote 系统的安装（1）">debian apache2 mysql quixote 系统的安装（1）</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.oraxin.com/articles/debian-apache2-mysql-quixote-system-installation-3.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>debian apache2 mysql quixote 系统的安装（2）</title>
		<link>http://www.oraxin.com/articles/debian-apache2-mysql-quixote-system-installation-2.html</link>
		<comments>http://www.oraxin.com/articles/debian-apache2-mysql-quixote-system-installation-2.html#comments</comments>
		<pubDate>Fri, 28 May 2010 02:40:50 +0000</pubDate>
		<dc:creator>orlando2000</dc:creator>
				<category><![CDATA[软件世家]]></category>
		<category><![CDATA[debian]]></category>

		<guid isPermaLink="false">http://www.oraxin.com/?p=32361</guid>
		<description><![CDATA[上次由于我的失误，在安装过程中电脑蓝屏了，只得重新开始安装，今天接着上次的 debian 安装进程。
上次已经到了格式化硬盘的阶段，今天就从那以后开始，填写 root 账户的密码两次，在填写你的名字，和添加一个普通用户（也就是填写新用户名与密码）。



设置好这些后，会开始对系统的软件仓库等一些设置，当跳到如下界面问你是否需要扫描其他 cd，选择 NO。

问你是否需要设置软件仓库的网络镜像如下图，也选择 NO，等安装好了之后我们手动添加软件仓库镜像。接下来继续等待。还有一点接下来的安装步骤需要网络连接。

等待一段时间，从网上自动下载一些需要的组建并安装完后，跳出如下界面，选择 NO。

接着就是询问安装通用软件，取消所有选择，继续。

提示是否重写系统启动引导程序，选择 YES。（忘了截图了）
最后是系统安装完毕的提示，继续后系统重启。完成之后就可以使用你设置的用户名密码登入了。

至此，debian 的最简系统已经安装好了。下次再来对系统进行配置和安装必备的软件。
Related Postsdebian apache2 mysql quixote 系统的安装（4）debian apache2 mysql quixote 系统的安装（3）debian apache2 mysql quixote 系统的安装（1）]]></description>
			<content:encoded><![CDATA[<p>上次由于我的失误，在安装过程中电脑蓝屏了，只得重新开始安装，今天接着上次的 debian 安装进程。</p>
<p>上次已经到了格式化硬盘的阶段，今天就从那以后开始，填写 root 账户的密码两次，在填写你的名字，和添加一个普通用户（也就是填写新用户名与密码）。</p>
<p style="text-align: center;"><img src="http://www.oraxin.com/wp-content/uploads/2010/05/2010-05-28_094946-450x350.jpg" alt="" title="2010-05-28_094946" width="450" height="350" class="aligncenter size-medium wp-image-32363" /></p>
<p><span id="more-32361"></span></p>
<p style="text-align: center;"><img src="http://www.oraxin.com/wp-content/uploads/2010/05/2010-05-28_095106-450x350.jpg" alt="" title="2010-05-28_095106" width="450" height="350" class="aligncenter size-medium wp-image-32364" /></p>
<p>设置好这些后，会开始对系统的软件仓库等一些设置，当跳到如下界面问你是否需要扫描其他 cd，选择 NO。</p>
<p style="text-align: center;"><img src="http://www.oraxin.com/wp-content/uploads/2010/05/2010-05-28_095142-450x350.jpg" alt="" title="2010-05-28_095142" width="450" height="350" class="aligncenter size-medium wp-image-32365" /></p>
<p>问你是否需要设置软件仓库的网络镜像如下图，也选择 NO，等安装好了之后我们手动添加软件仓库镜像。接下来继续等待。还有一点接下来的安装步骤需要网络连接。</p>
<p style="text-align: center;"><img src="http://www.oraxin.com/wp-content/uploads/2010/05/2010-05-28_095154-450x350.jpg" alt="" title="2010-05-28_095154" width="450" height="350" class="aligncenter size-medium wp-image-32366" /></p>
<p>等待一段时间，从网上自动下载一些需要的组建并安装完后，跳出如下界面，选择 NO。</p>
<p style="text-align: center;"><img src="http://www.oraxin.com/wp-content/uploads/2010/05/2010-05-28_102010-450x350.jpg" alt="" title="2010-05-28_102010" width="450" height="350" class="aligncenter size-medium wp-image-32367" /></p>
<p>接着就是询问安装通用软件，取消所有选择，继续。</p>
<p style="text-align: center;"><img src="http://www.oraxin.com/wp-content/uploads/2010/05/2010-05-28_102144-450x350.jpg" alt="" title="2010-05-28_102144" width="450" height="350" class="aligncenter size-medium wp-image-32368" /></p>
<p>提示是否重写系统启动引导程序，选择 YES。（忘了截图了）</p>
<p>最后是系统安装完毕的提示，继续后系统重启。完成之后就可以使用你设置的用户名密码登入了。</p>
<p style="text-align: center;"><img src="http://www.oraxin.com/wp-content/uploads/2010/05/2010-05-28_102511-450x275.jpg" alt="" title="2010-05-28_102511" width="450" height="275" class="aligncenter size-medium wp-image-32369" /></p>
<p>至此，debian 的最简系统已经安装好了。下次再来对系统进行配置和安装必备的软件。</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://www.oraxin.com/articles/debian-apache2-mysql-quixote-system-installation-4.html" title="debian apache2 mysql quixote 系统的安装（4）">debian apache2 mysql quixote 系统的安装（4）</a></li><li><a href="http://www.oraxin.com/articles/debian-apache2-mysql-quixote-system-installation-3.html" title="debian apache2 mysql quixote 系统的安装（3）">debian apache2 mysql quixote 系统的安装（3）</a></li><li><a href="http://www.oraxin.com/articles/debian-apache2-mysql-quixote-system-installation-1.html" title="debian apache2 mysql quixote 系统的安装（1）">debian apache2 mysql quixote 系统的安装（1）</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.oraxin.com/articles/debian-apache2-mysql-quixote-system-installation-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>debian apache2 mysql quixote 系统的安装（1）</title>
		<link>http://www.oraxin.com/articles/debian-apache2-mysql-quixote-system-installation-1.html</link>
		<comments>http://www.oraxin.com/articles/debian-apache2-mysql-quixote-system-installation-1.html#comments</comments>
		<pubDate>Tue, 25 May 2010 06:54:16 +0000</pubDate>
		<dc:creator>orlando2000</dc:creator>
				<category><![CDATA[软件世家]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://www.oraxin.com/?p=32344</guid>
		<description><![CDATA[这个 debian apache2 mysql quixote 的系统，我已经在我的虚拟机上安装很多遍了，每次都不让我满意，决定再安装一次。这次我准备把整个过程详细的计入下来，省得每次都要从网上查找方法。也就算是一个学习笔记吧。
一、debian 的安装所需的 VMware 环境
要用虚拟机安装，首先就需要 VMware，这个软件安装比较简单，差不多一路 next 就好了。
我安装的是 debian-504-i386-CD-1.iso 这个镜像文件，你可以在 debian 的网站上下载，注意只要下载 cd 1 就足够了。
在安装 debian 系统之前最好确保你的电脑能连网，这样会给安装提供方便。
首先打开，在 home 界面上选择 New Virtual Machine。


选择 Typical，再 next。

选择 Installer disc image file，添加你的镜像文件，当然你也可以使用你的物理光驱或虚拟光驱来添加光盘，VMware 会自动识别你要安装的系统。

接下来就是要制定虚拟机的名称和磁盘文件存放的位置。

选择最大的磁盘空间，和确认虚拟磁盘文件在你电脑里格式，一般保持默认就好了。到了最后就是 finish，系统重启加载安装镜像。


二、debian 的安装
在系统引导加载安装镜像之后，出现如下画面，选择 Install。

等待知道出现语言选项，选默认 English（由于我不安装GUI，选英语不会再命令行下出现乱码），之后选择国家，是 other\Asia\China，再选择键盘 American English，等待。


然后停下来的界面是让你填主机的名称（Hostname），域名（Domain name，没有就默认好了），之后的选项你看不懂的就选默认，直到如下图：

系统要求你选择格式化硬盘，选择 Yes。再等待。
未完待续。。。
Related Postsdebian apache2 mysql quixote 系统的安装（4）debian apache2 mysql quixote 系统的安装（3）debian apache2 mysql quixote 系统的安装（2）]]></description>
			<content:encoded><![CDATA[<p>这个 debian apache2 mysql quixote 的系统，我已经在我的虚拟机上安装很多遍了，每次都不让我满意，决定再安装一次。这次我准备把整个过程详细的计入下来，省得每次都要从网上查找方法。也就算是一个学习笔记吧。</p>
<p><strong>一、debian 的安装所需的 VMware 环境</strong></p>
<p>要用虚拟机安装，首先就需要 VMware，这个软件安装比较简单，差不多一路 next 就好了。</p>
<p>我安装的是 debian-504-i386-CD-1.iso 这个镜像文件，你可以在 debian 的网站上下载，注意只要下载 cd 1 就足够了。</p>
<p>在安装 debian 系统之前最好确保你的电脑能连网，这样会给安装提供方便。</p>
<p>首先打开，在 home 界面上选择 New Virtual Machine。</p>
<p style="text-align: center;"><img src="http://www.oraxin.com/wp-content/uploads/2010/05/2010-05-25_133714-450x386.jpg" alt="" title="2010-05-25_133714" width="450" height="386" class="aligncenter size-medium wp-image-32345" /></p>
<p><span id="more-32344"></span></p>
<p>选择 Typical，再 next。</p>
<p style="text-align: center;"><img src="http://www.oraxin.com/wp-content/uploads/2010/05/2010-05-25_133821.jpg" alt="" title="2010-05-25_133821" width="432" height="444" class="aligncenter size-full wp-image-32346" /></p>
<p>选择 Installer disc image file，添加你的镜像文件，当然你也可以使用你的物理光驱或虚拟光驱来添加光盘，VMware 会自动识别你要安装的系统。</p>
<p style="text-align: center;"><img src="http://www.oraxin.com/wp-content/uploads/2010/05/2010-05-25_134117.jpg" alt="" title="2010-05-25_134117" width="432" height="444" class="aligncenter size-full wp-image-32347" /></p>
<p>接下来就是要制定虚拟机的名称和磁盘文件存放的位置。</p>
<p style="text-align: center;"><img src="http://www.oraxin.com/wp-content/uploads/2010/05/2010-05-25_134228.jpg" alt="" title="2010-05-25_134228" width="432" height="444" class="aligncenter size-full wp-image-32348" /></p>
<p>选择最大的磁盘空间，和确认虚拟磁盘文件在你电脑里格式，一般保持默认就好了。到了最后就是 finish，系统重启加载安装镜像。</p>
<p style="text-align: center;"><img src="http://www.oraxin.com/wp-content/uploads/2010/05/2010-05-25_134434.jpg" alt="" title="2010-05-25_134434" width="432" height="444" class="aligncenter size-full wp-image-32349" /></p>
<p style="text-align: center;"><img src="http://www.oraxin.com/wp-content/uploads/2010/05/2010-05-25_134527.jpg" alt="" title="2010-05-25_134527" width="432" height="444" class="aligncenter size-full wp-image-32350" /></p>
<p><strong>二、debian 的安装</strong></p>
<p>在系统引导加载安装镜像之后，出现如下画面，选择 Install。</p>
<p style="text-align: center;"><img src="http://www.oraxin.com/wp-content/uploads/2010/05/2010-05-25_134656-450x382.jpg" alt="" title="2010-05-25_134656" width="450" height="382" class="aligncenter size-medium wp-image-32351" /></p>
<p>等待知道出现语言选项，选默认 English（由于我不安装GUI，选英语不会再命令行下出现乱码），之后选择国家，是 other\Asia\China，再选择键盘 American English，等待。</p>
<p style="text-align: center;"><img src="http://www.oraxin.com/wp-content/uploads/2010/05/2010-05-25_134842-450x382.jpg" alt="" title="2010-05-25_134842" width="450" height="382" class="aligncenter size-medium wp-image-32352" /></p>
<p style="text-align: center;"><img src="http://www.oraxin.com/wp-content/uploads/2010/05/2010-05-25_135212-450x392.jpg" alt="" title="2010-05-25_135212" width="450" height="392" class="aligncenter size-medium wp-image-32353" /></p>
<p>然后停下来的界面是让你填主机的名称（Hostname），域名（Domain name，没有就默认好了），之后的选项你看不懂的就选默认，直到如下图：</p>
<p style="text-align: center;"><img src="http://www.oraxin.com/wp-content/uploads/2010/05/2010-05-25_135550-450x392.jpg" alt="" title="2010-05-25_135550" width="450" height="392" class="aligncenter size-medium wp-image-32354" /></p>
<p>系统要求你选择格式化硬盘，选择 Yes。再等待。</p>
<p>未完待续。。。</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://www.oraxin.com/articles/debian-apache2-mysql-quixote-system-installation-4.html" title="debian apache2 mysql quixote 系统的安装（4）">debian apache2 mysql quixote 系统的安装（4）</a></li><li><a href="http://www.oraxin.com/articles/debian-apache2-mysql-quixote-system-installation-3.html" title="debian apache2 mysql quixote 系统的安装（3）">debian apache2 mysql quixote 系统的安装（3）</a></li><li><a href="http://www.oraxin.com/articles/debian-apache2-mysql-quixote-system-installation-2.html" title="debian apache2 mysql quixote 系统的安装（2）">debian apache2 mysql quixote 系统的安装（2）</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.oraxin.com/articles/debian-apache2-mysql-quixote-system-installation-1.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>又一一人乐队献上小提琴版的《telephone》</title>
		<link>http://www.oraxin.com/articles/another-one-band-offer-violin-version-of-telephone.html</link>
		<comments>http://www.oraxin.com/articles/another-one-band-offer-violin-version-of-telephone.html#comments</comments>
		<pubDate>Thu, 13 May 2010 14:57:45 +0000</pubDate>
		<dc:creator>orlando2000</dc:creator>
				<category><![CDATA[音乐影视]]></category>
		<category><![CDATA[Lady Gaga]]></category>
		<category><![CDATA[MV]]></category>
		<category><![CDATA[山寨]]></category>

		<guid isPermaLink="false">http://www.oraxin.com/?p=32342</guid>
		<description><![CDATA[这首 Lady Gaga 的 Telephone， 被这位谁神人 Paul Dateh 用小提琴来 Mashup，很是带劲，虽然这不是网上最好的一人乐队，但已经相当不错了，毕竟小提琴可是很难弹的。下面就是他的视频：

其实这首歌的 MV 才叫带劲，由 Lady Gaga 和 Beyonce 共同完成，有许多镜头在监狱拍摄，超级性感，你们都知道 Lady Gaga 一般是这么穿衣服的。

现在网上流传更广的是一个有驻阿富汗士兵山寨的版本，我也发在下面。他们的动作，我就不知道怎么形容才好了。

Related PostsRihanna 新近单曲 Te AmoShakira 与 Kid Cudi 合作单曲 Did It AgainBlack Eyed Peas &#8211; Meet Me Halfway 的 MVRihanna 的又一个 MV Russian RouletteRihanna 与 Young Jeezy 的 Hard 新单曲 MV]]></description>
			<content:encoded><![CDATA[<p>这首 Lady Gaga 的 Telephone， 被这位谁神人 Paul Dateh 用小提琴来 Mashup，很是带劲，虽然这不是网上最好的一人乐队，但已经相当不错了，毕竟小提琴可是很难弹的。下面就是他的视频：</p>
<p style="text-align: center;"><embed src="http://player.youku.com/player.php/sid/XMTcxODQ0NjIw/v.swf" quality="high" width="480" height="400" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash"></embed></p>
<p>其实这首歌的 MV 才叫带劲，由 Lady Gaga 和 Beyonce 共同完成，有许多镜头在监狱拍摄，超级性感，你们都知道 Lady Gaga 一般是这么穿衣服的。</p>
<p style="text-align: center;"><embed src="http://player.youku.com/player.php/sid/XMTU4NjA3NDQ0/v.swf" quality="high" width="480" height="400" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash"></embed></p>
<p>现在网上流传更广的是一个有驻阿富汗士兵山寨的版本，我也发在下面。他们的动作，我就不知道怎么形容才好了。</p>
<p style="text-align: center;"><embed src="http://player.youku.com/player.php/sid/XMTY5NjI1NzA0/v.swf" quality="high" width="480" height="400" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash"></embed></p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://www.oraxin.com/articles/rihanna-new-single-te-amo.html" title="Rihanna 新近单曲 Te Amo">Rihanna 新近单曲 Te Amo</a></li><li><a href="http://www.oraxin.com/articles/shakira-in-cooperation-with-the-kid-cudi-track-did-it-again.html" title="Shakira 与 Kid Cudi 合作单曲 Did It Again">Shakira 与 Kid Cudi 合作单曲 Did It Again</a></li><li><a href="http://www.oraxin.com/articles/black-eyed-peas-meet-me-halfway-of-the-mv.html" title="Black Eyed Peas &#8211; Meet Me Halfway 的 MV">Black Eyed Peas &#8211; Meet Me Halfway 的 MV</a></li><li><a href="http://www.oraxin.com/articles/rihannas-another-mv-russian-roulette.html" title="Rihanna 的又一个 MV Russian Roulette">Rihanna 的又一个 MV Russian Roulette</a></li><li><a href="http://www.oraxin.com/articles/rihanna-and-young-jeezys-hard-new-single-mv.html" title="Rihanna 与 Young Jeezy 的 Hard 新单曲 MV">Rihanna 与 Young Jeezy 的 Hard 新单曲 MV</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.oraxin.com/articles/another-one-band-offer-violin-version-of-telephone.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>杜蕾斯平面广告之跳跃的字符</title>
		<link>http://www.oraxin.com/articles/durex-print-advertising-characters-jump.html</link>
		<comments>http://www.oraxin.com/articles/durex-print-advertising-characters-jump.html#comments</comments>
		<pubDate>Tue, 04 May 2010 14:41:55 +0000</pubDate>
		<dc:creator>orlando2000</dc:creator>
				<category><![CDATA[生活随感]]></category>
		<category><![CDATA[durex]]></category>
		<category><![CDATA[广告]]></category>
		<category><![CDATA[杜蕾斯]]></category>

		<guid isPermaLink="false">http://www.oraxin.com/?p=32337</guid>
		<description><![CDATA[这个是在网上看到的关于杜蕾斯的部分平面广告，很有新意也很经典，其实也没什么可以解释的，这个就是看图不说话的东东。好了，直接上图罢了。



Related Posts看看 2009 杜蕾斯的广告奶酪广告，超棒的配乐经典 Firefox 广告Chrome 创意新广告动物园奇趣广告]]></description>
			<content:encoded><![CDATA[<p>这个是在网上看到的关于杜蕾斯的部分平面广告，很有新意也很经典，其实也没什么可以解释的，这个就是看图不说话的东东。好了，直接上图罢了。</p>
<p style="text-align: center;"><img src="http://www.oraxin.com/wp-content/uploads/2010/05/durex1.jpg" alt="" title="durex1" width="420" height="559" class="aligncenter size-full wp-image-32338" /></p>
<p style="text-align: center;"><img src="http://www.oraxin.com/wp-content/uploads/2010/05/durex2.jpg" alt="" title="durex2" width="420" height="561" class="aligncenter size-full wp-image-32339" /></p>
<p style="text-align: center;"><img src="http://www.oraxin.com/wp-content/uploads/2010/05/durex3.jpg" alt="" title="durex3" width="374" height="500" class="aligncenter size-full wp-image-32340" /></p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://www.oraxin.com/articles/take-a-look-at-2009-durex-ad.html" title="看看 2009 杜蕾斯的广告">看看 2009 杜蕾斯的广告</a></li><li><a href="http://www.oraxin.com/articles/cheese-advertising-great-soundtrack.html" title="奶酪广告，超棒的配乐">奶酪广告，超棒的配乐</a></li><li><a href="http://www.oraxin.com/articles/classic-firefox-ad.html" title="经典 Firefox 广告">经典 Firefox 广告</a></li><li><a href="http://www.oraxin.com/articles/chrome-creative-new-ad.html" title="Chrome 创意新广告">Chrome 创意新广告</a></li><li><a href="http://www.oraxin.com/articles/zoo-funny-ads.html" title="动物园奇趣广告">动物园奇趣广告</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.oraxin.com/articles/durex-print-advertising-characters-jump.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>瞻仰逝者之波多黎各</title>
		<link>http://www.oraxin.com/articles/he-visited-the-dead.html</link>
		<comments>http://www.oraxin.com/articles/he-visited-the-dead.html#comments</comments>
		<pubDate>Fri, 30 Apr 2010 10:26:56 +0000</pubDate>
		<dc:creator>orlando2000</dc:creator>
				<category><![CDATA[生活随感]]></category>
		<category><![CDATA[尸体]]></category>
		<category><![CDATA[殡仪馆]]></category>

		<guid isPermaLink="false">http://www.oraxin.com/?p=32332</guid>
		<description><![CDATA[这是一篇在煎蛋上的文章。文章说在在波多黎各，逝者并非都是躺在棺材里的。
在一家名叫 Marin Funeral Home 的殡仪馆内为纪念被谋杀的 David Morales Colon，馆方将涂有防腐药剂的他放在摩托车上供人们瞻仰。

这乍一看去像是模特，没有多少哀伤的气息。悼念者如看到生前的逝者一样，帅气依旧。22岁的 Colon 是在周四被人谋杀的。

在2008年，这家殡仪馆还为一名24岁的年轻人做过同样的事请，只不过当时那人是站着度过三天的，Colon 要幸运一些，他可以坐着。
到此，我就有一个疑问了，当尸体僵硬的时候他们是怎么给尸体定型的？还有尸体僵硬一段时间之后就会变软，那么这个时候有用什么来支撑尸体的形状？
Related Posts死亡医学：白骨作证死亡医学：极有侦破价值的早期尸体现象若干种死法死后尸的样子]]></description>
			<content:encoded><![CDATA[<p>这是一篇在煎蛋上的文章。文章说在在波多黎各，逝者并非都是躺在棺材里的。</p>
<p>在一家名叫 Marin Funeral Home 的殡仪馆内为纪念被谋杀的 David Morales Colon，馆方将涂有防腐药剂的他放在摩托车上供人们瞻仰。</p>
<p style="text-align: center;"><img src="http://www.oraxin.com/wp-content/uploads/2010/04/rangshizhezhouwan1-450x266.jpg" alt="" title="rangshizhezhouwan1" width="450" height="266" class="aligncenter size-medium wp-image-32333" /></p>
<p>这乍一看去像是模特，没有多少哀伤的气息。悼念者如看到生前的逝者一样，帅气依旧。22岁的 Colon 是在周四被人谋杀的。</p>
<p style="text-align: center;"><img src="http://www.oraxin.com/wp-content/uploads/2010/04/rangshizhezhouwan2.jpg" alt="" title="rangshizhezhouwan2" width="415" height="276" class="aligncenter size-full wp-image-32334" /></p>
<p>在2008年，这家殡仪馆还为一名24岁的年轻人做过同样的事请，只不过当时那人是站着度过三天的，Colon 要幸运一些，他可以坐着。</p>
<p>到此，我就有一个疑问了，当尸体僵硬的时候他们是怎么给尸体定型的？还有尸体僵硬一段时间之后就会变软，那么这个时候有用什么来支撑尸体的形状？</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://www.oraxin.com/articles/medical-death-bones-of-the-dead-to-testify.html" title="死亡医学：白骨作证">死亡医学：白骨作证</a></li><li><a href="http://www.oraxin.com/articles/the-death-of-medicine-the-value-of-very-early-detection-of-the-body-of-the-phenomenon-of.html" title="死亡医学：极有侦破价值的早期尸体现象">死亡医学：极有侦破价值的早期尸体现象</a></li><li><a href="http://www.oraxin.com/articles/several-of-the-body-after-death-to-die-like.html" title="若干种死法死后尸的样子">若干种死法死后尸的样子</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.oraxin.com/articles/he-visited-the-dead.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gibbs’ Rules</title>
		<link>http://www.oraxin.com/articles/gibbs-rules.html</link>
		<comments>http://www.oraxin.com/articles/gibbs-rules.html#comments</comments>
		<pubDate>Mon, 26 Apr 2010 10:19:39 +0000</pubDate>
		<dc:creator>orlando2000</dc:creator>
				<category><![CDATA[音乐影视]]></category>
		<category><![CDATA[NCIS]]></category>
		<category><![CDATA[RULE]]></category>

		<guid isPermaLink="false">http://www.oraxin.com/?p=32330</guid>
		<description><![CDATA[看过 NCIS 必定会对 Gibbs 的 Rule NO.xx 有点印象，今天在维基上看到了网友收集翻译的几条 Ruls，就发出来让大家看看。

Gibbs大约有50条规则，并未写下来，但他的工作之一就是把这些规则教给他的队员们。这些规则有7条是牵涉到律师的，而第13条规则是the umbrella rule（我猜可能是指总纲或者最重要的）。不过他还有些规则并不在传授范围之内，比如有一条训马规则：你挑选了马厩里最好的马，你就得把它训练成最好的，如果你选第二好的马，就可以走捷径。（注：标号有重复的，应是剧情漏洞。）
NO.1Never let suspects stay together.
永远不要让嫌犯们待在一起。
NO.1Never let suspects stay together.
永远别欺骗你的搭档。
NO.2Always wear gloves at a crime scene.
在犯罪现场永远带着手套。
NO.3Don&#8217;t believe what you&#8217;re told. Double check.
不要轻信别人告诉你的。永远检查两遍。
NO.3Never be unreachable.
别让别人找不到。
NO.4The best way to keep a secret? Keep it to yourself. Second best? Tell one other person &#8211; if you must. There is [...]]]></description>
			<content:encoded><![CDATA[<p>看过 NCIS 必定会对 Gibbs 的 Rule NO.xx 有点印象，今天在维基上看到了网友收集翻译的几条 Ruls，就发出来让大家看看。</p>
<blockquote>
<p>Gibbs大约有50条规则，并未写下来，但他的工作之一就是把这些规则教给他的队员们。这些规则有7条是牵涉到律师的，而第13条规则是the umbrella rule（我猜可能是指总纲或者最重要的）。不过他还有些规则并不在传授范围之内，比如有一条训马规则：你挑选了马厩里最好的马，你就得把它训练成最好的，如果你选第二好的马，就可以走捷径。（注：标号有重复的，应是剧情漏洞。）</p>
<p>NO.1Never let suspects stay together.<br />
永远不要让嫌犯们待在一起。</p>
<p>NO.1Never let suspects stay together.<br />
永远别欺骗你的搭档。</p>
<p>NO.2Always wear gloves at a crime scene.<br />
在犯罪现场永远带着手套。</p>
<p>NO.3Don&#8217;t believe what you&#8217;re told. Double check.<br />
不要轻信别人告诉你的。永远检查两遍。</p>
<p>NO.3Never be unreachable.<br />
别让别人找不到。</p>
<p>NO.4The best way to keep a secret? Keep it to yourself. Second best? Tell one other person &#8211; if you must. There is no third best.<br />
保密的最好办法就是只有自己知道，其次是告诉一个人——如果非这么做不可的话。再没有其他的好办法了。</p>
<p>NO.6Never say you&#8217;re sorry – it&#8217;s a sign of weakness.<br />
不要说对不起，那是软弱的表现。</p>
<p>NO.7Always be specific when you lie.<br />
撒谎时一定要具体点。</p>
<p>NO.8Never take anything for granted.<br />
未经同意别携带任何东西</p>
<p>NO.9Never go anywhere without a knife.<br />
不带刀哪里都不要去。</p>
<p>NO.11When the job is done, walk away.<br />
工作结束后，赶紧走。</p>
<p>NO.12Never date a co-worker.<br />
永远不要和同事约会。</p>
<p>NO.13Never, ever involve lawyers.<br />
永远永远不要和律师扯上关系。</p>
<p>NO.15Always work as a team.<br />
要团体作战。</p>
<p>NO.18It&#8217;s better to seek forgiveness than ask permission.<br />
寻求谅解比要求许可更好。</p>
<p>NO.22Never, ever bother Gibbs in interrogation.<br />
永远永远不要在Gibbs审讯时打扰他。</p>
<p>NO.23Never mess with a Marine&#8217;s coffee&#8230; if you want to live.<br />
决不要乱弄海军的咖啡，如果你想生存</p>
<p>NO.27Two ways to tail: First way: they never notice you. Second way: they ONLY notice you.<br />
跟踪两种办法：他们绝不会注意你，他们只会注意你。</p>
<p>NO.38Your case, your lead.<br />
你的案子你做主。</p>
</blockquote>
<h3  class="related_post_title">Random Posts</h3><ul class="related_post"><li><a href="http://www.oraxin.com/articles/google-reader-egg.html" title="Google Reader彩蛋?!!!">Google Reader彩蛋?!!!</a></li><li><a href="http://www.oraxin.com/articles/tracking-control-system-to-disable-f1-accident-in-2008-will-be-more-frequent.html" title="禁用循迹控制系统 2008年F1意外将更频繁">禁用循迹控制系统 2008年F1意外将更频繁</a></li><li><a href="http://www.oraxin.com/articles/zhong-jie-zhe-jiu-shi-jun-mu-hou-pai-she-hua-xu.html" title="《终结者：救世军》幕后拍摄花絮">《终结者：救世军》幕后拍摄花絮</a></li><li><a href="http://www.oraxin.com/articles/24-films-in-the-philosophy-of-24-lines.html" title="24部电影中的24句哲理台词(转载)">24部电影中的24句哲理台词(转载)</a></li><li><a href="http://www.oraxin.com/articles/nickelback-main-if-today-was-your-last-day.html" title="Nickelback 主打 If Today Was Your Last Day">Nickelback 主打 If Today Was Your Last Day</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.oraxin.com/articles/gibbs-rules.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
