<?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>海盗船长 &#187; Ubuntu</title>
	<atom:link href="http://www.1986x.net/archives/tag/ubuntu/feed" rel="self" type="application/rss+xml" />
	<link>http://www.1986x.net</link>
	<description>博客开始运行在Debian+apache 上</description>
	<lastBuildDate>Fri, 30 Jul 2010 04:12:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Ubuntu系统网络应用服务器Apache配置基础</title>
		<link>http://www.1986x.net/archives/2511.html</link>
		<comments>http://www.1986x.net/archives/2511.html#comments</comments>
		<pubDate>Wed, 31 Mar 2010 17:18:43 +0000</pubDate>
		<dc:creator>海盗船长</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[apache2ctl]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.1986x.net/?p=2511</guid>
		<description><![CDATA[官方发布的 Apache 的主配置文件是 httpd.conf, 服务器还会读取一个包含 MIME 文件类型的文件，其文件名由 TypesConfig 指令确定，默认值是mime.types 。 Ubuntu/Debian 下的 Apache 的主配置文件是 /etc/apache2/apache2.conf, 包含 MIME 文件类型的文件是 /etc/mime.types 。 此外，为了按逻辑分割配置，还可以用 Include 指令和通配符附加许多其他配置文件。Ubuntu 下附加了如下的配置文件： # 包含动态模块的配置: Include /etc/apache2/mods-enabled/*.load Include /etc/apache2/mods-enabled/*.conf # 包含用户自己的配置: Include /etc/apache2/httpd.conf # 包含端口监听的配置: Include /etc/apache2/ports.conf # 包含一般性的配置语句片断: Include /etc/apache2/conf.d/[^.#]* …… # 包含虚拟主机的配置指令: Include /etc/apache2/sites-enabled/[^.#]* 配置文件的语法 *每一行包含一个指令，在行尾使用反斜杠”\”可以表示续行 *配置文件中的指令不区分大小写，但是指令的参数 (argument) 通常区分大小写 *以 ”#” 开头的行被视为注解并在读取时被忽略。注解不能出现在指令的后边 [...]]]></description>
			<content:encoded><![CDATA[<p>官方发布的 Apache 的主配置文件是 httpd.conf, 服务器还会读取一个包含 MIME 文件类型的文件，其文件名由 TypesConfig 指令确定，默认值是mime.types 。</p>
<p>Ubuntu/Debian 下的 Apache 的主配置文件是 /etc/apache2/apache2.conf, 包含 MIME 文件类型的文件是 /etc/mime.types 。</p>
<p>此外，为了按逻辑分割配置，还可以用 Include 指令和通配符附加许多其他配置文件。Ubuntu 下附加了如下的配置文件：<span id="more-2511"></span></p>
<p># 包含动态模块的配置:<br />
Include /etc/apache2/mods-enabled/*.load<br />
Include /etc/apache2/mods-enabled/*.conf</p>
<p># 包含用户自己的配置:<br />
Include /etc/apache2/httpd.conf</p>
<p># 包含端口监听的配置:<br />
Include /etc/apache2/ports.conf</p>
<p># 包含一般性的配置语句片断:<br />
Include /etc/apache2/conf.d/[^.#]*</p>
<p>……</p>
<p># 包含虚拟主机的配置指令:<br />
Include /etc/apache2/sites-enabled/[^.#]*</p>
<p>配置文件的语法</p>
<p>*每一行包含一个指令，在行尾使用反斜杠”\”可以表示续行<br />
*配置文件中的指令不区分大小写，但是指令的参数 (argument) 通常区分大小写<br />
*以 ”#” 开头的行被视为注解并在读取时被忽略。注解不能出现在指令的后边<br />
*空白行和指令前的空白字符将在读取时被忽略，因此可以采用缩进以保持配置层次的清晰</p>
<p>无论是主配置文件还是用 Include 语句包含的配置文件，都应该遵从 Apache 的配置语法。<br />
Apache 的模块</p>
<p>Apache 是模块化的服务器，它有两种编译方式：</p>
<p>*静态编译：将核心模块和所需要的模块一次性编译<br />
o<br />
优点：运行速度快<br />
o<br />
缺点：要增加或删除模块必须重新编译整个 Apache<br />
*动态编译：只编译核心模块和 DSO （动态共享对象）模块 — mod_so<br />
o<br />
优点：各模块可以独立编译，并可随时用 LoadModule 指令加载，用于特定模块的指令可以用 指令包含起来，使之有条件地生效。<br />
o<br />
缺点：运行速度稍慢</p>
<p>Ubuntu 中的 Apache 是动态编译的。在 Ubuntu 下配置模块：</p>
<p>1.视需要修改 mods-available/ 目录下相关模块的配置文件<br />
2.使用 a2enmod 命令启用模块； 使用 a2dismod 命令停用模块</p>
<p>例如： 启用 rewrite 模块可以用如下命令：</p>
<p>sudo a2enmod rewrite</p>
<p>停用 cgi 模块可以用如下命令：</p>
<p>sudo a2dismod cgi</p>
<p>指令的作用域</p>
<p>从指令的作用域来划分，Apache 中有两类指令：</p>
<p>*普通指令：普通指令对整个服务器都有效<br />
*容器指令：可以放置在容器内对特定的访问资源实施额外的配置，它只对特定的访问资源有效</p>
<p>Apache 中常用的容器包括：</p>
<p>*和 : 用于对指定的目录实施额外的配置<br />
*和 : 用于对指定的文件实施额外的配置<br />
*和 : 用于对指定的 URL 实施额外的配置</p>
<p>*容器都是成对出现的，所有在容器中使用的配置指令都应该放置在 <> 和 内，如：</p>
<p>……</p>
<p>*以上所有带 “Match” 的容器指令与其相应的不带 “Match” 的容器指令功能相同，只是在描述资源时可以使用正则表达式<br />
*这些容器还可以进行嵌套，以进行更精细的配置</p>
<p>此外，Apache 还具备同时支持多个站点的能力，称为虚拟主机。放置在 容器中的指令仅对特定虚拟主机有效。<br />
虽然大多数指令可以包含在任意的容器中，但是也用特例。要查询一个指令可以被应用于哪些配置段中，可以在 Apache 手册中查看该指令的 作用域 项。<br />
基于目录的配置文件</p>
<p>Apache 除了使用主配置文件之外，还可以使用分布在整个网站目录树中的特殊文件来进行分散配置。这样的特殊配置文件称为基于目录的配置文件， 这些特殊的文件通常叫 .htaccess ，但是也可以用 AccessFileName 指令来改变它的名字。</p>
<p>显然，基于目录的配置文件 （.htaccess 文件）中指令的作用域是存放它的那个目录及其所有子目录。</p>
<p>*.htaccess 文件的语法与主配置文件相同。放在 容器中的指令都可以出现在 .htaccess 文件中，具体能出现哪些指令由主配置文件中的 AllowOverride 指令来决定<br />
*由于客户对服务器的每次访问请求都会读取.htaccess文件，所以对这些文件的修改会立即生效，即无需使服务器加载配置文件或重新启动。</p>
<p>基本配置指令<br />
服务器标识指令</p>
<p>*ServerName : 服务器用于辨识自己的主机名和端口号<br />
*ServerAdmin : 服务器返回给客户端的错误信息中包含的管理员邮件地址<br />
*ServerSignature : 配置服务器生成页面的页脚(错误信息、mod_proxy的ftp目录列表、mod_info的输出)<br />
*ServerTokens : 控制了服务器回应给客户端的”Server:“应答头是否包含关于服务器操作系统类型和编译进的模块描述信息<br />
*UseCanonicalName : 决定 Apache 如何构造 URL 中 SERVER_NAME 和 SERVER_PORT 的指令。</p>
<p>文件定位指令</p>
<p>*DocumentRoot : 组成网络上可见的主文档树的根目录<br />
*ErrorLog : 存放错误日志的位置<br />
*LockFile : 当 AcceptMutex 指令的值是 fcntl 或 flock 的时候，Apache 使用的锁文件的位置<br />
*PidFile : 设置服务器用于记录父进程(监控进程) PID 的文件。<br />
*ScoreBoardFile : 存储子进程协调数据(coordination data)的文件（Apache 使用 scoreboard 在父进程和子进程之间进行通信）<br />
*ServerRoot : 指定服务器安装的基础目录</p>
<p>收紧 Ubuntu 下的 Apache 配置</p>
<p>对于实际的产品服务器，应该首先收紧 Apache 的配置。为此可以在 /etc/apache2/conf.d/ 目录下创建一个新的 local_configs.conf 文件添加如下的配置：</p>
<p>/etc/apache2/conf.d/local_configs.conf</p>
<p># 设置 ServerName<br />
ServerName www.jamond.net<br />
# 对 / 进行保护</p>
<p># Forbid default access to file system locations<br />
Order Deny,Allow<br />
Deny from all<br />
# prevent use of .htaccess files in all directories<br />
# apart from those specifically enabled.<br />
AllowOverride None</p>
<p># 限制显示服务器的可用信息<br />
ServerSignature Off<br />
ServerTokens production</p>
<p>Apache 的管理工具</p>
<p>Apache 套件中包含了许多可执行程序，其中一部分是管理工具，本节仅介绍 apache2ctl。<br />
apache2ctl</p>
<p>apache2ctl 是 Apache2 服务器的前端程序。他可以帮助管理员控制 Apache2 后台守护进程的功能。</p>
<p>apache2ctl脚本有两种操作模式：</p>
<p>*作为简单的 apache2 的前端程序，设置所有必要的环境变量，然后启动 apache2，并传递所有的命令行参数。<br />
*作为 SysV 初始化脚本，接受简单的一个单词的参数，如：start, restart, stop ，并把他们翻译为适当的信号发送给 apache2 。</p>
<p>*在 Ubuntu 的 Apache2 启动脚本 /etc/init.d/apache2 中，就是调用 apache2ctl 实现控制的。</p>
<p>apache2ctl 有两种语法格式：</p>
<p>apache2ctl -参数<br />
apache2ctl 动作选项</p>
<p>使用 apache2ctl 的命令参数</p>
<p>*显示 apache 的版本</p>
<p>apache2ctl -v</p>
<p>*显示 apache 的版本和编译参数</p>
<p>apache2ctl -V</p>
<p>*输出一个可用的命令行选项的简要说明</p>
<p>apache2ctl -h</p>
<p>*输出一个静态编译在服务器中的模块的列表。它不会列出使用 LoadModule 指令动态加载的模块</p>
<p>apache2ctl -l</p>
<p>*输出一个指令的列表，并包含了各指令的有效参数和使用区域</p>
<p>apache2ctl -L</p>
<p>*仅对配置文件执行语法检查。。如果还指定了”-D DUMP_VHOSTS”，则会显示虚拟主机配置的详细信息</p>
<p>apache2ctl -t</p>
<p>*显示从配置文件中读取并解析的设置结果 (目前仅显示虚拟主机的设置)</p>
<p>apache2ctl -S</p>
<p>使用 apache2ctl 的动作选项</p>
<p>*启动 apache2 后台守护进程。如果已经启动，则产生一个错误。</p>
<p>apache2ctl start</p>
<p>*停止 apache2 后台守护进程。</p>
<p>apache2ctl stop</p>
<p>*重新启动 apache2 后台守护进程。如果守护进程尚未运行，则启动它。在重新启动守护进程之前，此命令会使用 configtest 自动检查配置文件，以确保 Apache 不会死掉。</p>
<p>apache2ctl restart</p>
<p>*显示一个简要的状态报告。</p>
<p>apache2ctl status</p>
<p>*优雅地重新启动 apache2 后台守护进程。如果守护进程尚未启动，则启动它。它和标准重新启动的不同之处在于：不会中断当前已经打开的连接，也不会立即关闭日志。这意味着，如果在日志滚动脚本使用它，则在处理日志之前必须加入一个实实在在的延迟，以确保老的日志文件在被处理前已经关闭。在重新启动守护进程之前，此命令会使用 configtest 自动检查配置文件，以确保 apache 不会死掉。</p>
<p>apache2ctl graceful</p>
<p>*优雅地停止 apache2 后台守护进程。它和标准停止的不同之处在于：不会中断当前已经打开的连接，也不会立即关闭日志。</p>
<p>apache2ctl graceful-stop</p>
<p>*执行一次配置文件语法检查。它解析配置文件，并报告 Syntax Ok 或者是特定的语法错误详细信息。</p>
<p>apache2ctl configtest</p>
<h3  class="related_post_title">相关文章</h3><ul class="related_post"><li>2010年03月16日 -- <a href="http://www.1986x.net/archives/2451.html" title="第一台linux服务器  ">第一台linux服务器  </a></li><li>2010年03月31日 -- <a href="http://www.1986x.net/archives/2507.html" title="Ubuntu下Postgresql-8.4安装及配置">Ubuntu下Postgresql-8.4安装及配置</a></li><li>2010年03月22日 -- <a href="http://www.1986x.net/archives/2471.html" title="ubuntu环境下python+apache2+mod_python部署django">ubuntu环境下python+apache2+mod_python部署django</a></li><li>2010年03月22日 -- <a href="http://www.1986x.net/archives/2468.html" title="CentOS Apache配置详解">CentOS Apache配置详解</a></li><li>2010年02月25日 -- <a href="http://www.1986x.net/archives/2393.html" title="开源Web服务器Apache，15岁生日快乐！">开源Web服务器Apache，15岁生日快乐！</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.1986x.net/archives/2511.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu下Postgresql-8.4安装及配置</title>
		<link>http://www.1986x.net/archives/2507.html</link>
		<comments>http://www.1986x.net/archives/2507.html#comments</comments>
		<pubDate>Tue, 30 Mar 2010 18:03:32 +0000</pubDate>
		<dc:creator>海盗船长</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[postgresql]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.1986x.net/?p=2507</guid>
		<description><![CDATA[在Ubuntu下安装Postgresql和pgAdmin3 sudo apt-get install postgresql-8.4 postgresql-client-8.4 postgresql-contrib-8.4 sudo apt-get install pgadmin3 以上指令安装客户端和服务端，一些额外的工具、pgAdmin3都可以工作在数据库下工作。 配置Postgresql 现在我们需要重置“postgres”用户的密码。 sudo su postgres -c psql template1 template1=# ALTER USER postgres WITH PASSWORD ‘xxxx’; template1=# \q 这样就修改了数据库中的密码，现在我们也需要在unix用户“postgres”这么作。 sudo passwd -d postgres sudo su postgres -c passwd 然后输入跟之前一样的密码。 现在，我们就可以在数据库服务器上使用psql或者pgAdmin操作数据库了。 但是若想在pgAdmin中能够更好的记录日志和监视的华，在启动pgAdmin前需要建立PostgreSQL admin pack。打开命令行。 首先，我们需要编辑postgresql.conf： sudo gedit /etc/postgresql/8.4/main/postgresql.conf 现在，我们需要修改“连接和权限”两行。 改变行： #listen_addresses = ‘localhost’ 修改为： listen_addresses [...]]]></description>
			<content:encoded><![CDATA[<p>在Ubuntu下安装Postgresql和pgAdmin3</p>
<p>sudo apt-get install postgresql-8.4 postgresql-client-8.4 postgresql-contrib-8.4</p>
<p>sudo apt-get install pgadmin3</p>
<p>以上指令安装客户端和服务端，一些额外的工具、pgAdmin3都可以工作在数据库下工作。<span id="more-2507"></span></p>
<p>配置Postgresql</p>
<p>现在我们需要重置“postgres”用户的密码。</p>
<p>sudo su postgres -c psql template1<br />
template1=# ALTER USER postgres WITH PASSWORD ‘xxxx’;<br />
template1=# \q </p>
<p>这样就修改了数据库中的密码，现在我们也需要在unix用户“postgres”这么作。</p>
<p>sudo passwd -d postgres<br />
sudo su postgres -c passwd </p>
<p>然后输入跟之前一样的密码。</p>
<p>现在，我们就可以在数据库服务器上使用psql或者pgAdmin操作数据库了。</p>
<p>但是若想在pgAdmin中能够更好的记录日志和监视的华，在启动pgAdmin前需要建立PostgreSQL admin pack。打开命令行。</p>
<p>首先，我们需要编辑postgresql.conf：</p>
<p>sudo gedit /etc/postgresql/8.4/main/postgresql.conf<br />
现在，我们需要修改“连接和权限”两行。</p>
<p>改变行：<br />
#listen_addresses = ‘localhost’<br />
修改为：<br />
listen_addresses = ‘*’<br />
和行：<br />
#password_encryption = on<br />
修改为：<br />
password_encryption = on<br />
保存并关闭gedit。</p>
<p>最后一步，我们必须设置谁才可以操作数据服务器，这一切都是在pg_hba.conf中完成的。</p>
<p>sudo gedit /etc/postgresql/8.4/main/pg_hba.conf<br />
把以下内容复制到pg_hba.conf底部：</p>
<p># DO NOT DISABLE!<br />
# If you change this first entry you will need to make sure that the<br />
# database<br />
# super user can access the database using some other method.<br />
# Noninteractive<br />
# access to all databases is required during automatic maintenance<br />
# (autovacuum, daily cronjob, replication, and similar tasks).<br />
#<br />
# Database administrative login by UNIX sockets<br />
local all postgres ident sameuser<br />
# TYPE DATABASE USER CIDR-ADDRESS METHOD<br />
# “local” is for Unix domain socket connections only<br />
local all all md5<br />
# IPv4 local connections:<br />
host all all 127.0.0.1/32 md5<br />
# IPv6 local connections:<br />
host all all ::1/128 md5<br />
# Connections for all PCs on the subnet<br />
#<br />
# TYPE DATABASE USER IP-ADDRESS IP-MASK METHOD<br />
host all all [ip address] [subnet mask] md5<br />
在最后一行中，添加你的子网掩码(如255.255.255.0)和机器IP地址(如138.250.192.115). 如果要使用一个IP地址范围，只需要把最后一个数字用0替换，那么所有这个网段的IP都可以使用了。</p>
<p>重启服务器即可。</p>
<p>sudo /etc/init.d/postgresql-8.4 restart<br />
现在可以在Ubuntu下使用PostgreSQL了。</p>
<p>使用命令行创建数据库</p>
<p>sudo -u postgres createuser -D -A -P mynewuser<br />
sudo -u postgres createdb -O mynewuser mydatabase</p>
<h3  class="related_post_title">相关文章</h3><ul class="related_post"><li>2010年04月1日 -- <a href="http://www.1986x.net/archives/2511.html" title="Ubuntu系统网络应用服务器Apache配置基础">Ubuntu系统网络应用服务器Apache配置基础</a></li><li>2010年03月22日 -- <a href="http://www.1986x.net/archives/2471.html" title="ubuntu环境下python+apache2+mod_python部署django">ubuntu环境下python+apache2+mod_python部署django</a></li><li>2010年03月16日 -- <a href="http://www.1986x.net/archives/2451.html" title="第一台linux服务器  ">第一台linux服务器  </a></li><li>2009年11月1日 -- <a href="http://www.1986x.net/archives/2140.html" title="什么是ubuntu tweak,ubuntu tweak安装教程">什么是ubuntu tweak,ubuntu tweak安装教程</a></li><li>2009年11月1日 -- <a href="http://www.1986x.net/archives/2119.html" title="Ubuntu 9.10 Ubuntu 官方正式发布 ">Ubuntu 9.10 Ubuntu 官方正式发布 </a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.1986x.net/archives/2507.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ubuntu环境下python+apache2+mod_python部署django</title>
		<link>http://www.1986x.net/archives/2471.html</link>
		<comments>http://www.1986x.net/archives/2471.html#comments</comments>
		<pubDate>Mon, 22 Mar 2010 12:01:57 +0000</pubDate>
		<dc:creator>海盗船长</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[mod_python]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.1986x.net/?p=2471</guid>
		<description><![CDATA[刚买了vps，之前整的django只是用runserver，今天打算整一下ubuntu下的django环境，主要是django安装基本上都是集成。 一、Django安装 在django网站：http://www.djangoproject.com/download/ 下载django程序在任何你可以操作的地方放着 wget -c http://www.djangoproject.com/download/1.1.1/tarball/（找个最新版的自己下吧！） 解压，安装 1 2 3 tar xzvf Django-1.1.1.tar.gz cd Django-1.1.1 sudo python setup.py install django自己安转到python的目录下 网上有人测试是否安转好，我觉得不错，借用下 在Shell命令行中输入 python (回车) 1 &#62;&#62;import django (回车) 只要不报错就证明ok了，挺好的方法，这个证明django实际上就是python的一个包，Django实际文件存在于 /usr/lib/python2.5/site-packages/django。 接着我们开始创建项目，暂时取名djangotest，缺省apache2的文档根目录是/var/www， 1 cd /var/www Django安装成功后，会自动在/usr/bin中建立一个django-admin.py，这个文件很重要，用来生成工程文件 1 python /usr/bin/django-admin.py startproject webanalytics 好了 1 2 cd djangotest ls 应该能看到这些文件，那就成功了 1 2 3 4 __inti__.py manage.py settings.py [...]]]></description>
			<content:encoded><![CDATA[<p>刚买了vps，之前整的django只是用runserver，今天打算整一下ubuntu下的django环境，主要是django安装基本上都是集成。</p>
<p><strong>一、Django安装</strong></p>
<p>在django网站：<a href="http://www.djangoproject.com/download/">http://www.djangoproject.com/download/</a> 下载django程序在任何你可以操作的地方放着</p>
<p>wget -c <a href="http://www.djangoproject.com/download/1.1.1/tarball/">http://www.djangoproject.com/download/1.1.1/tarball/</a>（找个最新版的自己下吧！）</p>
<p>解压，安装</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">tar</span> xzvf Django-1.1.1.tar.gz
<span style="color: #7a0874; font-weight: bold;">cd</span> Django-1.1.1
<span style="color: #c20cb9; font-weight: bold;">sudo</span> python setup.py <span style="color: #c20cb9; font-weight: bold;">install</span></pre></td></tr></table></div>

<p>django自己安转到python的目录下</p>
<p>网上有人测试是否安转好，我觉得不错，借用下</p>
<p>在Shell命令行中输入</p>
<p>python (回车)</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&gt;&gt;</span>import django</pre></td></tr></table></div>

<p>(回车)</p>
<p>只要不报错就证明ok了，挺好的方法，这个证明django实际上就是python的一个包，Django实际文件存在于<br />
/usr/lib/python2.5/site-packages/django。</p>
<p>接着我们开始创建项目，暂时取名djangotest，缺省apache2的文档根目录是/var/www，</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>www</pre></td></tr></table></div>

<p>Django安装成功后，会自动在/usr/bin中建立一个django-admin.py，这个文件很重要，用来生成工程文件</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">python <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>django-admin.py startproject webanalytics</pre></td></tr></table></div>

<p>好了</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> djangotest
<span style="color: #c20cb9; font-weight: bold;">ls</span></pre></td></tr></table></div>

<p>应该能看到这些文件，那就成功了</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">__inti__.py
manage.py
settings.py
uls.py</pre></td></tr></table></div>

<p>到此处基本上一半成功了，接下来就apache的安装</p>
<p>有人说现在可以测试一下，</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> python manage.py runserver</pre></td></tr></table></div>

<p>基本上没有问题的话会有下面的信息</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">Validating models...
<span style="color: #000000;">0</span> errors found.
&nbsp;
Django version 0.96.3, using settings <span style="color: #ff0000;">'webanalytics.settings'</span>
Development server is running at http:<span style="color: #000000; font-weight: bold;">//</span>127.0.0.1:<span style="color: #000000;">8000</span><span style="color: #000000; font-weight: bold;">/</span>
Quit the server with CONTROL-C.</pre></td></tr></table></div>

<p>如果你有图形界面那你就试试，<a href="http://127.0.0.1:8000/">http://127.0.0.1:8000/</a> 应该会有出来一个django的页面，哈哈！如果你没有追求了，那现在就可以试着写django的代码。完全可以运行</p>
<p>但是我是在虚拟机上用的服务器版，那就没有办法了</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">apache mod_python安装
&nbsp;
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> apache2
&nbsp;
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> libapache2-mod-python2.5</pre></td></tr></table></div>

<p>（python的版本不同的话就修改最后边的版本号），现在基本上就支持到apache2.2 python2.5（ps 貌似mod_python已经属于apache，忘记了）</p>
<p>接下来就是这个配置</p>
<p>现在整整apache与django</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">vi</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apach2<span style="color: #000000; font-weight: bold;">/</span>site-available<span style="color: #000000; font-weight: bold;">/</span>default</pre></td></tr></table></div>

<p>加入这个代码</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">Directory <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>www;
SetHandler python-program
PythonPath <span style="color: #ff0000;">&quot;['/var/www'] + sys.path&quot;</span>
PythonHandler django.core.handlers.modpython
SetEnv DJANGO_SETTINGS_MODULE webanalytics.settings
PythonDebug On
<span style="color: #000000; font-weight: bold;">&amp;</span>lt;<span style="color: #000000; font-weight: bold;">/</span>Directory<span style="color: #000000; font-weight: bold;">&amp;</span>gt;</pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">a2ensite webanalytics  开启网站
a2enmod mod_python</pre></td></tr></table></div>

<p>保存，重启apache，</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>init.d<span style="color: #000000; font-weight: bold;">/</span>apache2 restart</pre></td></tr></table></div>

<p>打开浏览器看看，很兴奋的页面出来了<br />
<div id="attachment_2485" class="wp-caption alignnone" style="width: 310px"><a href="http://www.1986x.net/wp-content/uploads/2010/03/ubuntu-django.png" rel="shadowbox[post-2471];player=img;"><img src="http://www.1986x.net/wp-content/uploads/2010/03/ubuntu-django-300x169.png" alt="python+apache2+mod_python部署django" title="ubuntu-django" width="300" height="169" class="size-medium wp-image-2485" /></a><p class="wp-caption-text">python+apache2+mod_python</p></div><br />
测试网址：http://www.chinawebanalytics.net/</p>
<h3  class="related_post_title">相关文章</h3><ul class="related_post"><li>2010年03月29日 -- <a href="http://www.1986x.net/archives/2502.html" title="Django 结构及处理流程分析">Django 结构及处理流程分析</a></li><li>2010年07月30日 -- <a href="http://www.1986x.net/archives/2626.html" title="一个不错的python学习网站">一个不错的python学习网站</a></li><li>2010年04月6日 -- <a href="http://www.1986x.net/archives/2519.html" title="用Python操作Mysql">用Python操作Mysql</a></li><li>2010年04月1日 -- <a href="http://www.1986x.net/archives/2511.html" title="Ubuntu系统网络应用服务器Apache配置基础">Ubuntu系统网络应用服务器Apache配置基础</a></li><li>2010年03月31日 -- <a href="http://www.1986x.net/archives/2507.html" title="Ubuntu下Postgresql-8.4安装及配置">Ubuntu下Postgresql-8.4安装及配置</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.1986x.net/archives/2471.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>第一台linux服务器</title>
		<link>http://www.1986x.net/archives/2451.html</link>
		<comments>http://www.1986x.net/archives/2451.html#comments</comments>
		<pubDate>Tue, 16 Mar 2010 15:15:10 +0000</pubDate>
		<dc:creator>海盗船长</dc:creator>
				<category><![CDATA[海盗日志]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.1986x.net/?p=2451</guid>
		<description><![CDATA[好高兴啊  好高兴  自己配好一台linux服务器啦     哈哈 哇哈哈哈哈哈哈 linux(ubuntu8.04)+apache2+mysql5+php5 一台vps服务器   一个月68块    支持月付哦   忽忽&#8230;&#8230; 相关文章2010年04月1日 -- Ubuntu系统网络应用服务器Apache配置基础2009年11月17日 -- 天亮了，睡觉去2009年07月2日 -- FastCGI 不完全高级指南2010年04月6日 -- 用Python操作Mysql2010年03月31日 -- Ubuntu下Postgresql-8.4安装及配置]]></description>
			<content:encoded><![CDATA[<p>好高兴啊  好高兴  自己配好一台linux服务器啦     哈哈</p>
<p>哇哈哈哈哈哈哈</p>
<p>linux(ubuntu8.04)+apache2+mysql5+php5</p>
<p>一台vps服务器   一个月68块    支持月付哦   忽忽&#8230;&#8230;</p>
<p><a href="http://www.1986x.net/wp-content/uploads/2010/03/074.gif" rel="shadowbox[post-2451];player=img;"><img class="alignnone size-full wp-image-2453" title="074" src="http://www.1986x.net/wp-content/uploads/2010/03/074.gif" alt="" width="72" height="72" /></a></p>
<h3  class="related_post_title">相关文章</h3><ul class="related_post"><li>2010年04月1日 -- <a href="http://www.1986x.net/archives/2511.html" title="Ubuntu系统网络应用服务器Apache配置基础">Ubuntu系统网络应用服务器Apache配置基础</a></li><li>2009年11月17日 -- <a href="http://www.1986x.net/archives/2207.html" title="天亮了，睡觉去">天亮了，睡觉去</a></li><li>2009年07月2日 -- <a href="http://www.1986x.net/archives/1196.html" title="FastCGI 不完全高级指南">FastCGI 不完全高级指南</a></li><li>2010年04月6日 -- <a href="http://www.1986x.net/archives/2519.html" title="用Python操作Mysql">用Python操作Mysql</a></li><li>2010年03月31日 -- <a href="http://www.1986x.net/archives/2507.html" title="Ubuntu下Postgresql-8.4安装及配置">Ubuntu下Postgresql-8.4安装及配置</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.1986x.net/archives/2451.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>什么是ubuntu tweak,ubuntu tweak安装教程</title>
		<link>http://www.1986x.net/archives/2140.html</link>
		<comments>http://www.1986x.net/archives/2140.html#comments</comments>
		<pubDate>Sun, 01 Nov 2009 17:40:14 +0000</pubDate>
		<dc:creator>海盗船长</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ubuntu Tweak]]></category>

		<guid isPermaLink="false">http://www.1986x.net/?p=2140</guid>
		<description><![CDATA[什么是Ubuntu Tweak？ Ubuntu Tweak是一款专门为Ubuntu（GNOME桌面）制作的调校工具，本文介绍ubuntu tweak安装方法，以及什么ubuntu tweak 9.10]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.1986x.net/archives/2112.html">什么是Ubuntu Tweak</a>？ Ubuntu Tweak是一款专门为Ubuntu（GNOME桌面）制作的调校工具。简单的说，它可以帮你调整以及个性化你的Ubuntu，一些调整，不一定都一定要在指令环境下才能更改，有了它，可以让你更方便的增加一些3D的效果，可以说是ubuntu版本下的「优化大师」工具。因为Ubuntu它的特色就是简单、易上手。不过也由于他的简单、易上手的设计，喜欢乱玩、乱设定的初学者可能一下子不知道从哪边去作调整。所以一些人就创造这个<strong>Ubuntu Tweak</strong>工具主要是给在新手级的一般使用者使用的。它可以设定很多并不能在系统选单中设定的隐藏选项，以满足客制化的乐趣。即使是新手，也可以方便地通过它来进行适合自己的系统调整。<br style="line-height: 22px; padding: 0px; margin: 0px;" /><br style="line-height: 22px; padding: 0px; margin: 0px;" />如果你想调整开机自动启动的程式、检视系统资讯、安装更多实用的免费软体、新增桌面图示或隐藏磁碟机图示.以及各种视觉化的视窗设定与电源管理等等系统安全设定，都可透过Ubuntu Tweak来快速搞定。现在用简单的例子来说明，如果你想把「文件」以图示的方式放在桌面，就只要用<strong>Ubuntu Tweak</strong>这个软体里打个勾，它就会把这个文件放到桌面上了。<br style="line-height: 22px; padding: 0px; margin: 0px;" /><br style="line-height: 22px; padding: 0px; margin: 0px;" /><br style="line-height: 22px; padding: 0px; margin: 0px;" />如果有兴趣的朋友可以往下看<strong>如何安装Ubuntu Tweak</strong><br style="line-height: 22px; padding: 0px; margin: 0px;" />你可以在网路上进行下载<br style="line-height: 22px; padding: 0px; margin: 0px;" />ubuntu-tweak.com/<br style="line-height: 22px; padding: 0px; margin: 0px;" /><img class="alignnone" title="tweak1" src="http://p7.images22.51img1.com/6000/yuze123/716c6f7e574ddd3949c9a9fd80732dad.jpg" alt="" width="480" height="300" /><br style="line-height: 22px; padding: 0px; margin: 0px;" />按下Download选择你想下载形式<br style="line-height: 22px; padding: 0px; margin: 0px;" /><a style="text-decoration: none; font-size: 1em; font-family: Arial, Helvetica, sans-serif; color: #556c88; line-height: 22px; padding: 0px; margin: 0px;" href="http://img.bimg.126.net/photo/DaECQKMh1Xd12Rt6SJv5qw==/2553540988719666856.jpg" rel="shadowbox[post-2140];player=img;" target="_blank"><img style="line-height: 22px; max-width: 100%; padding: 0px; margin: 0px; border: initial none initial;" title="Install Ubuntu Tweak 安裝Ubuntu Tweak - yubis.hk - yubis.hk的博客" src="http://pa.images22.51img1.com/6000/yuze123/a525403a74f21f8941c120c2bccab83d.jpg" alt="Install Ubuntu Tweak 安裝Ubuntu Tweak" width="480" height="300" /></a><br style="line-height: 22px; padding: 0px; margin: 0px;" />选择好就按ok<br style="line-height: 22px; padding: 0px; margin: 0px;" /><a style="text-decoration: none; font-size: 1em; font-family: Arial, Helvetica, sans-serif; color: #556c88; line-height: 22px; padding: 0px; margin: 0px;" href="http://p5.images22.51img1.com/6000/yuze123/5184ec783e980192caab022ae95d4717.jpg" rel="shadowbox[post-2140];player=img;" target="_blank"><img style="line-height: 22px; max-width: 100%; padding: 0px; margin: 0px; border: initial none initial;" title="Install Ubuntu Tweak 安裝Ubuntu Tweak " src="http://p5.images22.51img1.com/6000/yuze123/5184ec783e980192caab022ae95d4717.jpg" alt="Install Ubuntu Tweak 安裝Ubuntu Tweak" width="480" height="300" /></a><br style="line-height: 22px; padding: 0px; margin: 0px;" />下载完成就进行安装<br style="line-height: 22px; padding: 0px; margin: 0px;" /><a style="text-decoration: none; font-size: 1em; font-family: Arial, Helvetica, sans-serif; color: #556c88; line-height: 22px; padding: 0px; margin: 0px;" href="http://p2.images22.51img1.com/6000/yuze123/2aa0bc11bbabcb878a7b8848e9851795.jpg" rel="shadowbox[post-2140];player=img;" target="_blank"><img style="line-height: 22px; max-width: 100%; padding: 0px; margin: 0px; border: initial none initial;" title="Install Ubuntu Tweak 安裝Ubuntu Tweak - yubis.hk - yubis.hk的博客" src="http://p2.images22.51img1.com/6000/yuze123/2aa0bc11bbabcb878a7b8848e9851795.jpg" alt="Install Ubuntu Tweak 安裝Ubuntu Tweak " width="480" height="300" /></a><br style="line-height: 22px; padding: 0px; margin: 0px;" />打开软件按下Install Package<br style="line-height: 22px; padding: 0px; margin: 0px;" /><a style="text-decoration: none; font-size: 1em; font-family: Arial, Helvetica, sans-serif; color: #556c88; line-height: 22px; padding: 0px; margin: 0px;" href="http://img.bimg.126.net/photo/ANi8pnyCeMXNYexar7gIVg==/2553540988719666880.jpg" rel="shadowbox[post-2140];player=img;" target="_blank"><img style="line-height: 22px; max-width: 100%; padding: 0px; margin: 0px; border: initial none initial;" title="Install Ubuntu Tweak 安裝Ubuntu Tweak - yubis.hk - yubis.hk的博客" src="http://img.bimg.126.net/photo/ANi8pnyCeMXNYexar7gIVg==/2553540988719666880.jpg" alt="Install Ubuntu Tweak 安裝Ubuntu Tweak - yubis.hk - yubis.hk的博客" /></a><br style="line-height: 22px; padding: 0px; margin: 0px;" />软件安裝中<br style="line-height: 22px; padding: 0px; margin: 0px;" /><img style="line-height: 22px; max-width: 100%; padding: 0px; margin: 0px; border: initial none initial;" title="Install Ubuntu Tweak 安裝Ubuntu Tweak" src="http://p7.images22.51img1.com/6000/yuze123/700aceaaebe437eba3cd760a2ee59093.jpg" alt="Install Ubuntu Tweak 安裝Ubuntu Tweak " width="480" height="300" /><br style="line-height: 22px; padding: 0px; margin: 0px;" />安裝完成<br style="line-height: 22px; padding: 0px; margin: 0px;" /><img style="line-height: 22px; max-width: 100%; padding: 0px; margin: 0px; border: initial none initial;" title="Install Ubuntu Tweak 安裝Ubuntu Tweak " src="http://p5.images22.51img1.com/6000/yuze123/57c2bca82af9c2d31b0edd1d14e8fd67.jpg" alt="Install Ubuntu Tweak 安裝Ubuntu Tweak" width="480" height="300" /><br style="line-height: 22px; padding: 0px; margin: 0px;" />在Application中的System tools选Ubuntu Tweak来启动<br style="line-height: 22px; padding: 0px; margin: 0px;" /><img style="line-height: 22px; max-width: 100%; padding: 0px; margin: 0px; border: initial none initial;" title="Install Ubuntu Tweak 安裝Ubuntu Tweak" src="http://pb.images22.51img1.com/6000/yuze123/b2b9e9ba5d8b466d132387225745e353.jpg" alt="Install Ubuntu Tweak 安裝Ubuntu Tweak" width="480" height="360" /><br style="line-height: 22px; padding: 0px; margin: 0px;" />成功开啟Ubuntu Tweak<br style="line-height: 22px; padding: 0px; margin: 0px;" /><img style="line-height: 22px; max-width: 100%; padding: 0px; margin: 0px; border: initial none initial;" title="Install Ubuntu Tweak 安裝Ubuntu Tweak - yubis.hk - yubis.hk的博客" src="http://p8.images22.51img1.com/6000/yuze123/873e94da0e50e965200dac99dcffe064.jpg" alt="Install Ubuntu Tweak 安裝Ubuntu Tweak" width="480" height="300" /></p>
<h3  class="related_post_title">相关文章</h3><ul class="related_post"><li>2009年10月31日 -- <a href="http://www.1986x.net/archives/2112.html" title="Ubuntu Tweak 0.4.9.2发布">Ubuntu Tweak 0.4.9.2发布</a></li><li>2010年04月1日 -- <a href="http://www.1986x.net/archives/2511.html" title="Ubuntu系统网络应用服务器Apache配置基础">Ubuntu系统网络应用服务器Apache配置基础</a></li><li>2010年03月31日 -- <a href="http://www.1986x.net/archives/2507.html" title="Ubuntu下Postgresql-8.4安装及配置">Ubuntu下Postgresql-8.4安装及配置</a></li><li>2010年03月22日 -- <a href="http://www.1986x.net/archives/2471.html" title="ubuntu环境下python+apache2+mod_python部署django">ubuntu环境下python+apache2+mod_python部署django</a></li><li>2010年03月16日 -- <a href="http://www.1986x.net/archives/2451.html" title="第一台linux服务器  ">第一台linux服务器  </a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.1986x.net/archives/2140.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9.10 Ubuntu 官方正式发布</title>
		<link>http://www.1986x.net/archives/2119.html</link>
		<comments>http://www.1986x.net/archives/2119.html#comments</comments>
		<pubDate>Sun, 01 Nov 2009 16:52:19 +0000</pubDate>
		<dc:creator>海盗船长</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[ubuntu9.10]]></category>

		<guid isPermaLink="false">http://www.1986x.net/?p=2119</guid>
		<description><![CDATA[Ubuntu 9.10 正式版的ISO镜像文件出来了，这里贴出来供大家下载，下载速度还不错，感觉下载ubuntu9.10来玩玩啊    哈]]></description>
			<content:encoded><![CDATA[<p style="margin-top: 10px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font: normal normal normal 14px/160% 宋体, arial; padding: 0px;">经过了漫长的等待，Ubuntu 官方在刚刚已经正式发布了被受期待的 <a href="http://www.1986x.net/archives/1284.html">Ubuntu 9.10</a> ( Karmic Koala ) !其实在这之前就可以在镜像服务器下载 <strong>Ubuntu 9.10 ( Karmic Koala ) 正式版</strong>的ISO镜像文件了，为了不影响 Ubuntu 9.10 正式版的ISO文件向各地镜像服务器分发的进度，OwnLinux 并没有公布<strong>下载</strong>链接。目前官方已经正式开放了 Ubuntu 9.10 正式版的ISO文件下载服务。 今天从世界各地涌入的巨大下载量也是对各个官方服务器一次严峻的考验。</p>
<p style="margin-top: 10px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font: normal normal normal 14px/160% 宋体, arial; padding: 0px;">官方的下载界面已经从 Ubuntu 9.10 RC 更改为 <strong>Ubuntu 9.10正式版</strong>了:</p>
<p style="margin-top: 10px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font: normal normal normal 14px/160% 宋体, arial; padding: 0px;">
<p><img style="padding: 0px; margin: 0px; border: 1px solid #000000;" src="http://www.it.com.cn/edu/softhotnews/2009/10/30/09/091030_edu_Ubuntu910001.png" alt="" width="550" height="470" /></p>
<p style="margin-top: 10px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font: normal normal normal 14px/160% 宋体, arial; padding: 0px;">
<p style="margin-top: 10px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font: normal normal normal 14px/160% 宋体, arial; padding: 0px;"><strong> Ubuntu 9.10 ( Karmic Koala ) 正式版的下载地址:</strong></p>
<p style="margin-top: 10px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font: normal normal normal 14px/160% 宋体, arial; padding: 0px;"><a style="color: #444444; text-decoration: none; padding: 0px; margin: 0px;" href="http://cn.releases.ubuntu.com/9.10/" target="_blank">http://cn.releases.ubuntu.com/9.10/</a></p>
<p style="margin-top: 10px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font: normal normal normal 14px/160% 宋体, arial; padding: 0px;"><a style="color: #444444; text-decoration: none; padding: 0px; margin: 0px;" href="http://tw.releases.ubuntu.com/9.10/" target="_blank">http://tw.releases.ubuntu.com/9.10/</a></p>
<p style="margin-top: 10px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font: normal normal normal 14px/160% 宋体, arial; padding: 0px;"><a style="color: #444444; text-decoration: none; padding: 0px; margin: 0px;" href="http://releases.ubuntu.com/releases/9.10/">http://releases.ubuntu.com/releases/9.10/</a></p>
<p style="margin-top: 10px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font: normal normal normal 14px/160% 宋体, arial; padding: 0px;"><strong>Ubuntu 9.10 ( Karmic Koala ) 正式版</strong>ISO镜像文件MD5码列表</p>
<p style="margin-top: 10px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font: normal normal normal 14px/160% 宋体, arial; padding: 0px;">836440698456aa2936a4347b5485fdd6 *ubuntu-9.10-alternate-amd64.iso</p>
<p style="margin-top: 10px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font: normal normal normal 14px/160% 宋体, arial; padding: 0px;">3faa345d298deec3854e0e02410973dc *ubuntu-9.10-alternate-i386.iso</p>
<p style="margin-top: 10px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font: normal normal normal 14px/160% 宋体, arial; padding: 0px;">dc51c1d7e3e173dcab4e0b9ad2be2bbf *ubuntu-9.10-desktop-amd64.iso</p>
<p style="margin-top: 10px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font: normal normal normal 14px/160% 宋体, arial; padding: 0px;">d91659de6e945dbb96eb8970b2b4590a *ubuntu-9.10-desktop-armel+dove.img</p>
<p style="margin-top: 10px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font: normal normal normal 14px/160% 宋体, arial; padding: 0px;">297875d2a7531824a0fb08f241d33e85 *ubuntu-9.10-desktop-armel+imx51.img</p>
<p style="margin-top: 10px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font: normal normal normal 14px/160% 宋体, arial; padding: 0px;">8790491bfa9d00f283ed9dd2d77b3906 *ubuntu-9.10-desktop-i386.iso</p>
<p style="margin-top: 10px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font: normal normal normal 14px/160% 宋体, arial; padding: 0px;">ed6e77587b87fe0d92a2f21855869f00 *ubuntu-9.10-netbook-remix-i386.iso</p>
<p style="margin-top: 10px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font: normal normal normal 14px/160% 宋体, arial; padding: 0px;">14707e8847b9c9ba2dd1869fb5086e4f *ubuntu-9.10-server-amd64.iso</p>
<p style="margin-top: 10px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font: normal normal normal 14px/160% 宋体, arial; padding: 0px;">55618ad5f180692f9dac20cbff352634 *ubuntu-9.10-server-i386.iso</p>
<p style="margin-top: 10px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font: normal normal normal 14px/160% 宋体, arial; padding: 0px;">37a04db193b1a342f961f59aea2fada8 *wubi.exe</p>
<p style="margin-top: 10px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; font: normal normal normal 14px/160% 宋体, arial; padding: 0px;">友情提示: alternate 为文字界面的安装版本， desktop 为包含 Live CD 的图形界面安装版本， server 为服务器版本， i386 为32位的系统版本， amd64 为64位的系统系统版本，请根据你自己的需要下载相应的版本。由于版本比较多，下载的时候不要下错版本了哟，做了又费带宽又费电又费精力的事就不好了:) 最后建议大家：使用P2P下载以减轻官方服务器的负担。喜欢<strong>ubuntu 9.10</strong>的朋友感觉<strong>下载</strong>来玩玩  哈</p>
<h3  class="related_post_title">相关文章</h3><ul class="related_post"><li>2009年10月30日 -- <a href="http://www.1986x.net/archives/2093.html" title="开源OS新版Ubuntu与微软Win7较劲">开源OS新版Ubuntu与微软Win7较劲</a></li><li>2009年07月5日 -- <a href="http://www.1986x.net/archives/1288.html" title="ubuntu9.10 alpha2 放出来了">ubuntu9.10 alpha2 放出来了</a></li><li>2009年05月22日 -- <a href="http://www.1986x.net/archives/365.html" title="Ubuntu 9.10新特性一览">Ubuntu 9.10新特性一览</a></li><li>2009年05月22日 -- <a href="http://www.1986x.net/archives/359.html" title="Ubuntu 9.10发布日程表公布，性能总结">Ubuntu 9.10发布日程表公布，性能总结</a></li><li>2010年04月1日 -- <a href="http://www.1986x.net/archives/2511.html" title="Ubuntu系统网络应用服务器Apache配置基础">Ubuntu系统网络应用服务器Apache配置基础</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.1986x.net/archives/2119.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Tweak 0.4.9.2发布</title>
		<link>http://www.1986x.net/archives/2112.html</link>
		<comments>http://www.1986x.net/archives/2112.html#comments</comments>
		<pubDate>Sat, 31 Oct 2009 08:15:52 +0000</pubDate>
		<dc:creator>海盗船长</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tweak]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ubuntu Tweak]]></category>

		<guid isPermaLink="false">http://www.1986x.net/?p=2112</guid>
		<description><![CDATA[Ubuntu Tweak 0.4.9.2发布了，它特别为新到来的Ubuntu 9.10更新了一些源和软件，还加入了一些中文用户常用的工具。如果你有在Ubuntu 9.10下使用Ubuntu Tweak的话，不要考虑了，马上升级吧！]]></description>
			<content:encoded><![CDATA[<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.75em; margin-left: 0px; padding: 0px;"><strong>Ubuntu Tweak 0.4.9.2</strong>发布了，它特别为新到来的Ubuntu 9.10更新了一些源和软件，还加入了一些中文用户常用的工具。如果你有在<a href="http://www.1986x.net/?tag=ubuntu910">Ubuntu 9.10</a>下使用Ubuntu Tweak的话，不要考虑了，马上升级吧！</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.75em; margin-left: 0px; padding: 0px;">这个版本加入了“Gartoon Redux”（一个非常有意思的图标主题），还加了GMPC等PPA，更新了Dropbox，Globus等旧的源。</p>
<p><img style="max-width: 100%; padding: 4px; margin: 2px; border: 1px solid #cccccc;" title="ubuntu-tweak-0492-1" src="http://linuxdesktop.cn/wp-content/uploads/2009/10/ubuntu-tweak-0492-1-640x401.png" alt="ubuntu-tweak-0492-1" width="640" height="401" /></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.75em; margin-left: 0px; padding: 0px;">特别加入了Mingming的个人PPA，里面有一大堆适用于中文用户的软件。比如上篇提到的：<a style="text-decoration: none; outline-style: none; outline-width: initial; outline-color: initial; color: #a84900;" href="http://linuxdesktop.cn/2009/10/25/totem-pps.html">totem-pps</a>，还有LinuxQQ也在里面。</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.75em; margin-left: 0px; padding: 0px;"><img style="max-width: 100%; padding: 4px; margin: 2px; border: 1px solid #cccccc;" title="ubuntu-tweak-0492-2" src="http://linuxdesktop.cn/wp-content/uploads/2009/10/ubuntu-tweak-0492-2-640x401.png" alt="ubuntu-tweak-0492-2" width="640" height="401" /></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.75em; margin-left: 0px; padding: 0px;">通过<strong>Ubuntu Tweak 0.4.9.2</strong>，已经可以方便地安装一大堆新鲜的主题了。</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.75em; margin-left: 0px; padding: 0px;"><img style="max-width: 100%; padding: 4px; margin: 2px; border: 1px solid #cccccc;" title="ubuntu-tweak-0492-3" src="http://linuxdesktop.cn/wp-content/uploads/2009/10/ubuntu-tweak-0492-3-640x401.png" alt="ubuntu-tweak-0492-3" width="640" height="401" /></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.75em; margin-left: 0px; padding: 0px;">Linuxqq也能通过“添加/删除”来安装了，当然前提是启用了Mingming的PPA。</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.75em; margin-left: 0px; padding: 0px;"><img style="max-width: 100%; padding: 4px; margin: 2px; border: 1px solid #cccccc;" title="ubuntu-tweak-0492-4" src="http://linuxdesktop.cn/wp-content/uploads/2009/10/ubuntu-tweak-0492-4-640x401.png" alt="ubuntu-tweak-0492-4" width="640" height="401" /></p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.75em; margin-left: 0px; padding: 0px;">单独下载地址：<a style="text-decoration: none; outline-style: none; outline-width: initial; outline-color: initial; color: #a84900;" href="http://ubuntu-tweak.com/downloads">https://launchpad.net/ubuntu-tweak/0.4.x/0.4.9.2</a>,或者通过<a style="text-decoration: none; outline-style: none; outline-width: initial; outline-color: initial; color: #a84900;" href="http://ubuntu-tweak.com/downloads">源</a>来更新吧。</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.75em; margin-left: 0px; padding: 0px;">转自<a style="text-decoration: none; outline-style: none; outline-width: initial; outline-color: initial; color: #a84900;" title="LDCN" href="http://linuxdesktop.cn/">LDCN</a> – <a style="text-decoration: underline; outline-style: none; outline-width: initial; outline-color: initial; color: #cc3000;" rel="bookmark" href="http://linuxdesktop.cn/2009/10/30/ubuntu-tweak-0-4-9-2.html">Ubuntu Tweak 0.4.9.2发布</a></p>
<h3  class="related_post_title">相关文章</h3><ul class="related_post"><li>2009年11月1日 -- <a href="http://www.1986x.net/archives/2140.html" title="什么是ubuntu tweak,ubuntu tweak安装教程">什么是ubuntu tweak,ubuntu tweak安装教程</a></li><li>2010年04月1日 -- <a href="http://www.1986x.net/archives/2511.html" title="Ubuntu系统网络应用服务器Apache配置基础">Ubuntu系统网络应用服务器Apache配置基础</a></li><li>2010年03月31日 -- <a href="http://www.1986x.net/archives/2507.html" title="Ubuntu下Postgresql-8.4安装及配置">Ubuntu下Postgresql-8.4安装及配置</a></li><li>2010年03月22日 -- <a href="http://www.1986x.net/archives/2471.html" title="ubuntu环境下python+apache2+mod_python部署django">ubuntu环境下python+apache2+mod_python部署django</a></li><li>2010年03月16日 -- <a href="http://www.1986x.net/archives/2451.html" title="第一台linux服务器  ">第一台linux服务器  </a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.1986x.net/archives/2112.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>开源OS新版Ubuntu与微软Win7较劲</title>
		<link>http://www.1986x.net/archives/2093.html</link>
		<comments>http://www.1986x.net/archives/2093.html#comments</comments>
		<pubDate>Fri, 30 Oct 2009 17:48:37 +0000</pubDate>
		<dc:creator>海盗船长</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[互联网观察]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[ubuntu9.10]]></category>

		<guid isPermaLink="false">http://www.1986x.net/?p=2093</guid>
		<description><![CDATA[继微软推出新操作系统Windows 7后，开源操作系统Ubuntu也在近日发布最新版本Ubuntu 9.10，同样号称开机速度快，音频、上网能力提升，和微软较劲的意味极其浓厚。]]></description>
			<content:encoded><![CDATA[<p>继微软推出新操作系统Windows 7后，开源操作系统Ubuntu也在近日发布最新版本<a href="http://www.1986x.net/?tag=ubuntu910">Ubuntu 9.10</a>，同样号称开机速度快，音频、上网能力提升，和微软较劲的意味极其浓厚。</p>
<p>Ubuntu是Linux操作系统，采用图形接口且为免费软件，虽然仍处于小众市场，但国内外有很多追随者，并自发成立Ubuntu社区。新版<a href="http://www.1986x.net/?tag=ubuntu910">Ubunta 9.10</a>将自29日起免费提供下载。</p>
<p>由于用户数目增加，加上Linux系统的电源管理能力普遍受肯定，已开始有计算机大厂计划推出预装Ubuntu操作系统的台式机、笔记本和上网本。</p>
<p>戴尔 (Dell)就在官网上推出10逾款预装Ubuntu软件的产品。</p>
<p>Ubuntu商业赞助商Canonical表示，教育市场也是Ubunta未来和计算机厂共同合作的标的之一，今年Canonical就与宏碁合作，推出教育功能的笔记本。</p>
<p>从去年热卖至今年的上网本同样被视为Ubunta软件的商机；Canonical表示，虽然Linux系统占有率仍偏低，但明年在上网本 (Netbook)和采用ARM平台的smartbook的市场成长可期。</p>
<p>据悉，明年第1季，5大计算机厂商都会推出预装Ubunta软件的Smartbook。</p>
<p>无独有偶，研究机构Gartner预计，ARM平台将在2011年形成势力。</p>
<p>尽管微软独霸地位难以撼动，新操作系统Win 7也来势汹汹，但一些人认为，价格永远是影响因素，开源软件Ubunta免费对某些使用者而言还是具有吸引力。</p>
<p>至于外界瞩目的触控功能，Canonical认为，Windows 7 的触控功能的确引发话题，但实际上，在软件应用和硬件支持上，仍存在落差，产业需时日才能成熟的支持触控功能</p>
<h3  class="related_post_title">相关文章</h3><ul class="related_post"><li>2009年11月1日 -- <a href="http://www.1986x.net/archives/2119.html" title="Ubuntu 9.10 Ubuntu 官方正式发布 ">Ubuntu 9.10 Ubuntu 官方正式发布 </a></li><li>2009年07月5日 -- <a href="http://www.1986x.net/archives/1288.html" title="ubuntu9.10 alpha2 放出来了">ubuntu9.10 alpha2 放出来了</a></li><li>2009年05月22日 -- <a href="http://www.1986x.net/archives/365.html" title="Ubuntu 9.10新特性一览">Ubuntu 9.10新特性一览</a></li><li>2009年05月22日 -- <a href="http://www.1986x.net/archives/359.html" title="Ubuntu 9.10发布日程表公布，性能总结">Ubuntu 9.10发布日程表公布，性能总结</a></li><li>2010年04月1日 -- <a href="http://www.1986x.net/archives/2511.html" title="Ubuntu系统网络应用服务器Apache配置基础">Ubuntu系统网络应用服务器Apache配置基础</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.1986x.net/archives/2093.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9.10 Alpha 3发布 新特性体验</title>
		<link>http://www.1986x.net/archives/1556.html</link>
		<comments>http://www.1986x.net/archives/1556.html#comments</comments>
		<pubDate>Mon, 27 Jul 2009 13:30:36 +0000</pubDate>
		<dc:creator>zerz</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ubuntu 9.10]]></category>
		<category><![CDATA[Ubuntu 9.10 Alpha 3]]></category>

		<guid isPermaLink="false">http://www.1986x.net/?p=1556</guid>
		<description><![CDATA[Ubuntu刚刚发布了Ubuntu 9.10 (Karmic Koala)的第三个alpha版本。]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.1986x.net/?tag=ubuntu">Ubuntu</a>刚刚发布了Ubuntu 9.10 (Karmic Koala)的第三个alpha版本。<br />
那么，<strong>Ubuntu 9.10 Alpha 3</strong>有什么新的变化呢？让我们一起来看看。继第二个Alpha版本发布以来，这个版本加入了新的技术及相关功能。它采用了2.27.4新版本的gnome桌面环境，这将带给我们更爽的体验效果。下面是它的新特性：<br />
<span id="more-1556"></span><br />
Empathy取代Pidgin成为新的即时通讯客户端；<br />
<a style="color: #0044b6; text-decoration: none;" href="http://www.1986x.net/index.php/archives/1556.html" target="_blank"><img src="http://www.ownlinux.cn/wp-content/uploads/2009/07/%E5%9B%BE%E7%89%8713.jpg" border="0" alt="" width="515" height="287" /></a><br />
2、Brasero光盘烧录软件有一个新变化：加入了数据容量显示，可以显示数据占用的空间和光盘剩余的空间，这对于那些使用DVD-RW 或者 CD-RW并且使用多会话模式的人们非常重要；<br />
<img src="http://www.ownlinux.cn/wp-content/uploads/2009/07/%E5%9B%BE%E7%89%8721.jpg" border="0" alt="" width="488" height="241" /><br />
3、新的登录管理器（GDM），不需要你再同时输入用户名和密码了，只需要选择你的登录用户名就会出现密码提示（见下图）。但这并不是最后的版本，这是ubuntu设计者希望在beta版本中实现的功能。<br />
<img src="http://www.ownlinux.cn/wp-content/uploads/2009/07/%E5%9B%BE%E7%89%873.jpg" border="0" alt="" width="515" height="364" /><br />
<a style="color: #0044b6; text-decoration: none;" href="http://www.1986x.net/index.php/archives/1556.html" target="_blank"><img src="http://www.ownlinux.cn/wp-content/uploads/2009/07/%E5%9B%BE%E7%89%874.jpg" border="0" alt="" width="515" height="372" /></a><br />
4、加入了Ubuntu one（免费在线存储）。Ubuntu one官方公布的新特点是：无缝集成多台计算机之间同步以及方便操作界面。同时，你可以在你的home目录里面看到一个命名为ubuntu one的文件夹<br />
<img src="http://www.ownlinux.cn/wp-content/uploads/2009/07/%E5%9B%BE%E7%89%875.jpg" border="0" alt="" width="442" height="435" /><br />
5、更漂亮的通知系统—OSD<br />
<img src="http://www.ownlinux.cn/wp-content/uploads/2009/07/%E5%9B%BE%E7%89%876.jpg" border="0" alt="" width="377" height="204" /><br />
6、默认的网页浏览器Mozilla Firefox添加了多功能搜索（Multisearch）<br />
<img src="http://www.ownlinux.cn/wp-content/uploads/2009/07/%E5%9B%BE%E7%89%877.jpg" border="0" alt="" width="515" height="395" /><br />
7、用户转换程序User Switch applet有较大的改动，它现在只提供帐户信息，进入系统预置和锁屏幕/退出功能，登出，关闭，重新启动，挂起和休眠功能已经转移到系统菜单。<br />
<img src="http://www.ownlinux.cn/wp-content/uploads/2009/07/%E5%9B%BE%E7%89%878.jpg" border="0" alt="" width="311" height="229" /><br />
<img src="http://www.ownlinux.cn/wp-content/uploads/2009/07/%E5%9B%BE%E7%89%879.jpg" border="0" alt="" width="515" height="334" /><br />
<img src="http://www.ownlinux.cn/wp-content/uploads/2009/07/%E5%9B%BE%E7%89%8710.jpg" border="0" alt="" width="479" height="438" /><br />
最后但并非不重要的是内核封装版本是基于Linux kernel 2.6.31 RC3的2.6.31-3.19版本。内核模式设置启用了默认的英特尔图形。<br />
接着我们来看看Kubuntu和Xubuntu都有什么新变化：<br />
Kubutnu有了单独的”Netbook Remix”版本，此版本具有KDE 4.3 RC2桌面环境和以下特点：Arora浏览器（原来是Konqueror浏览器），Amarok 2.1.1，KPackageKit 0.4.1.1，K3b 1.66.0 (alpha 2)，QtCurve 0.65.1，kcm-gtk 0.5，KDE microblogging Plasma widget。<br />
<img src="http://www.ownlinux.cn/wp-content/uploads/2009/07/%E5%9B%BE%E7%89%87111.jpg" border="0" alt="" width="515" height="391" /><br />
另外，Xubuntu使用轻量级XFCE 4.6.1桌面环境，包括最新的应用。<br />
<img src="http://www.ownlinux.cn/wp-content/uploads/2009/07/%E5%9B%BE%E7%89%87121.jpg" border="0" alt="" width="515" height="390" /><br />
下载：</p>
<p><strong>Ubuntu 9.10 Alpha 3 (Karmic-Koala) Alternate CD i386 (ISO)</strong>：<a style="color: #0044b6; text-decoration: none;" href="http://cdimage.ubuntu.com/releases/9.10/alpha-3/karmic-alternate-i386.iso" target="_blank">http://cdimage.ubuntu.com/releases/9.10/alpha-3/karmic-alternate-i386.iso</a><br />
<strong> Ubuntu 9.10 Alpha 3 (Karmic-Koala) Alternate CD amd64 (ISO</strong>)：<a style="color: #0044b6; text-decoration: none;" href="http://cdimage.ubuntu.com/releases/9.10/alpha-3/karmic-alternate-amd64.iso" target="_blank">http://cdimage.ubuntu.com/releases/9.10/alpha-3/karmic-alternate-amd64.iso</a><br />
<strong> Ubuntu 9.10 Alpha 3 (Karmic-Koala) Alternate CD i386 (torrent)</strong>：<a style="color: #0044b6; text-decoration: none;" href="http://cdimage.ubuntu.com/releases/9.10/alpha-3/karmic-alternate-i386.iso.torrent" target="_blank">http://cdimage.ubuntu.com/releases/9.10/alpha-3/karmic-alternate-i386.iso.torrent</a><br />
Ubuntu 9.10 Alpha 3 (Karmic-Koala) Desktop CD i386 (ISO)：<a style="color: #0044b6; text-decoration: none;" href="http://cdimage.ubuntu.com/releases/9.10/alpha-3/karmic-desktop-i386.iso" target="_blank">http://cdimage.ubuntu.com/releases/9.10/alpha-3/karmic-desktop-i386.iso</a><br />
Ubuntu 9.10 Alpha 3 (Karmic-Koala) Desktop CD amd64 (ISO)：<a style="color: #0044b6; text-decoration: none;" href="http://cdimage.ubuntu.com/releases/9.10/alpha-3/karmic-desktop-amd64.iso" target="_blank">http://cdimage.ubuntu.com/releases/9.10/alpha-3/karmic-desktop-amd64.iso</a><br />
Ubuntu 9.10 Alpha 3 (Karmic-Koala) Desktop CD i386 (torrent)：<a style="color: #0044b6; text-decoration: none;" href="http://cdimage.ubuntu.com/releases/9.10/alpha-3/karmic-desktop-i386.iso.torrent" target="_blank">http://cdimage.ubuntu.com/releases/9.10/alpha-3/karmic-desktop-i386.iso.torrent</a><br />
Ubuntu 9.10 Alpha 3 (Karmic-Koala) Desktop CD amd64 (torrent)：<a style="color: #0044b6; text-decoration: none;" href="http://cdimage.ubuntu.com/releases/9.10/alpha-3/karmic-desktop-amd64.iso.torrent" target="_blank">http://cdimage.ubuntu.com/releases/9.10/alpha-3/karmic-desktop-amd64.iso.torrent</a><br />
Ubuntu Server 9.10 Alpha 3 (Karmic Koala)：<a style="color: #0044b6; text-decoration: none;" href="http://linux.softpedia.com/progDownload/Ubuntu-Server-Karmic-Koala-Download-47615.html" target="_blank">http://linux.softpedia.com/progDownload/Ubuntu-Server-Karmic-Koala-Download-47615.html</a><br />
Ubuntu Netbook Remix 9.10 Alpha 3 (Karmic Koala)：<a style="color: #0044b6; text-decoration: none;" href="http://linux.softpedia.com/progDownload/Ubuntu-Netbook-Remix-Karmic-Koala-Download-47617.html" target="_blank">http://linux.softpedia.com/progDownload/Ubuntu-Netbook-Remix-Karmic-Koala-Download-47617.html</a><br />
Kubuntu 9.10 Alpha 3 (Karmic Koala)：<a style="color: #0044b6; text-decoration: none;" href="http://linux.softpedia.com/progDownload/Kubuntu-Karmic-Koala-Download-47614.html" target="_blank">http://linux.softpedia.com/progDownload/Kubuntu-Karmic-Koala-Download-47614.html</a><br />
Kubuntu Netbook Remix 9.10 Alpha 3 (Karmic Koala)：<a style="color: #0044b6; text-decoration: none;" href="http://linux.softpedia.com/progDownload/Kubuntu-Netbook-Remix-Karmic-Download-49499.html" target="_blank">http://linux.softpedia.com/progDownload/Kubuntu-Netbook-Remix-Karmic-Download-49499.html</a><br />
<strong> Xubuntu 9.10 Alpha 3 (Karmic Koala)</strong>：<a style="color: #0044b6; text-decoration: none;" href="http://linux.softpedia.com/progDownload/Xubuntu-Karmic-Koala-Download-47616.html" target="_blank">http://linux.softpedia.com/progDownload/Xubuntu-Karmic-Koala-Download-47616.html</a><br />
<strong> Ubuntu Studio 9.10 Alpha 3 (Karmic Koala)</strong>：<a style="color: #0044b6; text-decoration: none;" href="http://linux.softpedia.com/progDownload/Ubuntu-Studio-Karmic-Download-49500.html" target="_blank">http://linux.softpedia.com/progDownload/Ubuntu-Studio-Karmic-Download-49500.html</a></p>
<p>[英文原文: <a style="color: #0044b6; text-decoration: none;" href="http://news.softpedia.com/news/Ubuntu-9-10-Alpha-3-Comes-with-Ubuntu-One-and-Linux-Kernel-2-6-31-117368.shtml" target="_blank">http://news.softpedia.com/news/U ... 2-6-31-117368.shtml</a>]</p>
<h3  class="related_post_title">相关文章</h3><ul class="related_post"><li>2010年04月1日 -- <a href="http://www.1986x.net/archives/2511.html" title="Ubuntu系统网络应用服务器Apache配置基础">Ubuntu系统网络应用服务器Apache配置基础</a></li><li>2010年03月31日 -- <a href="http://www.1986x.net/archives/2507.html" title="Ubuntu下Postgresql-8.4安装及配置">Ubuntu下Postgresql-8.4安装及配置</a></li><li>2010年03月22日 -- <a href="http://www.1986x.net/archives/2471.html" title="ubuntu环境下python+apache2+mod_python部署django">ubuntu环境下python+apache2+mod_python部署django</a></li><li>2010年03月16日 -- <a href="http://www.1986x.net/archives/2451.html" title="第一台linux服务器  ">第一台linux服务器  </a></li><li>2009年11月1日 -- <a href="http://www.1986x.net/archives/2140.html" title="什么是ubuntu tweak,ubuntu tweak安装教程">什么是ubuntu tweak,ubuntu tweak安装教程</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.1986x.net/archives/1556.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ubuntu9.10 alpha2 放出来了</title>
		<link>http://www.1986x.net/archives/1288.html</link>
		<comments>http://www.1986x.net/archives/1288.html#comments</comments>
		<pubDate>Sun, 05 Jul 2009 13:32:26 +0000</pubDate>
		<dc:creator>zerz</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[ubuntu9.10]]></category>

		<guid isPermaLink="false">http://www.1986x.net/?p=1288</guid>
		<description><![CDATA[ubuntu9.10 alpha2 放出来了,现在ubuntu9.10有了新进展，目前官方提供了Alpha 2的下载地址.]]></description>
			<content:encoded><![CDATA[<p><a href="../index.php/archives/355.html"><span>Ubuntu</span>9.04</a>出来有几个月了,现在<a href="http://www.1986x.net/index.php/archives/1284.html">ubuntu9.10</a>有了新进展，目前官方提供了<strong>Alpha 2的<span>下载</span>地址</strong>.</p>
<p><a href="http://cdimage.ubuntu.com/releases/karmic/alpha-2/">http://cdimage.ubuntu.com/releases/karmic/alpha-2/</a></p>
<p>不知道多了些什么。整体操作的流畅性和外观不知道改了没。<br />
ubuntu我用起来流畅度还没xp高。感觉有点生硬。<br />
多段时间再装个ubuntu玩玩。哈哈</p>
<h3  class="related_post_title">相关文章</h3><ul class="related_post"><li>2009年11月1日 -- <a href="http://www.1986x.net/archives/2119.html" title="Ubuntu 9.10 Ubuntu 官方正式发布 ">Ubuntu 9.10 Ubuntu 官方正式发布 </a></li><li>2009年10月30日 -- <a href="http://www.1986x.net/archives/2093.html" title="开源OS新版Ubuntu与微软Win7较劲">开源OS新版Ubuntu与微软Win7较劲</a></li><li>2009年05月22日 -- <a href="http://www.1986x.net/archives/365.html" title="Ubuntu 9.10新特性一览">Ubuntu 9.10新特性一览</a></li><li>2009年05月22日 -- <a href="http://www.1986x.net/archives/359.html" title="Ubuntu 9.10发布日程表公布，性能总结">Ubuntu 9.10发布日程表公布，性能总结</a></li><li>2010年04月1日 -- <a href="http://www.1986x.net/archives/2511.html" title="Ubuntu系统网络应用服务器Apache配置基础">Ubuntu系统网络应用服务器Apache配置基础</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.1986x.net/archives/1288.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
