<?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>nonozone &#187; linux</title>
	<atom:link href="http://www.nonozone.net/tag/linux/feed" rel="self" type="application/rss+xml" />
	<link>http://www.nonozone.net</link>
	<description>冷眼旁观互联网</description>
	<lastBuildDate>Mon, 16 Jan 2012 10:11:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Debian安装LNMP指南及多站点配置</title>
		<link>http://www.nonozone.net/debian-installation-guide-and-multi-site-configuration-lnmp.html</link>
		<comments>http://www.nonozone.net/debian-installation-guide-and-multi-site-configuration-lnmp.html#comments</comments>
		<pubDate>Mon, 18 Jul 2011 07:34:40 +0000</pubDate>
		<dc:creator>nonozone</dc:creator>
				<category><![CDATA[奇淫巧技]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[LNMP]]></category>
		<category><![CDATA[多站点]]></category>

		<guid isPermaLink="false">http://www.nonozone.net/debian-installation-guide-and-multi-site-configuration-lnmp.html</guid>
		<description><![CDATA[此文仅仅是一名服务器菜鸟折腾LNMP的学习笔记而已，各位老鸟就不用点击进来查看了。 至于为什么选择LNMP而不是LAMP，除了装逼+折腾+跟风+从众心理，估计找不到其他理由了。说是跟Apache相比Nginx更轻巧性能也更优，不管是有多么好，估计对我那么一两个访问量不过千的小博客基本上没啥区别。对于自己独立配置服务器，其实内心一直战战兢兢，生怕由于不慎，让主机变成肉鸡，唉，总是要走出这一步，貌似自己也确实如此一步一步走过来的。好了，不说废话，下面开始正题，这篇文章基本是两个内容，一个是debian环境下LNMP的安装指南，一个是Nginx的多站点配置指南。 Debian环境的LNMP安装指南 由于本人技术比较弱，所以选择的是网上教程众多的LNMP一键安装包，项目主页：http://lnmp.org/，上面本身也有安装教程：http://lnmp.org/install.html，其实这个教程已经很完备了，以至于我没什么好说的。自己其实用不到那么多组件，有Nginx，Mysql，PHP，phpmyadmin就可以了，所以我直接下载的lnmp0.7.tar.gz这个文件包然后默认安装就完成了，其他什么诸如FTP，ionCute，eAccelerator什么的暂时就不需要了。 安装的过程会提示你需要绑定一个域名，将域名的A记录解析到VPS的IP，LNMP一键安装完毕，直接访问域名就会出现一个安装成功的提示页面，同时还包含一个主机探针页面和PHPinfo函数的页面，这个都没啥好说的。安装过程大概会持续一段时间，估计有20-30分钟？我没仔细计时，因为我下载的是lnmp0.7.tar.gz文件包，这个文件包基本是一些脚本命令，执行的时候需要自己下载一些软件包，这本身需要一定的时间。 相关的目录和配置文件 nginx : /usr/local/nginx mysql : /usr/local/mysql php : /usr/local/php 网站目录: /home/wwwroot/ Nginx日志目录：/home/wwwlogs/ Nginx主配置文件：/usr/local/nginx/conf/nginx.conf MySQL配置文件：/etc/my.cnf PHP配置文件：/usr/local/php/etc/php.ini 这里面我最不满意的就是Nginx的配置文件目录了，这么长一窜实在不方便。比较喜欢Apache默认的配置文件都在/etc/apache2/这个里面，一目了然什么的，接下来要把这个改掉！ 到这一步，其实LNMP已经成功安装完毕了，安装的时候绑定的域名也可以访问了，但是如果想多站点怎么办呢？比如你有两个域名aaa.com和bbb.com，分别是两个不同内容的网站，又要怎么设置呢，下面就是关于Nginx的多站点配置指南吧。 Nginx多站点配置指南 在Apache的多站点配置里面很方便，只需要在/etc/apache2/sites-available/里分别添加aaa.com和bbb.com两个配置文件就可议了，这里我也打算按照这么个思路吧。 1首先，建立Nginx站点配置目录 mkdir –p /etc/nginx/vhost 然后编辑nginx配置文件 ~# vim /usr/local/nginx/conf/nginx.conf 将里面的server部分删除，最终变成的是下面这个样子，注意，这里不需要把我的代码复制过去，你只需要把这个配置文件的server 整个部分删掉就可以了。                use epoll; worker_connections 51200; } http { include       mime.types; default_type  application/octet-stream; server_names_hash_bucket_size 128; client_header_buffer_size 32k; large_client_header_buffers 4 32k; client_max_body_size [...]<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="基于Debian的VPS搭建LAMP指南" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Flamp-vps-structures-based-on-debians-guide.html&from=http%3A%2F%2Fwww.nonozone.net%2Fdebian-installation-guide-and-multi-site-configuration-lnmp.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://www.nonozone.net/wp-content/uploads/2011/09/dll-file.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">基于Debian的VPS搭建LAMP指南</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="SSH安装WordPress指南" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fssh-to-install-wordpress-guide.html&from=http%3A%2F%2Fwww.nonozone.net%2Fdebian-installation-guide-and-multi-site-configuration-lnmp.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://www.nonozone.net/wp-content/uploads/2011/09/dll-file.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">SSH安装WordPress指南</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Ramhost安装OpenSSH新手指南" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Framhost-install-openssh-beginners-guide.html&from=http%3A%2F%2Fwww.nonozone.net%2Fdebian-installation-guide-and-multi-site-configuration-lnmp.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://static.wumii.com/site_images/2011/09/01/26863945.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Ramhost安装OpenSSH新手指南</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Gappproxy2.0更新配置指南" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fgappproxy2-0-update-configuration-guide.html&from=http%3A%2F%2Fwww.nonozone.net%2Fdebian-installation-guide-and-multi-site-configuration-lnmp.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://static.wumii.com/site_images/2011/09/01/26866146.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Gappproxy2.0更新配置指南</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="DD-WRT配置电驴HighID端口映射指南" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fdd-wrt-setting-emule-highid-ports.html&from=http%3A%2F%2Fwww.nonozone.net%2Fdebian-installation-guide-and-multi-site-configuration-lnmp.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://static.wumii.com/site_images/2011/09/01/26862056.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">DD-WRT配置电驴HighID端口映射指南</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>此文仅仅是一名服务器菜鸟折腾LNMP的学习笔记而已，各位老鸟就不用点击进来查看了。</p>
<p>至于为什么选择LNMP而不是LAMP，除了装逼+折腾+跟风+从众心理，估计找不到其他理由了。说是跟Apache相比Nginx更轻巧性能也更优，不管是有多么好，估计对我那么一两个访问量不过千的小博客基本上没啥区别。对于自己独立配置服务器，其实内心一直战战兢兢，生怕由于不慎，让主机变成肉鸡，唉，总是要走出这一步，貌似自己也确实如此一步一步走过来的。好了，不说废话，下面开始正题，这篇文章基本是两个内容，一个是debian环境下LNMP的安装指南，一个是Nginx的多站点配置指南。</p>
<h3>Debian环境的LNMP安装指南</h3>
<p>由于本人技术比较弱，所以选择的是网上教程众多的LNMP一键安装包，项目主页：<a href="http://lnmp.org/">http://lnmp.org/</a>，上面本身也有安装教程：<a href="http://lnmp.org/install.html">http://lnmp.org/install.html</a>，其实这个教程已经很完备了，以至于我没什么好说的。自己其实用不到那么多组件，有Nginx，Mysql，PHP，phpmyadmin就可以了，所以我直接下载的lnmp0.7.tar.gz这个文件包然后默认安装就完成了，其他什么诸如FTP，ionCute，eAccelerator什么的暂时就不需要了。</p>
<p>安装的过程会提示你需要绑定一个域名，将域名的A记录解析到VPS的IP，LNMP一键安装完毕，直接访问域名就会出现一个安装成功的提示页面，同时还包含一个主机探针页面和PHPinfo函数的页面，这个都没啥好说的。安装过程大概会持续一段时间，估计有20-30分钟？我没仔细计时，因为我下载的是lnmp0.7.tar.gz文件包，这个文件包基本是一些脚本命令，执行的时候需要自己下载一些软件包，这本身需要一定的时间。</p>
<p>相关的目录和配置文件</p>
<p>nginx : /usr/local/nginx<br />
mysql : /usr/local/mysql<br />
php : /usr/local/php<br />
网站目录: /home/wwwroot/<br />
Nginx日志目录：/home/wwwlogs/<br />
Nginx主配置文件：/usr/local/nginx/conf/nginx.conf<br />
MySQL配置文件：/etc/my.cnf<br />
PHP配置文件：/usr/local/php/etc/php.ini</p>
<p>这里面我最不满意的就是Nginx的配置文件目录了，这么长一窜实在不方便。比较喜欢Apache默认的配置文件都在/etc/apache2/这个里面，一目了然什么的，接下来要把这个改掉！</p>
<p>到这一步，其实LNMP已经成功安装完毕了，安装的时候绑定的域名也可以访问了，但是如果想多站点怎么办呢？比如你有两个域名aaa.com和bbb.com，分别是两个不同内容的网站，又要怎么设置呢，下面就是关于Nginx的多站点配置指南吧。</p>
<h3>Nginx多站点配置指南</h3>
<p>在Apache的多站点配置里面很方便，只需要在/etc/apache2/sites-available/里分别添加aaa.com和bbb.com两个配置文件就可议了，这里我也打算按照这么个思路吧。</p>
<p>1首先，建立Nginx站点配置目录</p>
<blockquote><p>mkdir –p /etc/nginx/vhost</p></blockquote>
<p>然后编辑nginx配置文件</p>
<blockquote><p>~# vim /usr/local/nginx/conf/nginx.conf</p></blockquote>
<p>将里面的server部分删除，最终变成的是下面这个样子，注意，这里不需要把我的代码复制过去，你只需要把这个配置文件的server 整个部分删掉就可以了。</p>
<blockquote><p>               use epoll;<br />
worker_connections 51200;<br />
}</p>
<p>http<br />
{<br />
include       mime.types;<br />
default_type  application/octet-stream;</p>
<p>server_names_hash_bucket_size 128;<br />
client_header_buffer_size 32k;<br />
large_client_header_buffers 4 32k;<br />
client_max_body_size 50m;</p>
<p>sendfile on;<br />
tcp_nopush     on;</p>
<p>keepalive_timeout 60;</p>
<p>tcp_nodelay on;</p>
<p>fastcgi_connect_timeout 300;<br />
fastcgi_send_timeout 300;<br />
fastcgi_read_timeout 300;<br />
fastcgi_buffer_size 64k;<br />
fastcgi_buffers 4 64k;<br />
fastcgi_busy_buffers_size 128k;<br />
fastcgi_temp_file_write_size 256k;</p>
<p>gzip on;<br />
gzip_min_length  1k;<br />
gzip_buffers     4 16k;<br />
gzip_http_version 1.0;<br />
gzip_comp_level 2;<br />
gzip_types       text/plain application/x-javascript text/css application/xml;<br />
gzip_vary on;</p>
<p>#limit_zone  crawler  $binary_remote_addr  10m;</p>
<p><span style="color: #0000ff;">include /etc/nginx/vhost/*.conf;</span><br />
}</p></blockquote>
<p>注意最后的一行修改为，原配置文件不是这样的，此处需要修改过来。</p>
<blockquote><p>include /etc/nginx/vhost/*.conf;</p></blockquote>
<p>其实这个动作的作用就是以后直接读取/etc/nginx/vhost/这个目录下的所有配置文件。然后重启nginx：</p>
<blockquote><p>/etc/init.d/nginx restart</p></blockquote>
<p>这个时候，应该最开始绑定的那个域名aaa.com是不能访问的，因为配置文件已经修改了。下面来为这个域名增加配置文件。</p>
<p>进入/etc/nginx/vhost/，创建aaa.com.conf</p>
<p>然后将以下内容复制进去：</p>
<blockquote><p>server<br />
{<br />
listen       80;<br />
server_name aaa.com;<br />
index index.html index.htm index.php;<br />
root  <span style="color: #0000ff;">/srv/www/aaa.com/public_html</span>;</p>
<p>location ~ .*\.(php|php5)?$<br />
{<br />
fastcgi_pass  unix:/tmp/php-cgi.sock;<br />
fastcgi_index index.php;<br />
include fcgi.conf;<br />
}</p>
<p>location /status {<br />
stub_status on;<br />
access_log   off;<br />
}</p>
<p>location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$<br />
{<br />
expires      30d;<br />
}</p>
<p>location ~ .*\.(js|css)?$<br />
{<br />
expires      12h;<br />
}</p>
<p>log_format  access  &#8216;$remote_addr &#8211; $remote_user [$time_local] &#8220;$request&#8221; &#8216;<br />
&#8216;$status $body_bytes_sent &#8220;$http_referer&#8221; &#8216;<br />
&#8216;&#8221;$http_user_agent&#8221; $http_x_forwarded_for&#8217;;<br />
access_log  <span style="color: #0000ff;">/srv/www/aaa.com/logs/access.log</span>  access;<br />
}</p></blockquote>
<p>其实这段就是刚才在/usr/local/nginx/conf/nginx.conf里面删除的那段代码。上面蓝色著名的地方其实就是这个域名所在的跟目录和日志文件的目录。这个目录可以根据自己的需要修改，下面创建网站的根目录和日志目录：</p>
<blockquote><p>mkdir –p /srw/www/aaa.com/public_html<br />
mkdir –p /srw/www/aaa.com/logs</p></blockquote>
<p>然后重启nignx</p>
<blockquote><p>/etc/init.d/nginx resart</p></blockquote>
<p>这样整个网站就配置好了，按照同样的方式创建bbb.com就可以了。这个时候直接访问aaa.com应该是不行的，因为没有内容，你可以再根据这篇<a href="http://www.nonozone.net/ssh-to-install-wordpress-guide.html">SSH安装WordPress指南</a>安装个Wordpress试试，应该是没问题的。</p>
<p>但是这里还有一个问题，由于LNMP安装的时候跟目录是/home/wwwroot，同时默认的phpmyadmin安装目录也在这里，这个时候通过访问http://xxx.xxx.xxx.xxx/ phpmyadmin是无法访问的，因为此时跟目录已经被修改到/srv/www了，这个时候加个链接过来</p>
<blockquote><p>ln –s /home/wwwroot/phpmyadmin /srv/www/aaa.com/public_html</p></blockquote>
<p>这时通过访问aaa.com/phpmyadmin就可以了。</p>
<br /><g:plusone size="" href="http%3A%2F%2Fwww.nonozone.net%2Fdebian-installation-guide-and-multi-site-configuration-lnmp.html"></g:plusone><table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="基于Debian的VPS搭建LAMP指南" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Flamp-vps-structures-based-on-debians-guide.html&from=http%3A%2F%2Fwww.nonozone.net%2Fdebian-installation-guide-and-multi-site-configuration-lnmp.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://www.nonozone.net/wp-content/uploads/2011/09/dll-file.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">基于Debian的VPS搭建LAMP指南</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="SSH安装WordPress指南" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fssh-to-install-wordpress-guide.html&from=http%3A%2F%2Fwww.nonozone.net%2Fdebian-installation-guide-and-multi-site-configuration-lnmp.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://www.nonozone.net/wp-content/uploads/2011/09/dll-file.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">SSH安装WordPress指南</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Ramhost安装OpenSSH新手指南" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Framhost-install-openssh-beginners-guide.html&from=http%3A%2F%2Fwww.nonozone.net%2Fdebian-installation-guide-and-multi-site-configuration-lnmp.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://static.wumii.com/site_images/2011/09/01/26863945.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Ramhost安装OpenSSH新手指南</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Gappproxy2.0更新配置指南" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fgappproxy2-0-update-configuration-guide.html&from=http%3A%2F%2Fwww.nonozone.net%2Fdebian-installation-guide-and-multi-site-configuration-lnmp.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://static.wumii.com/site_images/2011/09/01/26866146.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Gappproxy2.0更新配置指南</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="DD-WRT配置电驴HighID端口映射指南" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fdd-wrt-setting-emule-highid-ports.html&from=http%3A%2F%2Fwww.nonozone.net%2Fdebian-installation-guide-and-multi-site-configuration-lnmp.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://static.wumii.com/site_images/2011/09/01/26862056.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">DD-WRT配置电驴HighID端口映射指南</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.nonozone.net/debian-installation-guide-and-multi-site-configuration-lnmp.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>基于Debian的VPS搭建LAMP指南</title>
		<link>http://www.nonozone.net/lamp-vps-structures-based-on-debians-guide.html</link>
		<comments>http://www.nonozone.net/lamp-vps-structures-based-on-debians-guide.html#comments</comments>
		<pubDate>Mon, 11 Apr 2011 07:53:50 +0000</pubDate>
		<dc:creator>nonozone</dc:creator>
				<category><![CDATA[奇淫巧技]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Linode]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.nonozone.net/lamp-vps-structures-based-on-debians-guide.html</guid>
		<description><![CDATA[此文基本是在海豚微笑的背后一文VPS建站LAMP 101基础上进行的，只是将自己按照其过程操作下来的几个问题稍微注明下。 根据海豚叔这篇文章我前前后后折腾了很久，总是会出错，搜索了很久也一直没有解决。本来都打算把上次获得Linode的100美金优惠券购买的VPS停止不用的，昨天稍微折腾了下，竟然所有问题都搞定了，特地整篇文章让自己也有个笔记留作以后参考。 基本内容大致相同，把自己遇到的问题和解决方法在相应位置特别说明了下。 设置时区 系统安装完毕后，最好先设置一下时区。一般来说大部分发行版本默认的时区设置是UTC，这里可以选择中国所在的时区shanghai。 dpkg-reconfigure tzdata 设置HostName HostName设置成自己喜欢的就行，不过有些系统保留的名字不要用。 echo “youlikename” &#62; /etc/hostname hostname -F /etc/hostname 这里直接编辑 /etc/hostname 效果是一样，比如你想把自己的主机名称修改为Coolhost，直接vim /etc/hostname 填写Coolhost保存退出就可以了。 设置完HostName后，继续让这个名字和Linode分配给你的公网ip地址相关联。 修改/etc/hosts： 127.0.0.1 localhost 12.34.56.78 youlikename 这里需要注意的一点就是，hosts的完整格式应该如下： 127.0.0.1 localhost.localdomain&#160; localhost 12.34.56.78 youlikename.localdomian&#160; youlikename 这个要特别注意，不然的话到最后重新加载apache服务端时候，会一直提示出错你找不到你的主机名，在这个问题上我折腾了相当久。然后需要重启一次，你的主机名才可以生效。 安装配置Apache服务 对于Debian Like用户来说安装任何东西都极其简单，使用以下命令就可安装Apache Web服务。 apt-get install apache2 然后需要修改/etc/apache2/ports.conf，加入以下内容： NameVirtualHost 12.34.56.78:80 IP地址当然是VPS供应商提供给你的独立IP，如果不想站点公开化当然也可以更改80端口。 然后需要修改默认的虚拟主机IP地址和端口，修改/etc/apache2/sites-available/default： &#60;VirtualHost 12.34.56.78:80&#62; 配置虚拟主机 /etc/apache2/sites-available/ 每个配置文件和域名一一对应，便于管理。比如需要设置两个站点，可以创建如下两个配置文件：site1.com; site2.org。 /etc/apache2/sites-available/site1.com [...]<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Debian安装LNMP指南及多站点配置" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fdebian-installation-guide-and-multi-site-configuration-lnmp.html&from=http%3A%2F%2Fwww.nonozone.net%2Flamp-vps-structures-based-on-debians-guide.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://www.nonozone.net/wp-content/uploads/2011/09/dll-file.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Debian安装LNMP指南及多站点配置</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="SSH安装WordPress指南" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fssh-to-install-wordpress-guide.html&from=http%3A%2F%2Fwww.nonozone.net%2Flamp-vps-structures-based-on-debians-guide.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://www.nonozone.net/wp-content/uploads/2011/09/dll-file.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">SSH安装WordPress指南</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Ramhost安装OpenSSH新手指南" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Framhost-install-openssh-beginners-guide.html&from=http%3A%2F%2Fwww.nonozone.net%2Flamp-vps-structures-based-on-debians-guide.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://static.wumii.com/site_images/2011/09/01/26863945.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Ramhost安装OpenSSH新手指南</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Ubuntu8.10版正式发布！" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fubuntu810-released.html&from=http%3A%2F%2Fwww.nonozone.net%2Flamp-vps-structures-based-on-debians-guide.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://static.wumii.com/site_images/2011/09/01/26866771.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Ubuntu8.10版正式发布！</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="企业网站SEO搜索引擎优化指南" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fbusiness-website-seo-guide.html&from=http%3A%2F%2Fwww.nonozone.net%2Flamp-vps-structures-based-on-debians-guide.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://www.nonozone.net/wp-content/uploads/2011/09/dll-file.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">企业网站SEO搜索引擎优化指南</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>此文基本是在<a href="http://www.kdolphin.com/" target="_blank">海豚微笑的背后</a>一文<a href="http://www.kdolphin.com/1106" target="_blank">VPS建站LAMP 101基础</a>上进行的，只是将自己按照其过程操作下来的几个问题稍微注明下。 </p>
<p>根据海豚叔这篇文章我前前后后折腾了很久，总是会出错，搜索了很久也一直没有解决。本来都打算把上次获得Linode的100美金优惠券购买的VPS停止不用的，昨天稍微折腾了下，竟然所有问题都搞定了，特地整篇文章让自己也有个笔记留作以后参考。</p>
<p> 基本内容大致相同，把自己遇到的问题和解决方法在相应位置特别说明了下。
<p><strong>设置时区</strong>     <br />系统安装完毕后，最好先设置一下时区。一般来说大部分发行版本默认的时区设置是UTC，这里可以选择中国所在的时区shanghai。</p>
<blockquote><p>dpkg-reconfigure tzdata</p>
</blockquote>
<p><strong>设置HostName</strong>     <br />HostName设置成自己喜欢的就行，不过有些系统保留的名字不要用。</p>
<blockquote><p>echo “youlikename” &gt; /etc/hostname      <br />hostname -F /etc/hostname</p>
</blockquote>
<p>这里直接编辑 /etc/hostname 效果是一样，比如你想把自己的主机名称修改为Coolhost，直接vim /etc/hostname 填写Coolhost保存退出就可以了。 </p>
<p>设置完HostName后，继续让这个名字和Linode分配给你的公网ip地址相关联。    <br />修改/etc/hosts：</p>
<blockquote><p>127.0.0.1 localhost      <br />12.34.56.78 youlikename</p>
</blockquote>
<p><font color="#0000ff"><strong>这里需要注意的一点就是，hosts的完整格式应该如下</strong></font>：</p>
<blockquote><p>127.0.0.1 localhost.localdomain&#160; localhost      <br />12.34.56.78 youlikename.localdomian&#160; youlikename</p>
</blockquote>
<p><font style="background-color: #ffffff" color="#0000ff"><strong>这个要特别注意，不然的话到最后重新加载apache服务端时候，会一直提示出错你找不到你的主机名，在这个问题上我折腾了相当久。然后需要重启一次，你的主机名才可以生效。</strong></font></p>
<p><strong>安装配置Apache服务</strong>     <br />对于Debian Like用户来说安装任何东西都极其简单，使用以下命令就可安装Apache Web服务。</p>
<blockquote><p>apt-get install apache2</p>
</blockquote>
<p>然后需要修改/etc/apache2/ports.conf，加入以下内容：</p>
<blockquote><p>NameVirtualHost 12.34.56.78:80</p>
</blockquote>
<p>IP地址当然是VPS供应商提供给你的独立IP，如果不想站点公开化当然也可以更改80端口。    <br />然后需要修改默认的虚拟主机IP地址和端口，修改/etc/apache2/sites-available/default：</p>
<blockquote><p>&lt;VirtualHost 12.34.56.78:80&gt;</p>
</blockquote>
<p><strong>配置虚拟主机</strong> </p>
<blockquote><p>/etc/apache2/sites-available/</p>
</blockquote>
<p>每个配置文件和域名一一对应，便于管理。比如需要设置两个站点，可以创建如下两个配置文件：site1.com; site2.org。    <br />/etc/apache2/sites-available/site1.com</p>
<blockquote><p>&lt;VirtualHost *:80&gt;      <br />ServerAdmin admin@site1.com       <br />ServerName site1.com       <br />ServerAlias www.site1.com       <br />DocumentRoot /srv/www/site1.com/public_html/       <br />ErrorLog /srv/www/site1.com/logs/error.log       <br />CustomLog /srv/www/site1.com/logs/access.log combined       <br />&lt;/VirtualHost&gt; </p>
</blockquote>
<p>/etc/apache2/sites-available/site2.org</p>
<blockquote><p>&lt;VirtualHost *:80&gt;      <br />ServerAdmin admin@site2.org       <br />ServerName site2.org       <br />ServerAlias www.site1.org       <br />DocumentRoot /srv/www/site2.org/public_html/       <br />ErrorLog /srv/www/site2.org/logs/error.log       <br />CustomLog /srv/www/site2.org/logs/access.log combined       <br />&lt;/VirtualHost&gt; </p>
</blockquote>
<p>然后建立相应的目录：</p>
<blockquote><p>mkdir -p /srv/www/site1.com/public_html      <br />mkdir -p /srv/www/site1.com/logs       <br />mkdir -p /srv/www/site2.org/public_html       <br />mkdir -p /srv/www/site2.org/logs</p>
</blockquote>
<p><font color="#0000ff"><strong>以上步骤需要注明的是，由于这里使用的并不是Apache默认的网站根目录地址，所以在&lt;VirtualHost *:80&gt;这个位置，同样需要把*更改成自己VPS的IP地址，否则即使域名绑定到VPS，但是访问的时候会提示你访问Apache默认地址/var/www，而不是这里的/srv/www。</strong></font></p>
<p>最后启用这两个站点：</p>
<blockquote><p>a2ensite site1.com      <br />a2ensite site2.org</p>
</blockquote>
<blockquote><p>/etc/init.d/apache2 reload</p>
</blockquote>
<p>Apache2提供了两个命令来快速启用和关闭某个站点：a2ensite和a2dissite。</p>
<p><strong>安装配置Mysql</strong> </p>
<blockquote><p>apt-get install mysql-server</p>
</blockquote>
<p><strong>安装配置PHP</strong> </p>
<blockquote><p>apt-get install php5 php-pear php5-suhosin</p>
</blockquote>
<p>为了让php支持Mysql，安装下面这个包：</p>
<blockquote><p>apt-get install php5-mysql</p>
</blockquote>
<p><strong>安装phpmyadmin</strong></p>
<blockquote><p>apt-get install phpmyadmin</p>
</blockquote>
<p>这里会提示你输入根管理员账户名称和密码，安装完成以后，直接输入你绑定的某个域名 abc.com/phpmyadmin 就可以访问了，然后根据需要创建数据库和用户，就可以了。</p>
<p>上面这几部完成，基本上你的网站就可以按正常步骤安装并且可以访问。</p>
<p>不过这些仅仅是最基本的访问设置，在折腾VPS的时候，需要很注意安全问题，比如我的这个主机以及朋友的几个VPS都有被人入侵的记录，我的一台VPS曾经被人入侵然后疯狂的上传下载一些数据，导致几天内CPU持续高负荷运转，并且导致磁盘爆满。哎呀，对于一个非技术人员来，有时候会折腾死人的。</p>
<br /><g:plusone size="" href="http%3A%2F%2Fwww.nonozone.net%2Flamp-vps-structures-based-on-debians-guide.html"></g:plusone><table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Debian安装LNMP指南及多站点配置" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fdebian-installation-guide-and-multi-site-configuration-lnmp.html&from=http%3A%2F%2Fwww.nonozone.net%2Flamp-vps-structures-based-on-debians-guide.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://www.nonozone.net/wp-content/uploads/2011/09/dll-file.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Debian安装LNMP指南及多站点配置</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="SSH安装WordPress指南" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fssh-to-install-wordpress-guide.html&from=http%3A%2F%2Fwww.nonozone.net%2Flamp-vps-structures-based-on-debians-guide.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://www.nonozone.net/wp-content/uploads/2011/09/dll-file.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">SSH安装WordPress指南</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Ramhost安装OpenSSH新手指南" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Framhost-install-openssh-beginners-guide.html&from=http%3A%2F%2Fwww.nonozone.net%2Flamp-vps-structures-based-on-debians-guide.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://static.wumii.com/site_images/2011/09/01/26863945.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Ramhost安装OpenSSH新手指南</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Ubuntu8.10版正式发布！" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fubuntu810-released.html&from=http%3A%2F%2Fwww.nonozone.net%2Flamp-vps-structures-based-on-debians-guide.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://static.wumii.com/site_images/2011/09/01/26866771.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Ubuntu8.10版正式发布！</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="企业网站SEO搜索引擎优化指南" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fbusiness-website-seo-guide.html&from=http%3A%2F%2Fwww.nonozone.net%2Flamp-vps-structures-based-on-debians-guide.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://www.nonozone.net/wp-content/uploads/2011/09/dll-file.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">企业网站SEO搜索引擎优化指南</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.nonozone.net/lamp-vps-structures-based-on-debians-guide.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ubuntu8.10不能上网解决方法</title>
		<link>http://www.nonozone.net/the-solution-of-ubuntu810-can-not-connection-internet.html</link>
		<comments>http://www.nonozone.net/the-solution-of-ubuntu810-can-not-connection-internet.html#comments</comments>
		<pubDate>Mon, 03 Nov 2008 12:14:51 +0000</pubDate>
		<dc:creator>nonozone</dc:creator>
				<category><![CDATA[奇淫巧技]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[不能上网]]></category>

		<guid isPermaLink="false">http://www.nonozone.net/ubuntu810-bu-neng-shang-wang-jie-jue-fang-fa.html</guid>
		<description><![CDATA[在前一篇文章里，我也反映了自己安装好Ubuntu8.10以后，不能上网，并且在那个Network Manager里面网络貌似也不能正确配置，后来在网上和ubuntu中文论坛看了一下，貌似出现这个问题的朋友还挺多，大概了解了一下，貌似是由于Network Manager有BUG引起的，经过好久的尝试，终于解决这个不能上网的问题了，这里把方法分享一下！ 首先，卸载掉Network Manager。你可以在新立得软件管理器卸载，也可以直接在终端敲入命令，当然我觉得敲一个命令比在新立得里更新，再搜索，再卸载方便多了，尤其在没有网络的情况下！ sudo apt-get remove network manager 然后手动配置网卡，因为这个时候，在System系统设置里面，是没有网络这一项的，所以我们要手动编辑，看来还是得熟悉一些常用的配置，不然在出问题的时候比较麻烦。 在终端输入： sudo gedit /etc/network/interfaces#总之你可以选用你喜欢的文本编辑器。 进入文本编辑器以后，开始配置接口！ 如果是你使用的静态IP，比如在一个office，然后office 的都是使用的固定ip的话，你应该如下设置： auto eth0 #iface eth1 inet dhcp （如果有这一行代码，麻烦你在前加一个&#34;#&#34;，把它注释掉） iface eth0 inet static address 192.168.1.168&#160; //这个IP地址，这些设置请根据你自己的情况填，不要抄我的 netmask 255.255.255.0&#160; //子网掩码 gateway 192.168.1.1。&#160; //网关 如果你是IP自动获取的话，跟我一样。我也是在公司上网，但是ip都是自动获取，那就更加简单了： auto eth0 #iface eth1 inet dhcp （如果有这一行代码，麻烦你在前加一个&#34;#&#34;，把它注释掉） iface eth0 inet static 注意：解释一下，eth0指的是你的第一款网卡，eth1意思是第二网卡，介于一般用户只有一块网卡，其实只有eth0，那你设置好eth0就可以了，别的不用管了。还有一点就是在弹出的文本编辑器里的这段配置，可能里面不是空白的，我的就不是，我的第一个配置貌似是什么lo，也就是网卡的测试用的自循环，不用管它，把这些配置添加进去就可以了。 这个时候，你就可以ping一下你的网关，看看有网络有没有通。 ping 192.168.0.1#或者有的是192.168.1.1，如果是公司的网络不是这两个跟网关咨询。 这个时候还不一定能上网，但是网络估计没有问题了，你还需要添加DNS信息，不然是没有办法访问网站的。 [...]<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Ubuntu8.10版正式发布！" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fubuntu810-released.html&from=http%3A%2F%2Fwww.nonozone.net%2Fthe-solution-of-ubuntu810-can-not-connection-internet.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://static.wumii.com/site_images/2011/09/01/26866771.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Ubuntu8.10版正式发布！</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="电脑不能上网问题的诊断方法" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fcomputer-can-not-access-problem-diagnosis.html&from=http%3A%2F%2Fwww.nonozone.net%2Fthe-solution-of-ubuntu810-can-not-connection-internet.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://static.wumii.com/site_images/2011/09/01/26858901.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">电脑不能上网问题的诊断方法</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="基于Debian的VPS搭建LAMP指南" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Flamp-vps-structures-based-on-debians-guide.html&from=http%3A%2F%2Fwww.nonozone.net%2Fthe-solution-of-ubuntu810-can-not-connection-internet.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://www.nonozone.net/wp-content/uploads/2011/09/dll-file.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">基于Debian的VPS搭建LAMP指南</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Debian安装LNMP指南及多站点配置" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fdebian-installation-guide-and-multi-site-configuration-lnmp.html&from=http%3A%2F%2Fwww.nonozone.net%2Fthe-solution-of-ubuntu810-can-not-connection-internet.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://www.nonozone.net/wp-content/uploads/2011/09/dll-file.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Debian安装LNMP指南及多站点配置</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="WordPress自动摘要插件wp-utf8-excerpt" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fwordpress-plugins-wp-utf8-excerpt.html&from=http%3A%2F%2Fwww.nonozone.net%2Fthe-solution-of-ubuntu810-can-not-connection-internet.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://www.nonozone.net/wp-content/uploads/2011/09/dll-file.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">WordPress自动摘要插件wp-utf8-excerpt</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>在<a target="_blank" href="http://www.nonozone.net/ubuntu810-released.html">前一篇</a>文章里，我也反映了自己安装好Ubuntu8.10以后，不能上网，并且在那个Network Manager里面网络貌似也不能正确配置，后来在网上和<a target="_blank" href="http://forum.ubuntu.org.cn/">ubuntu中文论坛</a>看了一下，貌似出现这个问题的朋友还挺多，大概了解了一下，貌似是由于Network Manager有BUG引起的，经过好久的尝试，终于解决这个不能上网的问题了，这里把方法分享一下！</p>
<p>首先，卸载掉Network Manager。你可以在新立得软件管理器卸载，也可以直接在终端敲入命令，当然我觉得敲一个命令比在新立得里更新，再搜索，再卸载方便多了，尤其在没有网络的情况下！</p>
<p><code>sudo apt-get remove network manager</code></p>
<p>然后手动配置网卡，因为这个时候，在System系统设置里面，是没有网络这一项的，所以我们要手动编辑，看来还是得熟悉一些常用的配置，不然在出问题的时候比较麻烦。</p>
<p>在终端输入：</p>
<p><code>sudo gedit /etc/network/interfaces#总之你可以选用你喜欢的文本编辑器。</code></p>
<p>进入文本编辑器以后，开始配置接口！</p>
<p><font color="#0000ff"><strong>如果是你使用的静态IP</strong></font>，比如在一个office，然后office 的都是使用的固定ip的话，你应该如下设置：</p>
<p><code>auto eth0      <br />#iface eth1 inet dhcp （如果有这一行代码，麻烦你在前加一个&quot;#&quot;，把它注释掉）       <br />iface eth0 inet static       <br />address 192.168.1.168&#160; //这个IP地址，这些设置请根据你自己的情况填，不要抄我的       <br />netmask 255.255.255.0&#160; //子网掩码       <br />gateway 192.168.1.1。&#160; //网关</code></p>
<p><font color="#0000ff"><strong>如果你是IP自动获取的话</strong></font>，跟我一样。我也是在公司上网，但是ip都是自动获取，那就更加简单了：</p>
<p><code>auto eth0      <br />#iface eth1 inet dhcp （如果有这一行代码，麻烦你在前加一个&quot;#&quot;，把它注释掉）       <br />iface eth0 inet static</code></p>
<p><strong><font color="#0000ff">注意</font></strong>：解释一下，eth0指的是你的第一款网卡，eth1意思是第二网卡，介于一般用户只有一块网卡，其实只有eth0，那你设置好eth0就可以了，别的不用管了。还有一点就是在弹出的文本编辑器里的这段配置，可能里面不是空白的，我的就不是，我的第一个配置貌似是什么lo，也就是网卡的测试用的自循环，不用管它，把这些配置添加进去就可以了。</p>
<p>这个时候，你就可以ping一下你的网关，看看有网络有没有通。</p>
<p><code>ping 192.168.0.1#或者有的是192.168.1.1，如果是公司的网络不是这两个跟网关咨询。</code></p>
<p>这个时候还不一定能上网，但是网络估计没有问题了，你还需要添加DNS信息，不然是没有办法访问网站的。</p>
<p><code>sudo gedit /etc/resolv.conf</code></p>
<p>在弹出的文本输入框输入：</p>
<p><code>DNSnameserver 192.168.1.1 //这里填入你所在地方的 DNS 服务器的地址</code></p>
<p>这里的192.168.1.1也就是你的默认网关。但是这里保险最好填写两个DNS信息，一个是网关，我还加入了本地区电信的DNS，我目前是在广东电信，用的DNS是202.96.128.86，所以我的配置信息是如下：</p>
<p><code>DNSnameserver 192.168.1.1      <br />DNSnameserver 202.96.128.86</code></p>
<p>如果你使用的网通，总之不知道自己DNS的话，请电话查询你的网络接入商。</p>
<p><font color="#0000ff"><strong>还有如果你是ADSL拨号上网，</strong></font>我记得命令应该是：</p>
<p><code>sudo pppoeconfig</code></p>
<p>这里会出现一步一步的提示，填写帐号和密码，仔细看提示操作因该就没有问题了，因为这个我这里没有尝试，具体的就不写了。</p>
<p>不过我ubuntu现在还是会偶尔出现关机不顺畅的问题，就是关机的时候进入一个黑屏，一个光标闪闪闪就不动了，必须按电源才能继续关机，如果有朋友也有这个问题解决了，还希望能赐教一下！</p>
<br /><g:plusone size="" href="http%3A%2F%2Fwww.nonozone.net%2Fthe-solution-of-ubuntu810-can-not-connection-internet.html"></g:plusone><table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Ubuntu8.10版正式发布！" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fubuntu810-released.html&from=http%3A%2F%2Fwww.nonozone.net%2Fthe-solution-of-ubuntu810-can-not-connection-internet.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://static.wumii.com/site_images/2011/09/01/26866771.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Ubuntu8.10版正式发布！</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="电脑不能上网问题的诊断方法" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fcomputer-can-not-access-problem-diagnosis.html&from=http%3A%2F%2Fwww.nonozone.net%2Fthe-solution-of-ubuntu810-can-not-connection-internet.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://static.wumii.com/site_images/2011/09/01/26858901.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">电脑不能上网问题的诊断方法</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="基于Debian的VPS搭建LAMP指南" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Flamp-vps-structures-based-on-debians-guide.html&from=http%3A%2F%2Fwww.nonozone.net%2Fthe-solution-of-ubuntu810-can-not-connection-internet.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://www.nonozone.net/wp-content/uploads/2011/09/dll-file.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">基于Debian的VPS搭建LAMP指南</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Debian安装LNMP指南及多站点配置" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fdebian-installation-guide-and-multi-site-configuration-lnmp.html&from=http%3A%2F%2Fwww.nonozone.net%2Fthe-solution-of-ubuntu810-can-not-connection-internet.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://www.nonozone.net/wp-content/uploads/2011/09/dll-file.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Debian安装LNMP指南及多站点配置</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="WordPress自动摘要插件wp-utf8-excerpt" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fwordpress-plugins-wp-utf8-excerpt.html&from=http%3A%2F%2Fwww.nonozone.net%2Fthe-solution-of-ubuntu810-can-not-connection-internet.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://www.nonozone.net/wp-content/uploads/2011/09/dll-file.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">WordPress自动摘要插件wp-utf8-excerpt</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.nonozone.net/the-solution-of-ubuntu810-can-not-connection-internet.html/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Ubuntu8.10版正式发布！</title>
		<link>http://www.nonozone.net/ubuntu810-released.html</link>
		<comments>http://www.nonozone.net/ubuntu810-released.html#comments</comments>
		<pubDate>Fri, 31 Oct 2008 12:18:03 +0000</pubDate>
		<dc:creator>nonozone</dc:creator>
				<category><![CDATA[软件评测]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.nonozone.net/ubuntu810-released.html</guid>
		<description><![CDATA[Ubuntu8.10版本正式发布了！ Ubuntu 是一个由 社区 开发的，适用于笔记本电脑、 桌面电脑 和 服务器。 无论您是在家庭、学校还是工作时使用，Ubuntu 都包含了您所需的所有程序：无论是文字处理和电子邮件，还是 Web 服务和编程工具。 大家可以到这里下载。我也在第一时间下载好镜像用wubi安装在笔记本上，可惜不知道为什么一直不能上网，貌似这个问题在ubuntu中文论坛上反映还挺多的。我是在安装完毕时重启的时候，进入一个黑屏然后一个光标一直闪一直闪就不动了，后来按了一下电源键才继续关机重启。 还有就是提醒一下，下载的时候最好选择BT下载，一是因为现在新版本刚刚发布，下载的人很多，服务器负载不够，另一方面是由于下载人多，BT种子其实很多，很快就可以让你满速，比HTTP下载速度快多了！ 唉，第一时间就不能体验ubuntu新版本的特点了，过几天再试试吧。<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Ubuntu8.10不能上网解决方法" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fthe-solution-of-ubuntu810-can-not-connection-internet.html&from=http%3A%2F%2Fwww.nonozone.net%2Fubuntu810-released.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://www.nonozone.net/wp-content/uploads/2011/09/dll-file.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Ubuntu8.10不能上网解决方法</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="基于Debian的VPS搭建LAMP指南" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Flamp-vps-structures-based-on-debians-guide.html&from=http%3A%2F%2Fwww.nonozone.net%2Fubuntu810-released.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://www.nonozone.net/wp-content/uploads/2011/09/dll-file.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">基于Debian的VPS搭建LAMP指南</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Debian安装LNMP指南及多站点配置" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fdebian-installation-guide-and-multi-site-configuration-lnmp.html&from=http%3A%2F%2Fwww.nonozone.net%2Fubuntu810-released.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://www.nonozone.net/wp-content/uploads/2011/09/dll-file.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Debian安装LNMP指南及多站点配置</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="WordPress自动摘要插件wp-utf8-excerpt" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fwordpress-plugins-wp-utf8-excerpt.html&from=http%3A%2F%2Fwww.nonozone.net%2Fubuntu810-released.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://www.nonozone.net/wp-content/uploads/2011/09/dll-file.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">WordPress自动摘要插件wp-utf8-excerpt</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Google拼音输入法2.0测试版发布" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fgoogle-pinyin-ime-20-beta-release.html&from=http%3A%2F%2Fwww.nonozone.net%2Fubuntu810-released.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://static.wumii.com/site_images/2011/09/01/26848299.gif" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Google拼音输入法2.0测试版发布</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ubuntu.org.cn/themes/ubuntu07/images/ubuntulogo.png" /> </p>
<p><a target="_blank" href="http://www.ubuntu.org.cn">Ubuntu</a>8.10版本正式发布了！</p>
<p>Ubuntu 是一个由 <a href="http://www.ubuntu.org.cn/community">社区</a> 开发的，适用于笔记本电脑、 <a href="http://www.ubuntu.org.cn/products/whatisubuntu/desktopedition">桌面电脑</a> 和 <a href="http://www.ubuntu.org.cn/products/whatisubuntu/serveredition"><u>服务器</u></a>。 无论您是在家庭、学校还是工作时使用，Ubuntu 都包含了您所需的所有程序：无论是文字处理和电子邮件，还是 Web 服务和编程工具。</p>
<p>大家可以到<a target="_blank" href="http://www.ubuntu.org.cn/getubuntu/download">这里下载</a>。我也在第一时间下载好镜像用wubi安装在笔记本上，可惜不知道为什么一直不能上网，貌似这个问题在ubuntu中文论坛上反映还挺多的。我是在安装完毕时重启的时候，进入一个黑屏然后一个光标一直闪一直闪就不动了，后来按了一下电源键才继续关机重启。</p>
<p>还有就是提醒一下，下载的时候最好选择BT下载，一是因为现在新版本刚刚发布，下载的人很多，服务器负载不够，另一方面是由于下载人多，BT种子其实很多，很快就可以让你满速，比HTTP下载速度快多了！</p>
<p>唉，第一时间就不能体验ubuntu新版本的特点了，过几天再试试吧。</p>
<br /><g:plusone size="" href="http%3A%2F%2Fwww.nonozone.net%2Fubuntu810-released.html"></g:plusone><table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Ubuntu8.10不能上网解决方法" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fthe-solution-of-ubuntu810-can-not-connection-internet.html&from=http%3A%2F%2Fwww.nonozone.net%2Fubuntu810-released.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://www.nonozone.net/wp-content/uploads/2011/09/dll-file.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Ubuntu8.10不能上网解决方法</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="基于Debian的VPS搭建LAMP指南" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Flamp-vps-structures-based-on-debians-guide.html&from=http%3A%2F%2Fwww.nonozone.net%2Fubuntu810-released.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://www.nonozone.net/wp-content/uploads/2011/09/dll-file.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">基于Debian的VPS搭建LAMP指南</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Debian安装LNMP指南及多站点配置" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fdebian-installation-guide-and-multi-site-configuration-lnmp.html&from=http%3A%2F%2Fwww.nonozone.net%2Fubuntu810-released.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://www.nonozone.net/wp-content/uploads/2011/09/dll-file.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Debian安装LNMP指南及多站点配置</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="WordPress自动摘要插件wp-utf8-excerpt" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fwordpress-plugins-wp-utf8-excerpt.html&from=http%3A%2F%2Fwww.nonozone.net%2Fubuntu810-released.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://www.nonozone.net/wp-content/uploads/2011/09/dll-file.png" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">WordPress自动摘要插件wp-utf8-excerpt</font>
                    </a>
                </td>
                <td width="108" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Google拼音输入法2.0测试版发布" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.nonozone.net%2Fgoogle-pinyin-ime-20-beta-release.html&from=http%3A%2F%2Fwww.nonozone.net%2Fubuntu810-released.html">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 102px !important; height: 102px !important;" src="http://static.wumii.com/site_images/2011/09/01/26848299.gif" width="102px" height="102px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 108px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Google拼音输入法2.0测试版发布</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.nonozone.net/ubuntu810-released.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

