<?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>#raynix# &#187; 开源</title>
	<atom:link href="http://raynix.info/archives/tag/%e5%bc%80%e6%ba%90/feed" rel="self" type="application/rss+xml" />
	<link>http://raynix.info</link>
	<description>The real world hurts, doesn't it? </description>
	<lastBuildDate>Thu, 09 Sep 2010 04:40:19 +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>LAMP服务器的简单备份方法</title>
		<link>http://raynix.info/archives/561</link>
		<comments>http://raynix.info/archives/561#comments</comments>
		<pubDate>Thu, 11 Jun 2009 06:49:19 +0000</pubDate>
		<dc:creator>raynix</dc:creator>
				<category><![CDATA[Free software]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Opensource]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[备份]]></category>
		<category><![CDATA[开源]]></category>

		<guid isPermaLink="false">http://raynix.cn/?p=561</guid>
		<description><![CDATA[我用CentOS作为网站服务器的OS，我是这样备份我的网站的。 以下简称网站服务器为C，我的电脑是A。首先，在C上用一段shell script备份网站： backup.sh #! /bin/bash # This script is to backup the website files and db mysqldump mydb -pmypass &#62;/var/www/mysite/mydump.sql datestamp=`date +%Y%m%d` filewww="/home/myuser/backup/mysite_""$datestamp"".zip" zip -r $filewww /var/www/mysite 然后可以先运行一下这个script，看看结果是否符合预期。如果没问题，就可以将其加入到crontab了，每天自动运行。 59 3 * * * /bin/bash /home/myuser/backup.sh 这样C这边每天凌晨会备份一次并生成一个zip压缩包。但是把C的备份留在C就没意义了，我还要定期的把zip从C传到A。由于A不像C那样不间断运行的，所以如果从C向A传输就需要测试A是否在线，麻烦。不如让A取C上的zip。这就涉及到另一个问题，身份验证。 为一段自动运行的script提供password，我觉得不如使用public key验证来得专业，而且简单，两步就搞定： ssh-keygen -t rsa ssh-copy-id -i .ssh/id_rsa.pub myuser@C 这期间问到private key password时直接回车就行了；myuser@C的password还是需要输入的（否则……）。 下一步就是在A上写script，获取C上的备份，成功获取后删除C上的备份，并将A本机上超过一个月的备份删除。 backup-mysite.sh #!/bin/bash #by Raymond, Jun, [...]]]></description>
			<content:encoded><![CDATA[<p>我用CentOS作为网站服务器的OS，我是这样备份我的网站的。</p>
<p>以下简称网站服务器为C，我的电脑是A。首先，在C上用一段shell script备份网站：</p>
<p>backup.sh</p>
<blockquote><p>#! /bin/bash<br />
# This script is to backup the website files and db</p>
<p>mysqldump mydb -pmypass &gt;/var/www/mysite/mydump.sql</p>
<p>datestamp=`date +%Y%m%d`<br />
filewww="/home/myuser/backup/mysite_""$datestamp"".zip"</p>
<p>zip -r $filewww /var/www/mysite</p></blockquote>
<p>然后可以先运行一下这个script，看看结果是否符合预期。如果没问题，就可以将其加入到crontab了，每天自动运行。</p>
<blockquote><p>59 3 * * * /bin/bash /home/myuser/backup.sh</p></blockquote>
<p>这样C这边每天凌晨会备份一次并生成一个zip压缩包。但是把C的备份留在C就没意义了，我还要定期的把zip从C传到A。由于A不像C那样不间断运行的，所以如果从C向A传输就需要测试A是否在线，麻烦。不如让A取C上的zip。这就涉及到另一个问题，身份验证。</p>
<p>为一段自动运行的script提供password，我觉得不如使用public key验证来得专业，而且简单，两步就搞定：</p>
<blockquote><p>ssh-keygen -t rsa</p>
<p>ssh-copy-id -i .ssh/id_rsa.pub myuser@C</p></blockquote>
<p>这期间问到private key password时直接回车就行了；myuser@C的password还是需要输入的（否则……）。</p>
<p>下一步就是在A上写script，获取C上的备份，成功获取后删除C上的备份，并将A本机上超过一个月的备份删除。</p>
<p>backup-mysite.sh</p>
<blockquote><p>#!/bin/bash<br />
#by Raymond, Jun, 2009<br />
#1, get backup files from ...<br />
#2, delete after a successful copy<br />
scp myuser@C:/home/myuser/backup/*.zip /home/myuser/backup<br />
if [ $? -eq 0 ]<br />
then<br />
ssh myuser@C rm /home/myuser/backup/*.zip<br />
fi</p>
<p>#3, delete old backup files here<br />
find /home/myuser/backup/*.zip -mtime +30 -exec rm {} \;</p></blockquote>
<p>最后在把此script添加到A的crontab基本就没事了。过程类似上面的crontab，就偷懒不写了。注：懒是SA的美德。</p>
<p>Update: mysqldump --opt 对于恢复数据是个很好的开关.</p>
<hr />
<p><small>© raynix for <a href="http://raynix.info">#raynix#</a>, 2009. |
<a href="http://raynix.info/archives/561">Permalink</a> |
<a href="http://raynix.info/archives/561#comments">3 条评论</a> |
Add to
<a href="http://del.icio.us/post?url=http://raynix.info/archives/561&title=LAMP服务器的简单备份方法">del.icio.us</a>
<br/>
Post tags: <a href="http://raynix.info/archives/tag/cron" rel="tag">cron</a>, <a href="http://raynix.info/archives/tag/linux" rel="tag">linux</a>, <a href="http://raynix.info/archives/tag/mysql" rel="tag">mysql</a>, <a href="http://raynix.info/archives/tag/ssh" rel="tag">ssh</a>, <a href="http://raynix.info/archives/tag/%e5%a4%87%e4%bb%bd" rel="tag">备份</a>, <a href="http://raynix.info/archives/tag/%e5%bc%80%e6%ba%90" rel="tag">开源</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://raynix.info/archives/561/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Python＋Django笔记之二</title>
		<link>http://raynix.info/archives/446</link>
		<comments>http://raynix.info/archives/446#comments</comments>
		<pubDate>Wed, 25 Feb 2009 10:12:15 +0000</pubDate>
		<dc:creator>raynix</dc:creator>
				<category><![CDATA[Python & Django]]></category>
		<category><![CDATA[Django]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[webapp]]></category>
		<category><![CDATA[开源]]></category>

		<guid isPermaLink="false">http://raynix.cn/?p=446</guid>
		<description><![CDATA[一个简单的select * 操作的Django方式： 首先配置urls.py from django.conf.urls.defaults import * from misc import views urlpatterns = patterns(' ', (r'^notes/$', views.list_notes), ) 其中r'^notes/$'是regex，用于匹配url；views.list_notes是views.py中的list_notes 方法。 然后写list_notes: def list_notes(request): notes = Note.objects.order_by('-created_date') conduit = { 'notes': notes } return render_to_response( 'misc/list.html', conduit, context_instance = RequestContext(request), ) 其中conduit这个词来自Mass Effect 最后就是把上面的misc/list.html写出来： {% extends "base.html" %} {% block title %}List Notes - {{ [...]]]></description>
			<content:encoded><![CDATA[<p>一个简单的select * 操作的Django方式：</p>
<p>首先配置urls.py</p>
<blockquote><p>from django.conf.urls.defaults import *<br />
from misc import views</p>
<p>urlpatterns = patterns(' ',<br />
(r'^notes/$', views.list_notes),<br />
)</p></blockquote>
<p>其中r'^notes/$'是regex，用于匹配url；views.list_notes是views.py中的list_notes 方法。</p>
<p>然后写list_notes:</p>
<blockquote><p>def list_notes(request):<br />
notes = Note.objects.order_by('-created_date')<br />
conduit = {<br />
'notes': notes<br />
}<br />
return render_to_response(<br />
'misc/list.html',<br />
conduit,<br />
context_instance = RequestContext(request),<br />
)</p></blockquote>
<p>其中conduit这个词来自Mass Effect <img src='http://raynix.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>最后就是把上面的misc/list.html写出来：</p>
<blockquote><p>{% extends "base.html" %}</p>
<p>{% block title %}List Notes - {{ block.super }}{% endblock %}</p>
<p>{% block body %}<br />
{% if notes %}<br />
&lt;ul&gt;<br />
{% for note in notes %}<br />
&lt;li&gt;{{ note.created_date }} : {{ note.message }}&lt;/li&gt;<br />
{% endfor %}<br />
&lt;/ul&gt;<br />
{% else %}<br />
&lt;p&gt;No notes yet.&lt;/p&gt;<br />
{% endif %}<br />
{% endblock %}</p></blockquote>
<p>这样用浏览器访问类似http://localhost:8000/app/notes的url时，全部notes应该就列出来了，并按时间倒序排列。</p>
<hr />
<p><small>© raynix for <a href="http://raynix.info">#raynix#</a>, 2009. |
<a href="http://raynix.info/archives/446">Permalink</a> |
<a href="http://raynix.info/archives/446#comments">唉, 一个评论都没</a> |
Add to
<a href="http://del.icio.us/post?url=http://raynix.info/archives/446&title=Python＋Django笔记之二">del.icio.us</a>
<br/>
Post tags: <a href="http://raynix.info/archives/tag/django" rel="tag">Django</a>, <a href="http://raynix.info/archives/tag/python" rel="tag">Python</a>, <a href="http://raynix.info/archives/tag/webapp" rel="tag">webapp</a>, <a href="http://raynix.info/archives/tag/%e5%bc%80%e6%ba%90" rel="tag">开源</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://raynix.info/archives/446/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenOffice 3.0</title>
		<link>http://raynix.info/archives/357</link>
		<comments>http://raynix.info/archives/357#comments</comments>
		<pubDate>Sun, 19 Oct 2008 04:23:18 +0000</pubDate>
		<dc:creator>raynix</dc:creator>
				<category><![CDATA[Free software]]></category>
		<category><![CDATA[OpenOffice]]></category>
		<category><![CDATA[开源]]></category>

		<guid isPermaLink="false">http://raynix.cn/?p=357</guid>
		<description><![CDATA[昨天我突然想看看MS Office的Volume License是怎么个规则，于是我去下载常见问题的文档。结果很滑稽：此FAQ文档是MS Office 2007的DOCX格式！看来微软认为我应该先买Office，然后再问问题。 好在OpenOffice.org 3.0（简称OOo）刚刚发布，支持MS Office 07格式。于是我用OOo看了MS的FAQ： 补充：OOo3安装包只有140MB，功能一点不差！包括以下模块： OOo Base，对应MS Access数据库 OOo Calc，对应MS Excel电子表格 OOo Draw，对应MS Visio流程图 OOo Impress，对应MS PowerPoint幻灯片 OOo Math，好像MS Office没有，是写数学公式的工具 OOo Writer，对应MS Word字处理 希望能在公司推广开来 © raynix for #raynix#, 2008. &#124; Permalink &#124; 唉, 一个评论都没 &#124; Add to del.icio.us Post tags: OpenOffice, 开源 Feed enhanced by Better Feed from Ozh]]></description>
			<content:encoded><![CDATA[<p>昨天我突然想看看MS Office的Volume License是怎么个规则，于是我去下载常见问题的文档。结果很滑稽：此FAQ文档是MS Office 2007的DOCX格式！看来微软认为我应该先买Office，然后再问问题。</p>
<p>好在OpenOffice.org 3.0（简称OOo）刚刚发布，支持MS Office 07格式。于是我用OOo看了MS的FAQ：</p>
<p><a href="http://picasaweb.google.com/lh/photo/yepWcQEhL6PSK9djfZe_-g"><img src="http://lh3.ggpht.com/raynix/SPquGWzrZZI/AAAAAAAAAsc/hE5sq6RTTms/s144/ooo3.jpg" alt="" /></a></p>
<p>补充：OOo3安装包只有140MB，功能一点不差！包括以下模块：</p>
<ul>
<li>OOo Base，对应MS Access数据库</li>
<li>OOo Calc，对应MS Excel电子表格</li>
<li>OOo Draw，对应MS Visio流程图</li>
<li>OOo Impress，对应MS PowerPoint幻灯片</li>
<li>OOo Math，好像MS Office没有，是写数学公式的工具</li>
<li>OOo Writer，对应MS Word字处理</li>
</ul>
<p>希望能在公司推广开来</p>
<hr />
<p><small>© raynix for <a href="http://raynix.info">#raynix#</a>, 2008. |
<a href="http://raynix.info/archives/357">Permalink</a> |
<a href="http://raynix.info/archives/357#comments">唉, 一个评论都没</a> |
Add to
<a href="http://del.icio.us/post?url=http://raynix.info/archives/357&title=OpenOffice 3.0">del.icio.us</a>
<br/>
Post tags: <a href="http://raynix.info/archives/tag/openoffice" rel="tag">OpenOffice</a>, <a href="http://raynix.info/archives/tag/%e5%bc%80%e6%ba%90" rel="tag">开源</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://raynix.info/archives/357/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu、VirtualBox以及USB</title>
		<link>http://raynix.info/archives/261</link>
		<comments>http://raynix.info/archives/261#comments</comments>
		<pubDate>Fri, 07 Mar 2008 01:42:51 +0000</pubDate>
		<dc:creator>raynix</dc:creator>
				<category><![CDATA[Free software]]></category>
		<category><![CDATA[Opensource]]></category>
		<category><![CDATA[自由软件]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[usb]]></category>
		<category><![CDATA[VirtualBox]]></category>
		<category><![CDATA[开源]]></category>

		<guid isPermaLink="false">http://raynix.cn/archives/261</guid>
		<description><![CDATA[参考链接： http://www.xxlinux.com/linux/article/development/soft/20071126/12656.html https://bugs.launchpad.net/ubuntu/+source/virtualbox/+bug/151585 http://www.virtualbox.org/ticket/747 http://forums.virtualbox.org/viewtopic.php?p=981&#38;sid=6f27866dd1b767a59739ce46d452cc9e 也许是VirtualBox还不够成熟，正常安装好之后，无法把USB设备指派给Guest系统。参考以上链接内的方法，我勉强把一个U盘给接上了，可以交换文件，但是其他USB设备例如手机、移动硬盘还是连不上。 希望VirtualBox以后解决这个问题。 © raynix for #raynix#, 2008. &#124; Permalink &#124; 唉, 一个评论都没 &#124; Add to del.icio.us Post tags: 自由软件, linux, Ubuntu, usb, VirtualBox, 开源 Feed enhanced by Better Feed from Ozh]]></description>
			<content:encoded><![CDATA[<p>参考链接：</p>
<p>http://www.xxlinux.com/linux/article/development/soft/20071126/12656.html</p>
<p>https://bugs.launchpad.net/ubuntu/+source/virtualbox/+bug/151585</p>
<p>http://www.virtualbox.org/ticket/747</p>
<p>http://forums.virtualbox.org/viewtopic.php?p=981&amp;sid=6f27866dd1b767a59739ce46d452cc9e</p>
<p>也许是VirtualBox还不够成熟，正常安装好之后，无法把USB设备指派给Guest系统。参考以上链接内的方法，我勉强把一个U盘给接上了，可以交换文件，但是其他USB设备例如手机、移动硬盘还是连不上。</p>
<p><a href="http://picasaweb.google.com/raynix/Lib/photo#5171598923822853426"><img src="http://lh4.google.com/raynix/R8U10idA7TI/AAAAAAAAARw/M-r3jJT0O_8/s144/vbox10.jpeg" alt="" /></a></p>
<p>希望VirtualBox以后解决这个问题。</p>
<hr />
<p><small>© raynix for <a href="http://raynix.info">#raynix#</a>, 2008. |
<a href="http://raynix.info/archives/261">Permalink</a> |
<a href="http://raynix.info/archives/261#comments">唉, 一个评论都没</a> |
Add to
<a href="http://del.icio.us/post?url=http://raynix.info/archives/261&title=Ubuntu、VirtualBox以及USB">del.icio.us</a>
<br/>
Post tags: <a href="http://raynix.info/archives/tag/%e8%87%aa%e7%94%b1%e8%bd%af%e4%bb%b6" rel="tag">自由软件</a>, <a href="http://raynix.info/archives/tag/linux" rel="tag">linux</a>, <a href="http://raynix.info/archives/tag/ubuntu" rel="tag">Ubuntu</a>, <a href="http://raynix.info/archives/tag/usb" rel="tag">usb</a>, <a href="http://raynix.info/archives/tag/virtualbox" rel="tag">VirtualBox</a>, <a href="http://raynix.info/archives/tag/%e5%bc%80%e6%ba%90" rel="tag">开源</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://raynix.info/archives/261/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>给Ubuntu养一个宠物叫Windows</title>
		<link>http://raynix.info/archives/260</link>
		<comments>http://raynix.info/archives/260#comments</comments>
		<pubDate>Mon, 25 Feb 2008 04:06:08 +0000</pubDate>
		<dc:creator>raynix</dc:creator>
				<category><![CDATA[Free software]]></category>
		<category><![CDATA[Opensource]]></category>
		<category><![CDATA[自由软件]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[VirtualBox]]></category>
		<category><![CDATA[开源]]></category>

		<guid isPermaLink="false">http://raynix.cn/archives/260</guid>
		<description><![CDATA[自从上次回到Windows之后，虽然用上了我喜欢的紫光拼音，升级到了漂亮的Live Messenger8.5，但是我又不得不面对缓慢的开机以及各种可能的安全威胁了。前几天看新闻，VirtualBox1.5.6发行了！而对于我而言，却是第一次的想在Ubuntu上面跑一个Windows XP。 安装很简单，只要按照版本和平台下载正确的VirtualBox，再运行安装文件即可。然后选择Guest系统：Windows XP，然后为其分配内存、磁盘空间。我的设置是内存640MB、磁盘10GB。 一点需要注意的就是内存一定要够用，既要保证Host系统够用，也要保证Guest不会挨饿。好在现在内存不贵。 初步设置完成， 记得把CDROM挂上，这样就可以安装WinXP了。当然，你也可以把一个WinXP的安装光盘镜像给虚拟机挂上。 第一次启动成功了！WinXP照例提示你，把屏幕分辨率改为800x600。 一些系统的属性和状态。 将Ubuntu系统里的一个文件夹共享给Windows。可以选择临时、永久、只读、可写等等。 记得安装VirtualBox工具包，这样你的鼠标就可以自由进出这个Windows了。 最后装上了Lotus Notes for  Windows  7。任务完成。 关于版权，为了虚拟机而买一套正版WinXP似乎有点烧钱了。我装的是盗版的，不过随笔记本带了一份正版了，因此也说得过去了吧。 © raynix for #raynix#, 2008. &#124; Permalink &#124; 有且只有一条评论 &#124; Add to del.icio.us Post tags: 自由软件, linux, Ubuntu, VirtualBox, 开源 Feed enhanced by Better Feed from Ozh]]></description>
			<content:encoded><![CDATA[<p>自从上次回到Windows之后，虽然用上了我喜欢的紫光拼音，升级到了漂亮的Live Messenger8.5，但是我又不得不面对缓慢的开机以及各种可能的安全威胁了。前几天看新闻，<a href="http://http//www.virtualbox.org/" target="_blank">VirtualBox1.5.6</a>发行了！而对于我而言，却是第一次的想在Ubuntu上面跑一个Windows XP。</p>
<p>安装很简单，只要按照版本和平台下载正确的VirtualBox，再运行安装文件即可。然后选择Guest系统：Windows XP，然后为其分配内存、磁盘空间。我的设置是内存640MB、磁盘10GB。 一点需要注意的就是内存一定要够用，既要保证Host系统够用，也要保证Guest不会挨饿。好在现在内存不贵。</p>
<p><a href="http://picasaweb.google.com/raynix/Lib/photo#5169792112685804706"><img src="http://lh4.google.com/raynix/R77KiSdA7KI/AAAAAAAAAQQ/o1lbrT93gxM/s144/vbox1.jpeg" alt="" /></a><br />
初步设置完成， 记得把CDROM挂上，这样就可以安装WinXP了。当然，你也可以把一个WinXP的安装光盘镜像给虚拟机挂上。</p>
<p><a href="http://picasaweb.google.com/raynix/Lib/photo#5169792112685804722"><img src="http://lh4.google.com/raynix/R77KiSdA7LI/AAAAAAAAAQY/N9cQ9eguLD0/s144/vbox2.jpeg" alt="" /></a> <a href="http://picasaweb.google.com/raynix/Lib/photo#5169792121275739330"><img src="http://lh6.google.com/raynix/R77KiydA7MI/AAAAAAAAAQg/5NXl-loJ31I/s144/vbox3.jpeg" alt="" /></a> <a href="http://picasaweb.google.com/raynix/Lib/photo#5169792121275739346"><img src="http://lh6.google.com/raynix/R77KiydA7NI/AAAAAAAAAQo/CDpYF1vYQMY/s144/vbox4.jpeg" alt="" /></a><br />
第一次启动成功了！WinXP照例提示你，把屏幕分辨率改为800x600。</p>
<p><a href="http://picasaweb.google.com/raynix/Lib/photo#5169792125570706658"><img src="http://lh3.google.com/raynix/R77KjCdA7OI/AAAAAAAAAQw/qAVAszWXzuA/s144/vbox5.jpeg" alt="" /></a><br />
一些系统的属性和状态。</p>
<p><a href="http://picasaweb.google.com/raynix/Lib/photo#5170753369316322546"><img src="http://lh6.google.com/raynix/R8I0yydA7PI/AAAAAAAAAQ4/F7Ah3D9wWPA/s144/virtualbox7.jpeg" alt="" /></a><br />
将Ubuntu系统里的一个文件夹共享给Windows。可以选择临时、永久、只读、可写等等。</p>
<p><a href="http://picasaweb.google.com/raynix/Lib/photo#5170753373611289858"><img src="http://lh3.google.com/raynix/R8I0zCdA7QI/AAAAAAAAARA/aWyoABXNbJU/s144/virualbox6.jpeg" alt="" /></a><br />
记得安装VirtualBox工具包，这样你的鼠标就可以自由进出这个Windows了。</p>
<p><a href="http://picasaweb.google.com/raynix/Lib/photo#5170757239081856274"><img src="http://lh3.google.com/raynix/R8I4UCdA7RI/AAAAAAAAARI/9icz-lf3Ux0/s144/virtualbox8.jpeg" alt="" /></a><br />
最后装上了Lotus Notes for  Windows  7。任务完成。</p>
<p>关于版权，为了虚拟机而买一套正版WinXP似乎有点烧钱了。我装的是盗版的，不过随笔记本带了一份正版了，因此也说得过去了吧。</p>
<hr />
<p><small>© raynix for <a href="http://raynix.info">#raynix#</a>, 2008. |
<a href="http://raynix.info/archives/260">Permalink</a> |
<a href="http://raynix.info/archives/260#comments">有且只有一条评论</a> |
Add to
<a href="http://del.icio.us/post?url=http://raynix.info/archives/260&title=给Ubuntu养一个宠物叫Windows">del.icio.us</a>
<br/>
Post tags: <a href="http://raynix.info/archives/tag/%e8%87%aa%e7%94%b1%e8%bd%af%e4%bb%b6" rel="tag">自由软件</a>, <a href="http://raynix.info/archives/tag/linux" rel="tag">linux</a>, <a href="http://raynix.info/archives/tag/ubuntu" rel="tag">Ubuntu</a>, <a href="http://raynix.info/archives/tag/virtualbox" rel="tag">VirtualBox</a>, <a href="http://raynix.info/archives/tag/%e5%bc%80%e6%ba%90" rel="tag">开源</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://raynix.info/archives/260/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
