<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title><![CDATA[X-Blog! - Ubuntu]]></title>
<link>http://blog.3gcomet.com/</link>
<description><![CDATA[创造机会的人是勇者；等待机会的人是愚者]]></description>
<language>zh-cn</language>
<copyright><![CDATA[Copyright 2005 PBlog3 v2.8]]></copyright>
<webMaster><![CDATA[iamcomet#163.com(真·星魂)]]></webMaster>
<generator>PBlog2 v2.4</generator> 
<image>
	<title>X-Blog!</title>
	<url>http://blog.3gcomet.com/images/logos.gif</url>
	<link>http://blog.3gcomet.com/</link>
	<description>X-Blog!</description>
</image>

			<item>
			<link>http://blog.3gcomet.com/article.asp?id=496</link>
			<title><![CDATA[mldonkey下载速度设置]]></title>
			<author>iamcomet#163.com(comet)</author>
			<category><![CDATA[Ubuntu]]></category>
			<pubDate>Fri,20 Aug 2010 09:54:26 +0800</pubDate>
			<guid>http://blog.3gcomet.com/default.asp?id=496</guid>
		<description><![CDATA[<p>os: ubuntu server 32bit</p>
<p>mldonkey-server: 2.9.2-2ubuntu0.1</p>
<p><strong>1.安装</strong></p>
<p><span style="color: #ff9900">sudo apt-get install mldonkey-server</span></p>
<p><strong>2.速度设置</strong></p>
<p>网上有很多，有一些是不正确的。只要留意一下说明就可以了。这里的环境是4M的带宽，公网IP。主要设置如下：</p>
<p>max_hard_upload_rate = 10</p>
<p>&nbsp;&nbsp;&nbsp; (* The maximal download rate you can tolerate on your link in kBytes/s (0 = no limit)<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; The limit will apply on all your connections (clients and servers) and both<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; control and data messages. Maximum value depends on max_hard_upload_rate:<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span style="color: #ff0000">&gt;= 10&nbsp;&nbsp;&nbsp; -&gt; unlimited download</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt; 10 &gt; 3 -&gt; download limited to upload * 4<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt; 4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -&gt; download limited to upload * 3 *)<br />
&nbsp;max_hard_download_rate = 400</p>
<p>&nbsp;&nbsp;&nbsp; (* Second maximal upload rate for easy toggling (use bw_toggle) *)<br />
&nbsp;max_hard_upload_rate_2 = 10</p>
<p>&nbsp;&nbsp;&nbsp; (* Second maximal download rate for easy toggling (use bw_toggle) *)<br />
&nbsp;max_hard_download_rate_2 = 200</p>
<p>&nbsp;&nbsp;&nbsp; (* Maximal number of opened connections *)<br />
&nbsp;max_opened_connections = 50</p>
<p>&nbsp;&nbsp;&nbsp; (* Amount of indirect connections in percent (min 30, max 70) of max_opened_connections *)<br />
&nbsp;max_indirect_connections = 30</p>
<p><strong>3.定时改变下载速度</strong></p>
<p>&nbsp;每天1点下载速度设置为400KB/s，8点设置为200KB/s。在/var/lib/mldonkey/download.ini 中的calendar直接写入：</p>
<p>&nbsp;calendar = [<br />
&nbsp; ([<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 5;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6;], [<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1;], bw_toggle);<br />
&nbsp; ([<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 5;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6;], [<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 8;], bw_toggle);]<br />
&nbsp;</p>]]></description>
		</item>
		
			<item>
			<link>http://blog.3gcomet.com/article.asp?id=493</link>
			<title><![CDATA[Eucalyptus的四种网络模式]]></title>
			<author>iamcomet#163.com(comet)</author>
			<category><![CDATA[Ubuntu]]></category>
			<pubDate>Fri,06 Aug 2010 13:53:58 +0800</pubDate>
			<guid>http://blog.3gcomet.com/default.asp?id=493</guid>
		<description><![CDATA[<p><strong>Eucalyptus的四种网络模式：</strong></p>
<p><strong>1. SYSTEM</strong></p>
<p>此种模式适合希望在台式机或笔记本上使用Eucalyptus的用户设置。在节点VM实例启动前，Euca会为每个实例分配一个随机MAC地址，并且通过节点本地的Xen桥接程序将虚拟实例的以太网设备与物理以太网连接。</p>
<p><strong>2. STATIC</strong></p>
<p>适合拥有MAC/IP资源池并随时想为虚拟机实例分配MAC/IP地址对的用户。当虚拟机实例化的时候，Euca会以静态方式开启DHCP服务器取出下一个IP/MAC地址对。并通过节点本地的Xen桥接程序将虚拟实例的以太网设备与物理以太网连接。</p>
<p><strong>3. MANAGED</strong></p>
<p>用户自定义一个自命名的网络，虚拟机实例从这个网络中获得IP，与STATIC模式类似，用户可以对一个静态IP槽进行管理和分配，另外，管理员可以对某自定义网络定义一个外部规则并运用于属于此网络的所有实例。这一部分功能与Amazon的弹性IP机制类似。</p>
<p><strong>4. MANAGED-NOVLAN</strong></p>
<p>提供了MANAGED mode的动态IP和自定义网络的特性，但不支持虚拟局域网之间的隔离<br />
&nbsp;</p>]]></description>
		</item>
		
			<item>
			<link>http://blog.3gcomet.com/article.asp?id=492</link>
			<title><![CDATA[修改git提交信息到编辑器为vim]]></title>
			<author>iamcomet#163.com(comet)</author>
			<category><![CDATA[Ubuntu]]></category>
			<pubDate>Mon,02 Aug 2010 11:27:41 +0800</pubDate>
			<guid>http://blog.3gcomet.com/default.asp?id=492</guid>
		<description><![CDATA[<p>&nbsp;<span style="color: rgb(255,102,0)"> git&nbsp; commit -m </span>默认使用nano，觉得不爽，改成vim吧。在 .git/config 的&nbsp; [core] 段中加上 editor=vim 。<br />
&nbsp;</p>]]></description>
		</item>
		
			<item>
			<link>http://blog.3gcomet.com/article.asp?id=491</link>
			<title><![CDATA[ubuntu 启动时出现 initramfs]]></title>
			<author>iamcomet#163.com(comet)</author>
			<category><![CDATA[Ubuntu]]></category>
			<pubDate>Sat,31 Jul 2010 00:06:25 +0800</pubDate>
			<guid>http://blog.3gcomet.com/default.asp?id=491</guid>
		<description><![CDATA[<p>&nbsp; 安装好eucalyptus ，由于打雷，还是把服务器关了，结果第二天来开机发现3台服务器都出现下面的提示，并停在initramfs了@_@</p>
<p><br />
Gave up waiting for root device.Common programs:<br />
&mdash;Boot args(cat  /proc  cmdline)<br />
&mdash;Check rootdelay=(did the system wait long  enough?)<br />
&mdash;Check root=(did the system wait for the right device?)<br />
&mdash;Missing  modules (cat /proc/modules: ls /dev)</p>
<p>没理由那么杯具吧。按照提示来检查：</p>
<p><strong>1.Boot args</strong></p>
<p>安装好之后没有修改过grub.cfg，也没有重启，估计不是这个问题。</p>
<p>&nbsp;</p>
<p><strong>2.rootdelay</strong></p>
<p>难道服务器启动慢？新到的R525，双U，8G内存，没理由啊。不会是因为加了个LSI HBA卡就这样吧？算了，还是加上延迟来试试。</p>
<p>使用server 的安装光盘启动，选择 Rescure a broken system，像装系统那样一步步进行，最后在选择执行shell 位置的时候选择原来系统的根/。由于之前把/boot单独分来出来，这里挂载一下并修改/boot/grub/grub.cfg为可写，然后在 kernel&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; /boot/vmlinuz-2.6.32-24-generic root=UUID=7e4d787a-8081-4f79-b2c4-9945912697a4 ro quiet 后面加上 rootdelay=60 ，用<span style="color: rgb(255, 102, 0);">sed -i 's/quiet/quiet\ rootdelay=60/' /boot/grub/grub.cfg</span> 可直接替换，不熟悉就用vi吧， rootdelay=60表示延迟60秒。重启！</p>
<p>Lucky ，搞掂！</p>
<p>&nbsp;</p>
<p>3.后面的就不用检查了^_^</p>
<p>&nbsp;</p>]]></description>
		</item>
		
			<item>
			<link>http://blog.3gcomet.com/article.asp?id=490</link>
			<title><![CDATA[两节点uec测试成功]]></title>
			<author>iamcomet#163.com(comet)</author>
			<category><![CDATA[Ubuntu]]></category>
			<pubDate>Fri,30 Jul 2010 08:39:17 +0800</pubDate>
			<guid>http://blog.3gcomet.com/default.asp?id=490</guid>
		<description><![CDATA[<p>&nbsp; 基于ubuntu 10.04 amd64 的两节点 ubuntu eucalyptus cloud 安装成功，实例运行正常，下一步学习镜像文件的制作。</p>
<p>参考：https://help.ubuntu.com/community/UEC/CDInstall</p>
<p>安装完成之后最好配置一下dhcp3-server，以免出现重启后运行实例时无法自动获取到ip。</p>]]></description>
		</item>
		
			<item>
			<link>http://blog.3gcomet.com/article.asp?id=489</link>
			<title><![CDATA[查看硬件信息]]></title>
			<author>iamcomet#163.com(comet)</author>
			<category><![CDATA[Ubuntu]]></category>
			<pubDate>Fri,23 Jul 2010 08:31:02 +0800</pubDate>
			<guid>http://blog.3gcomet.com/default.asp?id=489</guid>
		<description><![CDATA[<p><strong>查看CPU：</strong><br />
<span style="color: #ff9900">cat /proc/cpuinfo</span><br />
processor&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : 0<br />
vendor_id&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : GenuineIntel<br />
cpu family&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : 15<br />
model&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : 2<br />
model name&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : Intel(R) Pentium(R) 4 CPU 2.00GHz<br />
stepping&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : 4<br />
cpu MHz&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : 2004.647<br />
cache size&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : 512 KB<br />
fdiv_bug&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : no<br />
hlt_bug&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : no<br />
f00f_bug&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : no<br />
coma_bug&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : no<br />
fpu&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : yes<br />
fpu_exception&nbsp;&nbsp; : yes<br />
cpuid level&nbsp;&nbsp;&nbsp;&nbsp; : 2<br />
wp&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : yes<br />
flags&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm up pebs bts<br />
bogomips&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : 4009.29<br />
clflush size&nbsp;&nbsp;&nbsp; : 64<br />
cache_alignment : 128<br />
address sizes&nbsp;&nbsp; : 36 bits physical, 32 bits virtual<br />
power management:</p>
<p>----------------------------------------------<br />
<strong>查看内存：</strong><br />
<span style="color: #ff9900">free -m<br />
</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; total&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; used&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; free&nbsp;&nbsp;&nbsp;&nbsp; shared&nbsp;&nbsp;&nbsp; buffers&nbsp;&nbsp;&nbsp;&nbsp; cached<br />
Mem:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 496&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 467&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 29&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 231&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 193<br />
-/+ buffers/cache:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 41&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 455<br />
Swap:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 956&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 956</p>
<p>-----------------------------------------------<br />
<strong>查看硬盘：</strong><br />
<span style="color: #ff9900">hdparm -i /dev/sda</span></p>
<p>/dev/sda:</p>
<p>&nbsp;Model=ST340016A, FwRev=3.99, SerialNo=3HS8TS1N<br />
&nbsp;Config={ HardSect NotMFM HdSw&gt;15uSec Fixed DTR&gt;10Mbs RotSpdTol&gt;.5% }<br />
&nbsp;RawCHS=16383/16/63, TrkSize=0, SectSize=0, ECCbytes=4<br />
&nbsp;BuffType=unknown, BuffSize=2048kB, MaxMultSect=16, MultSect=16<br />
&nbsp;CurCHS=16383/16/63, CurSects=16514064, LBA=yes, LBAsects=78165360<br />
&nbsp;IORDY=on/off, tPIO={min:240,w/IORDY:120}, tDMA={min:120,rec:120}<br />
&nbsp;PIO modes:&nbsp; pio0 pio1 pio2 pio3 pio4<br />
&nbsp;DMA modes:&nbsp; mdma0 mdma1 mdma2<br />
&nbsp;UDMA modes: udma0 udma1 udma2 udma3 udma4 *udma5<br />
&nbsp;AdvancedPM=no WriteCache=enabled<br />
&nbsp;Drive conforms to: Unspecified:&nbsp; ATA/ATAPI-1,2,3,4,5</p>
<p>&nbsp;* signifies the current active mode<br />
-----------------------------------------------<br />
<strong>查看其他：<br />
</strong><span style="color: #ff9900">lspci</span><br />
00:00.0 Host bridge: Intel Corporation 82845 845 [Brookdale] Chipset Host Bridge (rev 11)<br />
00:01.0 PCI bridge: Intel Corporation 82845 845 [Brookdale] Chipset AGP Bridge (rev 11)<br />
00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev 12)<br />
00:1f.0 ISA bridge: Intel Corporation 82801BA ISA Bridge (LPC) (rev 12)<br />
00:1f.1 IDE interface: Intel Corporation 82801BA IDE U100 Controller (rev 12)<br />
00:1f.2 USB Controller: Intel Corporation 82801BA/BAM USB Controller #1 (rev 12)<br />
00:1f.3 SMBus: Intel Corporation 82801BA/BAM SMBus Controller (rev 12)<br />
00:1f.4 USB Controller: Intel Corporation 82801BA/BAM USB Controller #1 (rev 12)<br />
00:1f.5 Multimedia audio controller: Intel Corporation 82801BA/BAM AC'97 Audio Controller (rev 12)<br />
01:00.0 VGA compatible controller: nVidia Corporation NV11 [GeForce2 MX/MX 400] (rev b2)<br />
02:01.0 Ethernet controller: VIA Technologies, Inc. VT6102 [Rhine-II] (rev 43)<br />
02:03.0 Ethernet controller: VIA Technologies, Inc. VT6102 [Rhine-II] (rev 43)<br />
&nbsp;</p>]]></description>
		</item>
		
			<item>
			<link>http://blog.3gcomet.com/article.asp?id=487</link>
			<title><![CDATA[vmware中linux虚拟机的时间同步]]></title>
			<author>iamcomet#163.com(comet)</author>
			<category><![CDATA[Ubuntu]]></category>
			<pubDate>Mon,05 Jul 2010 21:04:25 +0800</pubDate>
			<guid>http://blog.3gcomet.com/default.asp?id=487</guid>
		<description><![CDATA[<p>&nbsp;&nbsp; 使用vmware server创建的虚拟机会有时间不同步的情况，如果是windows的虚拟系统，可以通过安装vmware tools后在控制面板设置好便可以定时同步。如果是linux的虚拟系统，通过编辑vmx文件，添加或修改对应的选项：</p>
<p>tools.syncTime = TRUE<br />
time.synchronize.continue = TRUE<br />
time.synchronize.restore = TRUE<br />
time.synchronize.resume.disk = TRUE<br />
time.synchronize.shrink = TRUE<br />
time.synchronize.tools.startup = TRUE<br />
&nbsp;</p>
<p>解释如下：</p>
<table border="1" cellspacing="1" cellpadding="1" width="571" style="width: 571px; height: 173px">
    <tbody>
        <tr>
            <td width="174">Option</td>
            <td width="384">Effect</td>
        </tr>
        <tr>
            <td width="174">tools.syncTime</td>
            <td width="384">If set to TRUE, the clock syncs periodically.</td>
        </tr>
        <tr>
            <td width="174">time.synchronize.continue</td>
            <td width="384">If set to TRUE, the clock syncs after taking a snapshot.</td>
        </tr>
        <tr>
            <td width="174">time.synchronize.restore</td>
            <td width="384">If set to TRUE, the clock syncs after reverting to a snapshot.</td>
        </tr>
        <tr>
            <td width="174">time.synchronize.resume.disk</td>
            <td width="384">If set to TRUE, the clock syncs after resuming from suspend and after migrating to a new host using the VMware VMotion feature.</td>
        </tr>
        <tr>
            <td width="174">time.synchronize.shrink</td>
            <td width="384">If set to TRUE, the clock syncs after defragmenting a virtual disk.</td>
        </tr>
        <tr>
            <td width="174">time.synchronize.tools.startup</td>
            <td width="384">If set to TRUE, the clock syncs when the tools daemon starts up, normally while the guest operating system is booting.</td>
        </tr>
    </tbody>
</table>
<p>&nbsp;参考自：<cite>www.vmware.com/pdf/vmware_timekeeping.pdf</cite></p>]]></description>
		</item>
		
			<item>
			<link>http://blog.3gcomet.com/article.asp?id=484</link>
			<title><![CDATA[让apache2支持https]]></title>
			<author>iamcomet#163.com(comet)</author>
			<category><![CDATA[Ubuntu]]></category>
			<pubDate>Mon,21 Jun 2010 09:55:54 +0800</pubDate>
			<guid>http://blog.3gcomet.com/default.asp?id=484</guid>
		<description><![CDATA[<p>&nbsp;os:ubuntu server 8.04</p>
<p><strong>1.安装需要用到的包</strong><br />
<span style="color: rgb(255, 153, 0); ">sudo apt-get install ssl-cert</span></p>
<p><strong>2.证书默认是1个月的有效期，这里是测试用，改成10年。</strong><br />
<span style="color: rgb(255, 153, 0); ">sudo sed -i -e 's/keyout $output/keyout $output -days 3650/' /usr/sbin/make-ssl-cert</span></p>
<p><strong>3.建立目录，并生成证书</strong><br />
<span style="color: rgb(255, 153, 0); ">sudo mkdir /etc/apache2/ssl<br />
sudo make-ssl-cert /usr/share/ssl-cert/ssleay.cnf /etc/apache2/ssl/apache.pem</span></p>
<p>过程要求输入：<br />
Country Name (2 letter code) [GB]:CN<br />
State or Province Name (full name) [Some-State]:GD<br />
Locality Name (eg, city) []:GZ<br />
organization Name (eg, company) [Internet Widgits Pty Ltd]:3gcomet<br />
organizational Unit Name (eg, section) []:3gcomet.com<br />
Common Name (eg, YOUR name) []:3gcomet.com<br />
Email Address []:comet#3gcomet.com</p>
<p><strong>4.启用 ssl 模块</strong><br />
<span style="color: rgb(255, 153, 0); ">sudo a2enmod ssl</span><br />
确认一下443端口启用了：<br />
<span style="color: rgb(255, 153, 0); ">cat /etc/apache2/ports.conf</span></p>
<p>&lt;IfModule mod_ssl.c&gt;<br />
Listen 443<br />
&lt;/IfModule&gt;</p>
<p><strong>5.建立站点文件</strong>，复制默认的，稍作修改：<br />
s<span style="color: rgb(255, 153, 0); ">udo cp /etc/apache2/sites-available/default /etc/apache2/sites-available/ssl</span></p>
<p>修改 /etc/apache2/sites-available/ssl ：<br />
因为ssl用的是443端口，所以把80端口改成443，在&lt;VirtualHost *:443&gt;下面加上以下两行<br />
SSLEngine on<br />
SSLCertificateFile /etc/apache2/ssl/apache.pem</p>
<p><strong>6.启用ssl站点配置</strong><br />
<span style="color: rgb(255, 153, 0); ">sudo a2ensite ssl</span></p>
<p><strong>7.重启apache2</strong><br />
<span style="color: rgb(255, 153, 0); ">/etc/init.d/apache2 restart</span></p>
<p><strong>8.通过https访问<br />
</strong>https://ServerIP<strong><br type="_moz" />
</strong></p>]]></description>
		</item>
		
			<item>
			<link>http://blog.3gcomet.com/article.asp?id=483</link>
			<title><![CDATA[lucid源的redmine有点问题]]></title>
			<author>iamcomet#163.com(comet)</author>
			<category><![CDATA[Ubuntu]]></category>
			<pubDate>Fri,18 Jun 2010 21:55:40 +0800</pubDate>
			<guid>http://blog.3gcomet.com/default.asp?id=483</guid>
		<description><![CDATA[<p>&nbsp; 在 <a href="http://mirrors.163.com">http://mirrors.163.com</a>&nbsp;源里面的redmine 0.9.3有点问题。默认安装的情况下中文乱码，缺少files，log，tmp目录，在/usr/share/redmine中加入3个目录还是不行。还是要手动安装一下。</p>]]></description>
		</item>
		
			<item>
			<link>http://blog.3gcomet.com/article.asp?id=481</link>
			<title><![CDATA[The Open Source Definition]]></title>
			<author>iamcomet#163.com(comet)</author>
			<category><![CDATA[Ubuntu]]></category>
			<pubDate>Fri,11 Jun 2010 23:18:52 +0800</pubDate>
			<guid>http://blog.3gcomet.com/default.asp?id=481</guid>
		<description><![CDATA[<p><strong>Introduction</strong><br />
Open source doesn't just mean access to the source code. The distribution terms of open-source software must comply with the following criteria:</p>
<p><strong>1. Free Redistribution<br />
</strong>The license shall not restrict any party from selling or giving away the software as a component of an aggregate software distribution containing programs from several different sources. The license shall not require a royalty or other fee for such sale.</p>
<p><strong>2. Source Code</strong><br />
The program must include source code, and must allow distribution in source code as well as compiled form. Where some form of a product is not distributed with source code, there must be a well-publicized means of obtaining the source code for no more than a reasonable reproduction cost preferably, downloading via the Internet without charge. The source code must be the preferred form in which a programmer would modify the program. Deliberately obfuscated source code is not allowed. Intermediate forms such as the output of a preprocessor or translator are not allowed.</p>
<p><strong>3. Derived Works</strong><br />
The license must allow modifications and derived works, and must allow them to be distributed under the same terms as the license of the original software.</p>
<p><strong>4. Integrity of The Author's Source Code<br />
</strong>The license may restrict source-code from being distributed in modified form only if the license allows the distribution of &quot;patch files&quot; with the source code for the purpose of modifying the program at build time. The license must explicitly permit distribution of software built from modified source code. The license may require derived works to carry a different name or version number from the original software.</p>
<p><strong>5. No Discrimination Against Persons or Groups</strong><br />
The license must not discriminate against any person or group of persons.</p>
<p><strong>6. No Discrimination Against Fields of Endeavor</strong><br />
The license must not restrict anyone from making use of the program in a specific field of endeavor. For example, it may not restrict the program from being used in a business, or from being used for genetic research.</p>
<p><strong>7. Distribution of License</strong><br />
The rights attached to the program must apply to all to whom the program is redistributed without the need for execution of an additional license by those parties.</p>
<p><strong>8. License Must Not Be Specific to a Product</strong><br />
The rights attached to the program must not depend on the program's being part of a particular software distribution. If the program is extracted from that distribution and used or distributed within the terms of the program's license, all parties to whom the program is redistributed should have the same rights as those that are granted in conjunction with the original software distribution.</p>
<p><strong>9. License Must Not Restrict Other Software</strong><br />
The license must not place restrictions on other software that is distributed along with the licensed software. For example, the license must not insist that all other programs distributed on the same medium must be open-source software.</p>
<p><strong>10. License Must Be Technology-Neutral</strong><br />
No provision of the license may be predicated on any individual technology or style of interface.<br />
&nbsp;</p>
<p>本文来自：<a href="http://www.opensource.org/docs/osd">http://www.opensource.org/docs/osd</a></p>]]></description>
		</item>
		
</channel>
</rss>
