<?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.ybfq.com/tag/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ybfq.com</link>
	<description>电子商务师罗永强的个人网站</description>
	<lastBuildDate>Wed, 16 Nov 2011 06:53:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Ubuntu 10.04 LTS(Lucid Lynx)今晨发布！快用镜像下载尝鲜吧</title>
		<link>http://www.ybfq.com/lamp/ubuntu-1004lts-lucid-lynx-release-china-mirror-download/</link>
		<comments>http://www.ybfq.com/lamp/ubuntu-1004lts-lucid-lynx-release-china-mirror-download/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 03:18:54 +0000</pubDate>
		<dc:creator>Rossy</dc:creator>
				<category><![CDATA[Lamp]]></category>
		<category><![CDATA[lucid lynx]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.ybfq.com/?p=433</guid>
		<description><![CDATA[Ubuntu是什么？ Ubuntu是一个由全球专家组成的团队开发出来的操作系统。它包含了你所需要的所有的应用程序：网页浏览器，办公套件，媒体应用程序，即时通讯等等。 Ubuntu是一个开源的Windows和Office的替代品，更重要的是，它免费的！ Ubuntu 10.04 LTS (Lucid Lynx) 正式版终于发布了。Ubuntu 10.04是Ubuntu系列最新的LTS版本，由于Ubuntu每隔2年会发布一个长周期支持的版本，也就是LTS版本，该版本的桌面版本的支持周期是2 年，而服务器版本的支持会有此年之久。Ubuntu新版本对于服务器应用来说是至关重要的，因为享受 Ubuntu提供的安全和服务更新对于各种安全漏洞和问题都有很好的解决。这次的Ubuntu 10.04做了很大的改动，包括但不限于启动速度更快，桌面系统更炫等等，Ubuntu 10.04绝对是使用Ubuntu的首选。如果您准备使用Linux操作系统或者准备使用Ubuntu，那建议您下载最新版的Ubuntu 10.04。 而在Ubuntu 10.04正式版发布之前发现的一个重大问题：当新用户第一次在安装了Windows XP下再安装Ubuntu，之后就会发现Windows XP 启动菜单就不见了（指程序加载器 GRUB2 里面没有 XP 入口，毫无疑问，这是 GRUB2 程序加载器的一个大 Bug ）。请见： 4 月 29 日 Michael Larabel 文章&#60; Ubuntu 10.04 Hit By Major Bug; ISOs Now Being Re-Spun （重新打包）&#62;”。今天凌晨Ubuntu 官方网站发布公告， Ubuntu 10.04 仍然按时发布，那个启动 Bug 也解决了。 Ubuntu 10.04 LTS下载地址 [...]]]></description>
		<wfw:commentRss>http://www.ybfq.com/lamp/ubuntu-1004lts-lucid-lynx-release-china-mirror-download/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>Ubuntu下网站设计成功后发布网站的流程</title>
		<link>http://www.ybfq.com/lamp/ubuntu-website-publish-flowchart/</link>
		<comments>http://www.ybfq.com/lamp/ubuntu-website-publish-flowchart/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 07:04:53 +0000</pubDate>
		<dc:creator>Rossy</dc:creator>
				<category><![CDATA[Lamp]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://www.ybfq.com/diary/qqreader39ac5d103aadc1fc/</guid>
		<description><![CDATA[网站设计的一般流程是根据客户的设计稿，或者自己设计好模板后，根据客户的要求开发设计数据库和网站程序，然后调试各种功能，最后准备交付网站并上传到网站的空间上发布运行。做网站设计工作这么些年以来，慢慢积累了一些经验，一种是在家里本机电脑上进行开发的模式，另一种是在公司里按照公司要求的模式，现在说的就是在公司里进行网站发布的一些流程。 首先，简述下公司的开发流程。 1、新项目确定后就要建立开发用的域名和本地DNS解析，一般是用dev.XXX.com这样的二级域名作为测试地址。之后就是建立网站目录和数据库。 2、网页设计、程序开发、功能调试等，直到测试成功。 因此，当网站设计并测试成功之后就要准备在网络上进行发布并做最后的调试就可以交付给客户了。这些流程一般如下 1〉打包整个网站文件夹 tar -cvf tarname.tar directory/ 2〉压缩网站的打包文件 gzip tarname.tar 3〉导出数据库（MYSQL） mysqldump -uusername -ppassword databasename &#62; dbname.sql 4〉上传压缩文件 5〉解压缩网站打包文件 tar -xzvf tarname.tar.gz 6〉修改网站配置文件（网站域名及数据库资料） 7〉导入数据库，可在PHPMYADMIN里面上导入，也可上传.sql文件到网站目录用命令行方式导入，前提是可以用SSH登录。 在命令行登录mysql之后用以下命令进行导入 mysql &#62; source dbname.sql]]></description>
		<wfw:commentRss>http://www.ybfq.com/lamp/ubuntu-website-publish-flowchart/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

