<?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>An Lár &#187; Research</title>
	<atom:link href="http://an-lar.com/category/research/feed/" rel="self" type="application/rss+xml" />
	<link>http://an-lar.com</link>
	<description>Town center, We are in, We live in.</description>
	<lastBuildDate>Mon, 29 Jun 2009 19:43:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>development a &#8220;hello world&#8221;application with facebook api</title>
		<link>http://an-lar.com/2008/10/development-a-hello-worldapplication-with-facebook-api/</link>
		<comments>http://an-lar.com/2008/10/development-a-hello-worldapplication-with-facebook-api/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 19:55:00 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Program]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[facebook API]]></category>
		<category><![CDATA[facebook apps]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://www.an-lar.com/2008/10/development-a-hello-worldapplication-with-facebook-api/</guid>
		<description><![CDATA[first of all, you need download facebook PHP Client Libraries. Extract package to you work path. open the directory, there are two sub-directory, PHP directory is libraries, you need use it to develop application. and a example directory called foodpoints. Open PHP directory, creating two PHP files &#8211; index.php and config.php.
In config.php:

&#60;?php
$api_key = &#039;[API_KEY]&#039;;&#38;amp;amp;nbsp; // [...]]]></description>
			<content:encoded><![CDATA[<p><big>first of all, you need download facebook <a href="http://svn.facebook.com/svnroot/platform/clients/packages/facebook-platform.tar.gz">PHP Client Libraries</a>. Extract package to you work path. open the directory, there are two sub-directory, PHP directory is libraries, you need use it to develop application. and a example directory called foodpoints. Open PHP directory, creating two PHP files &#8211; index.php and config.php.</big></p>
<p><big>In config.php:</big></p>
<pre class="brush: php">
&lt;?php
$api_key = &#039;[API_KEY]&#039;;&amp;amp;amp;nbsp; // your apps api key
$secret&amp;amp;amp;nbsp; = &#039;[SECRET_KEY]&#039;; // your apps secret key
$backurl=&quot;http://liduan.com/fb/start&quot;;&amp;amp;amp;nbsp; your call back web url
?&gt;
</pre>
<p><span id="more-58"></span><br />
In index.php:</p>
<pre class="brush: php">
&lt;?php
	include_once &#039;facebook.php&#039;;
	include_once &#039;config.php&#039;;

	$facebook = new Facebook($api_key, $secret);
	$facebook-&gt;require_frame();
	$user = $facebook-&gt;require_login(); // check user is login

	try{
	if(!$facebook-&gt;api_client-&gt;users_isAppAdded()){
		$facebook-&gt;redirect($facebook-&gt;get_add_url()); // check user is add this apps
		}

	}catch(Exception $ex){
		$facebook-&gt;set_user(null,null);
		$facebook-&gt;redirect($backurl);

	}

	// main
	echo &quot;&lt;p&gt;Hellow&lt;/p&gt;&quot;;
	echo &quot;&lt;p&gt;world&lt;/p&gt;&quot;;
	echo &quot;&lt;p&gt;this is developed by &lt;a href=&#039;http://liduan.com&#039;&gt;liduan.com&lt;/a&gt;&lt;/p&gt;&quot;;

	?&gt;
</pre>
<p><big>finish coding, upload whole php directory to web space that must support PHP5 and make sure public can access it. example http://liduan.com/fb/start </big></p>
<p><big>Next, adding apps to facebook, open http://developers.facebook.com, click &#8216;Get Start&#8217; -> &#8220;Add Facebook Developer Application&#8221; -> &#8220;Setup New Application&#8221; you will see a form of add new application. there are some very important options you must fill it. </big></p>
<p><big>
<ol>
<li><b>Application Name</b>: I remember this name can&#8217;t include &#8216;face&#8217; and &#8216;application&#8217;.</li>
<li><b>developer Contact email and user support email</b> is your and your partner email.</li>
<li><b>Callback URL: you can find it in config.php</b>. that&#8217;s you apps hosting address.</li>
<li><b>Canvas Page URL</b>: format is http://apps.facebook.com/[YOUR CANVAS PAGE URL]/ can not same with other apps, and not allow number.</li>
<li><b>Application Type</b> is Website.</li>
<li><b>Can your application be added on facebook?</b> if you choice &#8216;no&#8217;, that means nobody can find your apps in facebook apps list. </li>
<li><b>Post-Add URL is same with Canvas Page URL</b> : http://apps.facebook.com/[YOUR CANVAS PAGE URL]/</li>
<li><b>Default FBML</b>: you can fill &#8216;hello world&#8217;</li>
<li><b>Side Nav URL</b> is also same with <b>Canvas Page URL</b> : http://apps.facebook.com/[YOUR CANVAS PAGE URL]/</li>
</ol>
<p></big></p>
<p><big>submit form, you will find your api key and secret key. put them to you config.php and upload again. Now. open your call back url, and follow by facebook guide and add this app to your facebook account. you will see &#8220;hello world&#8221;.</big></p>



Share and Enjoy:


	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fdevelopment-a-hello-worldapplication-with-facebook-api%2F&amp;partner=sociable" title="Print"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fdevelopment-a-hello-worldapplication-with-facebook-api%2F&amp;title=development%20a%20%22hello%20world%22application%20with%20facebook%20api&amp;bodytext=first%20of%20all%2C%20you%20need%20download%20facebook%20PHP%20Client%20Libraries.%20Extract%20package%20to%20you%20work%20path.%20open%20the%20directory%2C%20there%20are%20two%20sub-directory%2C%20PHP%20directory%20is%20libraries%2C%20you%20need%20use%20it%20to%20develop%20application.%20and%20a%20example%20directory%20called%20foodp" title="Digg"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fdevelopment-a-hello-worldapplication-with-facebook-api%2F" title="Sphinn"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fdevelopment-a-hello-worldapplication-with-facebook-api%2F&amp;title=development%20a%20%22hello%20world%22application%20with%20facebook%20api&amp;notes=first%20of%20all%2C%20you%20need%20download%20facebook%20PHP%20Client%20Libraries.%20Extract%20package%20to%20you%20work%20path.%20open%20the%20directory%2C%20there%20are%20two%20sub-directory%2C%20PHP%20directory%20is%20libraries%2C%20you%20need%20use%20it%20to%20develop%20application.%20and%20a%20example%20directory%20called%20foodp" title="del.icio.us"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fdevelopment-a-hello-worldapplication-with-facebook-api%2F&amp;t=development%20a%20%22hello%20world%22application%20with%20facebook%20api" title="Facebook"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fdevelopment-a-hello-worldapplication-with-facebook-api%2F&amp;title=development%20a%20%22hello%20world%22application%20with%20facebook%20api" title="Mixx"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fdevelopment-a-hello-worldapplication-with-facebook-api%2F&amp;title=development%20a%20%22hello%20world%22application%20with%20facebook%20api&amp;annotation=first%20of%20all%2C%20you%20need%20download%20facebook%20PHP%20Client%20Libraries.%20Extract%20package%20to%20you%20work%20path.%20open%20the%20directory%2C%20there%20are%20two%20sub-directory%2C%20PHP%20directory%20is%20libraries%2C%20you%20need%20use%20it%20to%20develop%20application.%20and%20a%20example%20directory%20called%20foodp" title="Google Bookmarks"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=development%20a%20%22hello%20world%22application%20with%20facebook%20api&amp;body=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fdevelopment-a-hello-worldapplication-with-facebook-api%2F" title="email"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://hellotxt.com/?status=development%20a%20%22hello%20world%22application%20with%20facebook%20api+http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fdevelopment-a-hello-worldapplication-with-facebook-api%2F" title="HelloTxt"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/hellotxt.png" title="HelloTxt" alt="HelloTxt" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fdevelopment-a-hello-worldapplication-with-facebook-api%2F&amp;title=development%20a%20%22hello%20world%22application%20with%20facebook%20api" title="Live"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://myshare.url.com.tw/index.php?func=newurl&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fdevelopment-a-hello-worldapplication-with-facebook-api%2F&amp;desc=development%20a%20%22hello%20world%22application%20with%20facebook%20api" title="MyShare"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/myshare.png" title="MyShare" alt="MyShare" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fdevelopment-a-hello-worldapplication-with-facebook-api%2F&amp;t=development%20a%20%22hello%20world%22application%20with%20facebook%20api" title="MySpace"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fdevelopment-a-hello-worldapplication-with-facebook-api%2F&amp;t=development%20a%20%22hello%20world%22application%20with%20facebook%20api&amp;s=first%20of%20all%2C%20you%20need%20download%20facebook%20PHP%20Client%20Libraries.%20Extract%20package%20to%20you%20work%20path.%20open%20the%20directory%2C%20there%20are%20two%20sub-directory%2C%20PHP%20directory%20is%20libraries%2C%20you%20need%20use%20it%20to%20develop%20application.%20and%20a%20example%20directory%20called%20foodp" title="Tumblr"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=development%20a%20%22hello%20world%22application%20with%20facebook%20api%20-%20http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fdevelopment-a-hello-worldapplication-with-facebook-api%2F" title="Twitter"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fdevelopment-a-hello-worldapplication-with-facebook-api%2F&amp;t=development%20a%20%22hello%20world%22application%20with%20facebook%20api&opener=bm&amp;ei=UTF-8&amp;d=first%20of%20all%2C%20you%20need%20download%20facebook%20PHP%20Client%20Libraries.%20Extract%20package%20to%20you%20work%20path.%20open%20the%20directory%2C%20there%20are%20two%20sub-directory%2C%20PHP%20directory%20is%20libraries%2C%20you%20need%20use%20it%20to%20develop%20application.%20and%20a%20example%20directory%20called%20foodp" title="Yahoo! Bookmarks"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://yigg.de/neu?exturl=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fdevelopment-a-hello-worldapplication-with-facebook-api%2F&amp;exttitle=development%20a%20%22hello%20world%22application%20with%20facebook%20api" title="Yigg"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="" title="BlogMemes Fr"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/" title="BlogMemes Fr" alt="BlogMemes Fr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://cgi.fark.com/cgi/fark/farkit.pl?h=development%20a%20%22hello%20world%22application%20with%20facebook%20api&amp;u=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fdevelopment-a-hello-worldapplication-with-facebook-api%2F" title="Fark"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=development%20a%20%22hello%20world%22application%20with%20facebook%20api&amp;link=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fdevelopment-a-hello-worldapplication-with-facebook-api%2F" title="FriendFeed"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.haohaoreport.com/submit.php?url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fdevelopment-a-hello-worldapplication-with-facebook-api%2F&amp;title=development%20a%20%22hello%20world%22application%20with%20facebook%20api" title="Haohao"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/haohao.png" title="Haohao" alt="Haohao" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fdevelopment-a-hello-worldapplication-with-facebook-api%2F&amp;title=development%20a%20%22hello%20world%22application%20with%20facebook%20api&amp;source=An+L%C3%A1r+Town+center%2C+We+are+in%2C+We+live+in.&amp;summary=first%20of%20all%2C%20you%20need%20download%20facebook%20PHP%20Client%20Libraries.%20Extract%20package%20to%20you%20work%20path.%20open%20the%20directory%2C%20there%20are%20two%20sub-directory%2C%20PHP%20directory%20is%20libraries%2C%20you%20need%20use%20it%20to%20develop%20application.%20and%20a%20example%20directory%20called%20foodp" title="LinkedIn"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fdevelopment-a-hello-worldapplication-with-facebook-api%2F&amp;bm_description=development%20a%20%22hello%20world%22application%20with%20facebook%20api&amp;plugin=soc" title="MisterWong"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fdevelopment-a-hello-worldapplication-with-facebook-api%2F&amp;partner=sociable" title="PDF"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://ping.fm/ref/?link=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fdevelopment-a-hello-worldapplication-with-facebook-api%2F&amp;title=development%20a%20%22hello%20world%22application%20with%20facebook%20api&amp;body=first%20of%20all%2C%20you%20need%20download%20facebook%20PHP%20Client%20Libraries.%20Extract%20package%20to%20you%20work%20path.%20open%20the%20directory%2C%20there%20are%20two%20sub-directory%2C%20PHP%20directory%20is%20libraries%2C%20you%20need%20use%20it%20to%20develop%20application.%20and%20a%20example%20directory%20called%20foodp" title="Ping.fm"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://an-lar.com/feed/" title="RSS"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://slashdot.org/bookmark.pl?title=development%20a%20%22hello%20world%22application%20with%20facebook%20api&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fdevelopment-a-hello-worldapplication-with-facebook-api%2F" title="Slashdot"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://socialogs.com/add_story.php?story_url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fdevelopment-a-hello-worldapplication-with-facebook-api%2F&amp;story_title=development%20a%20%22hello%20world%22application%20with%20facebook%20api" title="Socialogs"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/socialogs.png" title="Socialogs" alt="Socialogs" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fdevelopment-a-hello-worldapplication-with-facebook-api%2F" title="Technorati"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://an-lar.com/2008/10/development-a-hello-worldapplication-with-facebook-api/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Useful Links for ActionScipt tutorial</title>
		<link>http://an-lar.com/2008/10/useful-links-for-actionscipt-tutorial/</link>
		<comments>http://an-lar.com/2008/10/useful-links-for-actionscipt-tutorial/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 14:24:18 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Link]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[actionscipt]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.an-lar.com/archives/53</guid>
		<description><![CDATA[
http://www.actionscript.org/reso&#8230;&#8230; &#8211; A large number of tutorials and examples about AS2 or AS3.
http://www.ultrashock.com/tutor&#8230;&#8230; &#8211; A ActionScript tutorial step by step.
http://www.flashandmath.com/ &#8211; Good tutorial with complex examples
http://tutorialoutpost.com/tutor&#8230;.. &#8211; Online tutorial with interesting examples
http://www.adobe.com/support/f&#8230;. &#8211; Official tutorial
http://www.newgrounds.com/po&#8230;. -  Quick start doing flash and actionscript
http://schoolofflash.com/2008/0&#8230;. &#8211; ActionScript 3 tutorial and examples
http://www.tutorial5.com/conten...   &#8211; Flash totorial include ActionScript
http://www.adobe.com/support/f&#8230;.. &#8211; Official [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li><big><a title="A large number of tutorials and examples about AS2 or AS3." href="http://www.actionscript.org/resources/categories/Tutorials/">http://www.actionscript.org/reso&#8230;&#8230;</a> &#8211; A large number of tutorials and examples about AS2 or AS3.</big></li>
<li><big><a title="A ActionScript tutorial step by step." href="http://www.ultrashock.com/tutorials/flashmx2004/as2-01.php">http://www.ultrashock.com/tutor&#8230;&#8230;</a> &#8211; A ActionScript tutorial step by step.</big></li>
<li><big><a title="Good tutorial with complex examples" href="http://www.flashandmath.com/">http://www.flashandmath.com/</a> &#8211; Good tutorial with complex examples</big></li>
<li><big><a title="Online tutorial with interesting examples" href="http://tutorialoutpost.com/tutorials/flash/actionscript">http://tutorialoutpost.com/tutor&#8230;..</a> &#8211; Online tutorial with interesting examples</big></li>
<li><big><a title="Official tutorial" href="http://www.adobe.com/support/flash/action_scripts/actionscript_tutorial/">http://www.adobe.com/support/f&#8230;.</a> &#8211; Official tutorial</big></li>
<li><big><a title="Quick start doing flash and actionscript" href="http://www.newgrounds.com/portal/view/302147">http://www.newgrounds.com/po&#8230;.</a> -  Quick start doing flash and actionscript</big></li>
<li><big><a title="ActionScript 3 tutorial and examples" href="http://schoolofflash.com/2008/04/tutorial-creating-a-timer-in-actionscript-3/">http://schoolofflash.com/2008/0&#8230;.</a> &#8211; ActionScript 3 tutorial and examples</big></li>
<li><big><a title="Flash totorial include ActionScript" href="http://www.tutorial5.com/content/blogcategory/20/46/">http://www.tutorial5.com/conten..</a>.   &#8211; Flash totorial include ActionScript</big></li>
<li><big><a title="Official ActionScript Dictionary" href="http://www.adobe.com/support/flash/action_scripts/actionscript_dictionary/">http://www.adobe.com/support/f&#8230;..</a> &#8211; Official ActionScript Dictionary</big></li>
<li><big><a title="ActionScript 3 simple examples" href="http://edutechwiki.unige.ch/en/AS3_simple_examples">http://edutechwiki.unige.ch/en/A&#8230;..</a> (and <a title="ActionScript 3 simple examples" href="http://edutechwiki.unige.ch/en/AS3_example_Drawing_graphics">here</a>)-  ActionScript 3 simple examples</big></li>
</ul>



Share and Enjoy:


	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-links-for-actionscipt-tutorial%2F&amp;partner=sociable" title="Print"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-links-for-actionscipt-tutorial%2F&amp;title=Useful%20Links%20for%20ActionScipt%20tutorial&amp;bodytext=%0D%0A%09http%3A%2F%2Fwww.actionscript.org%2Freso......%20-%20A%20large%20number%20of%20tutorials%20and%20examples%20about%20AS2%20or%20AS3.%0D%0A%09http%3A%2F%2Fwww.ultrashock.com%2Ftutor......%20-%20A%20ActionScript%20tutorial%20step%20by%20step.%0D%0A%09http%3A%2F%2Fwww.flashandmath.com%2F%20-%20Good%20tutorial%20with%20complex%20example" title="Digg"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-links-for-actionscipt-tutorial%2F" title="Sphinn"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-links-for-actionscipt-tutorial%2F&amp;title=Useful%20Links%20for%20ActionScipt%20tutorial&amp;notes=%0D%0A%09http%3A%2F%2Fwww.actionscript.org%2Freso......%20-%20A%20large%20number%20of%20tutorials%20and%20examples%20about%20AS2%20or%20AS3.%0D%0A%09http%3A%2F%2Fwww.ultrashock.com%2Ftutor......%20-%20A%20ActionScript%20tutorial%20step%20by%20step.%0D%0A%09http%3A%2F%2Fwww.flashandmath.com%2F%20-%20Good%20tutorial%20with%20complex%20example" title="del.icio.us"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-links-for-actionscipt-tutorial%2F&amp;t=Useful%20Links%20for%20ActionScipt%20tutorial" title="Facebook"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-links-for-actionscipt-tutorial%2F&amp;title=Useful%20Links%20for%20ActionScipt%20tutorial" title="Mixx"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-links-for-actionscipt-tutorial%2F&amp;title=Useful%20Links%20for%20ActionScipt%20tutorial&amp;annotation=%0D%0A%09http%3A%2F%2Fwww.actionscript.org%2Freso......%20-%20A%20large%20number%20of%20tutorials%20and%20examples%20about%20AS2%20or%20AS3.%0D%0A%09http%3A%2F%2Fwww.ultrashock.com%2Ftutor......%20-%20A%20ActionScript%20tutorial%20step%20by%20step.%0D%0A%09http%3A%2F%2Fwww.flashandmath.com%2F%20-%20Good%20tutorial%20with%20complex%20example" title="Google Bookmarks"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=Useful%20Links%20for%20ActionScipt%20tutorial&amp;body=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-links-for-actionscipt-tutorial%2F" title="email"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://hellotxt.com/?status=Useful%20Links%20for%20ActionScipt%20tutorial+http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-links-for-actionscipt-tutorial%2F" title="HelloTxt"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/hellotxt.png" title="HelloTxt" alt="HelloTxt" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-links-for-actionscipt-tutorial%2F&amp;title=Useful%20Links%20for%20ActionScipt%20tutorial" title="Live"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://myshare.url.com.tw/index.php?func=newurl&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-links-for-actionscipt-tutorial%2F&amp;desc=Useful%20Links%20for%20ActionScipt%20tutorial" title="MyShare"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/myshare.png" title="MyShare" alt="MyShare" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-links-for-actionscipt-tutorial%2F&amp;t=Useful%20Links%20for%20ActionScipt%20tutorial" title="MySpace"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-links-for-actionscipt-tutorial%2F&amp;t=Useful%20Links%20for%20ActionScipt%20tutorial&amp;s=%0D%0A%09http%3A%2F%2Fwww.actionscript.org%2Freso......%20-%20A%20large%20number%20of%20tutorials%20and%20examples%20about%20AS2%20or%20AS3.%0D%0A%09http%3A%2F%2Fwww.ultrashock.com%2Ftutor......%20-%20A%20ActionScript%20tutorial%20step%20by%20step.%0D%0A%09http%3A%2F%2Fwww.flashandmath.com%2F%20-%20Good%20tutorial%20with%20complex%20example" title="Tumblr"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Useful%20Links%20for%20ActionScipt%20tutorial%20-%20http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-links-for-actionscipt-tutorial%2F" title="Twitter"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-links-for-actionscipt-tutorial%2F&amp;t=Useful%20Links%20for%20ActionScipt%20tutorial&opener=bm&amp;ei=UTF-8&amp;d=%0D%0A%09http%3A%2F%2Fwww.actionscript.org%2Freso......%20-%20A%20large%20number%20of%20tutorials%20and%20examples%20about%20AS2%20or%20AS3.%0D%0A%09http%3A%2F%2Fwww.ultrashock.com%2Ftutor......%20-%20A%20ActionScript%20tutorial%20step%20by%20step.%0D%0A%09http%3A%2F%2Fwww.flashandmath.com%2F%20-%20Good%20tutorial%20with%20complex%20example" title="Yahoo! Bookmarks"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://yigg.de/neu?exturl=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-links-for-actionscipt-tutorial%2F&amp;exttitle=Useful%20Links%20for%20ActionScipt%20tutorial" title="Yigg"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="" title="BlogMemes Fr"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/" title="BlogMemes Fr" alt="BlogMemes Fr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Useful%20Links%20for%20ActionScipt%20tutorial&amp;u=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-links-for-actionscipt-tutorial%2F" title="Fark"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=Useful%20Links%20for%20ActionScipt%20tutorial&amp;link=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-links-for-actionscipt-tutorial%2F" title="FriendFeed"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.haohaoreport.com/submit.php?url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-links-for-actionscipt-tutorial%2F&amp;title=Useful%20Links%20for%20ActionScipt%20tutorial" title="Haohao"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/haohao.png" title="Haohao" alt="Haohao" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-links-for-actionscipt-tutorial%2F&amp;title=Useful%20Links%20for%20ActionScipt%20tutorial&amp;source=An+L%C3%A1r+Town+center%2C+We+are+in%2C+We+live+in.&amp;summary=%0D%0A%09http%3A%2F%2Fwww.actionscript.org%2Freso......%20-%20A%20large%20number%20of%20tutorials%20and%20examples%20about%20AS2%20or%20AS3.%0D%0A%09http%3A%2F%2Fwww.ultrashock.com%2Ftutor......%20-%20A%20ActionScript%20tutorial%20step%20by%20step.%0D%0A%09http%3A%2F%2Fwww.flashandmath.com%2F%20-%20Good%20tutorial%20with%20complex%20example" title="LinkedIn"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-links-for-actionscipt-tutorial%2F&amp;bm_description=Useful%20Links%20for%20ActionScipt%20tutorial&amp;plugin=soc" title="MisterWong"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-links-for-actionscipt-tutorial%2F&amp;partner=sociable" title="PDF"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://ping.fm/ref/?link=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-links-for-actionscipt-tutorial%2F&amp;title=Useful%20Links%20for%20ActionScipt%20tutorial&amp;body=%0D%0A%09http%3A%2F%2Fwww.actionscript.org%2Freso......%20-%20A%20large%20number%20of%20tutorials%20and%20examples%20about%20AS2%20or%20AS3.%0D%0A%09http%3A%2F%2Fwww.ultrashock.com%2Ftutor......%20-%20A%20ActionScript%20tutorial%20step%20by%20step.%0D%0A%09http%3A%2F%2Fwww.flashandmath.com%2F%20-%20Good%20tutorial%20with%20complex%20example" title="Ping.fm"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://an-lar.com/feed/" title="RSS"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://slashdot.org/bookmark.pl?title=Useful%20Links%20for%20ActionScipt%20tutorial&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-links-for-actionscipt-tutorial%2F" title="Slashdot"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://socialogs.com/add_story.php?story_url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-links-for-actionscipt-tutorial%2F&amp;story_title=Useful%20Links%20for%20ActionScipt%20tutorial" title="Socialogs"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/socialogs.png" title="Socialogs" alt="Socialogs" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-links-for-actionscipt-tutorial%2F" title="Technorati"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://an-lar.com/2008/10/useful-links-for-actionscipt-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful Links for Flex online tutorial.</title>
		<link>http://an-lar.com/2008/10/useful-link-for-flex-online-tutorial/</link>
		<comments>http://an-lar.com/2008/10/useful-link-for-flex-online-tutorial/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 19:53:51 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Link]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[flex]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.an-lar.com/archives/46</guid>
		<description><![CDATA[
http://blog.flexexamples.com/ &#8211; I think is official flex development website. But, there are not info that I need. 
http://www.adobe.com/devnet/flex/ &#8211; Adobe Flex developer center
http://opensource.adobe.com/wiki/display/flexsdk/Developer+Documentation &#8211; Flex 3 Developer Documentation.
http://www.adobe.com/support/documentation/en/flex/ &#8211; Flex resources.

http://www.petefreitag.com/item/490.cfm &#8211; A simple example of flex, should be useful.
http://learn.adobe.com/wiki/display/Flex/1d.+RIA+Tutorial &#8211; Official flex&#38;AIR tutorial
http://riadiscuss.jeffmaury.com/2008/09/maven-and-flex-builder-tutorial-part-i.html &#8211; Flex builder tutorial
http://www.beedigital.net/blog/category/tutorial/flex-tutorial/ &#8211; Good video flex tutorial, there are [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li><big><a title="official flex development website" href="http://blog.flexexamples.com/">http://blog.flexexamples.com/</a> &#8211; <strong>I think is official flex development website. But, there are not info that I need. </strong></big></li>
<li><big><a title="Flex developer center" href="http://www.adobe.com/devnet/flex/">http://www.adobe.com/devnet/flex/</a><strong> &#8211; Adobe Flex developer center</strong></big></li>
<li><big><a title="flex 3 developer documentation" href="http://opensource.adobe.com/wiki/display/flexsdk/Developer+Documentation">http://opensource.adobe.com/wiki/display/flexsdk/Developer+Documentation</a><strong> &#8211; Flex 3 Developer Documentation.</strong></big></li>
<li><big><a title="flex resources" href="http://www.adobe.com/support/documentation/en/flex/">http://www.adobe.com/support/documentation/en/flex/</a><strong> &#8211; Flex resources.<br />
</strong></big></li>
<li><big><a title="simple example and tutorial for flex" href="http://www.petefreitag.com/item/490.cfm">http://www.petefreitag.com/item/490.cfm</a> &#8211; <strong>A simple example of flex, should be useful.</strong></big></li>
<li><big><a title="official flex and ria tutorial" href="http://learn.adobe.com/wiki/display/Flex/1d.+RIA+Tutorial">http://learn.adobe.com/wiki/display/Flex/1d.+RIA+Tutorial</a> &#8211; <strong>Official flex&amp;AIR tutorial</strong></big></li>
<li><big><a title="flex builder tutorial" href="http://riadiscuss.jeffmaury.com/2008/09/maven-and-flex-builder-tutorial-part-i.html">http://riadiscuss.jeffmaury.com/2008/09/maven-and-flex-builder-tutorial-part-i.html</a> &#8211; <strong>Flex builder tutorial</strong></big></li>
<li><big><a title="video flex tutorial" href="http://www.beedigital.net/blog/category/tutorial/flex-tutorial/">http://www.beedigital.net/blog/category/tutorial/flex-tutorial/</a> &#8211; <strong>Good video flex tutorial, there are infos I want. example flex communicate with php and database(http://www.flashmove.com/forum/showthread.php?t=31580).</strong></big></li>
<li><big><a title="19 stages for flex online utorial" href="http://www.visualbuilder.com/flex/tutorial/">http://www.visualbuilder.com/flex/tutorial/</a> &#8211; <strong>Good flex tutorial, you can became senior flex developer by 19 stages</strong></big></li>
<li><a href="http://www.actionscript.org/resources/categories/Tutorials/Flash/Beginner/"><big>http://www.actionscript.org/resources/categories/Tutorials/Flash/Beginner/</big></a><big><strong> &#8211; Actionscript online tutorial, also is useful in flex development.</strong></big></li>
</ul>
<p><big> If you know more than above links, you can share with us in following as a comment.</big></p>



Share and Enjoy:


	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-link-for-flex-online-tutorial%2F&amp;partner=sociable" title="Print"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-link-for-flex-online-tutorial%2F&amp;title=Useful%20Links%20for%20Flex%20online%20tutorial.&amp;bodytext=%0D%0A%09http%3A%2F%2Fblog.flexexamples.com%2F%20-%20I%20think%20is%20official%20flex%20development%20website.%20But%2C%20there%20are%20not%20info%20that%20I%20need.%20%0D%0A%09http%3A%2F%2Fwww.adobe.com%2Fdevnet%2Fflex%2F%20-%20Adobe%20Flex%20developer%20center%0D%0A%09http%3A%2F%2Fopensource.adobe.com%2Fwiki%2Fdisplay%2Fflexsdk%2FDeveloper%2BDocu" title="Digg"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-link-for-flex-online-tutorial%2F" title="Sphinn"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-link-for-flex-online-tutorial%2F&amp;title=Useful%20Links%20for%20Flex%20online%20tutorial.&amp;notes=%0D%0A%09http%3A%2F%2Fblog.flexexamples.com%2F%20-%20I%20think%20is%20official%20flex%20development%20website.%20But%2C%20there%20are%20not%20info%20that%20I%20need.%20%0D%0A%09http%3A%2F%2Fwww.adobe.com%2Fdevnet%2Fflex%2F%20-%20Adobe%20Flex%20developer%20center%0D%0A%09http%3A%2F%2Fopensource.adobe.com%2Fwiki%2Fdisplay%2Fflexsdk%2FDeveloper%2BDocu" title="del.icio.us"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-link-for-flex-online-tutorial%2F&amp;t=Useful%20Links%20for%20Flex%20online%20tutorial." title="Facebook"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-link-for-flex-online-tutorial%2F&amp;title=Useful%20Links%20for%20Flex%20online%20tutorial." title="Mixx"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-link-for-flex-online-tutorial%2F&amp;title=Useful%20Links%20for%20Flex%20online%20tutorial.&amp;annotation=%0D%0A%09http%3A%2F%2Fblog.flexexamples.com%2F%20-%20I%20think%20is%20official%20flex%20development%20website.%20But%2C%20there%20are%20not%20info%20that%20I%20need.%20%0D%0A%09http%3A%2F%2Fwww.adobe.com%2Fdevnet%2Fflex%2F%20-%20Adobe%20Flex%20developer%20center%0D%0A%09http%3A%2F%2Fopensource.adobe.com%2Fwiki%2Fdisplay%2Fflexsdk%2FDeveloper%2BDocu" title="Google Bookmarks"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=Useful%20Links%20for%20Flex%20online%20tutorial.&amp;body=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-link-for-flex-online-tutorial%2F" title="email"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://hellotxt.com/?status=Useful%20Links%20for%20Flex%20online%20tutorial.+http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-link-for-flex-online-tutorial%2F" title="HelloTxt"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/hellotxt.png" title="HelloTxt" alt="HelloTxt" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-link-for-flex-online-tutorial%2F&amp;title=Useful%20Links%20for%20Flex%20online%20tutorial." title="Live"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://myshare.url.com.tw/index.php?func=newurl&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-link-for-flex-online-tutorial%2F&amp;desc=Useful%20Links%20for%20Flex%20online%20tutorial." title="MyShare"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/myshare.png" title="MyShare" alt="MyShare" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-link-for-flex-online-tutorial%2F&amp;t=Useful%20Links%20for%20Flex%20online%20tutorial." title="MySpace"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-link-for-flex-online-tutorial%2F&amp;t=Useful%20Links%20for%20Flex%20online%20tutorial.&amp;s=%0D%0A%09http%3A%2F%2Fblog.flexexamples.com%2F%20-%20I%20think%20is%20official%20flex%20development%20website.%20But%2C%20there%20are%20not%20info%20that%20I%20need.%20%0D%0A%09http%3A%2F%2Fwww.adobe.com%2Fdevnet%2Fflex%2F%20-%20Adobe%20Flex%20developer%20center%0D%0A%09http%3A%2F%2Fopensource.adobe.com%2Fwiki%2Fdisplay%2Fflexsdk%2FDeveloper%2BDocu" title="Tumblr"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Useful%20Links%20for%20Flex%20online%20tutorial.%20-%20http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-link-for-flex-online-tutorial%2F" title="Twitter"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-link-for-flex-online-tutorial%2F&amp;t=Useful%20Links%20for%20Flex%20online%20tutorial.&opener=bm&amp;ei=UTF-8&amp;d=%0D%0A%09http%3A%2F%2Fblog.flexexamples.com%2F%20-%20I%20think%20is%20official%20flex%20development%20website.%20But%2C%20there%20are%20not%20info%20that%20I%20need.%20%0D%0A%09http%3A%2F%2Fwww.adobe.com%2Fdevnet%2Fflex%2F%20-%20Adobe%20Flex%20developer%20center%0D%0A%09http%3A%2F%2Fopensource.adobe.com%2Fwiki%2Fdisplay%2Fflexsdk%2FDeveloper%2BDocu" title="Yahoo! Bookmarks"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://yigg.de/neu?exturl=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-link-for-flex-online-tutorial%2F&amp;exttitle=Useful%20Links%20for%20Flex%20online%20tutorial." title="Yigg"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="" title="BlogMemes Fr"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/" title="BlogMemes Fr" alt="BlogMemes Fr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Useful%20Links%20for%20Flex%20online%20tutorial.&amp;u=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-link-for-flex-online-tutorial%2F" title="Fark"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=Useful%20Links%20for%20Flex%20online%20tutorial.&amp;link=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-link-for-flex-online-tutorial%2F" title="FriendFeed"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.haohaoreport.com/submit.php?url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-link-for-flex-online-tutorial%2F&amp;title=Useful%20Links%20for%20Flex%20online%20tutorial." title="Haohao"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/haohao.png" title="Haohao" alt="Haohao" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-link-for-flex-online-tutorial%2F&amp;title=Useful%20Links%20for%20Flex%20online%20tutorial.&amp;source=An+L%C3%A1r+Town+center%2C+We+are+in%2C+We+live+in.&amp;summary=%0D%0A%09http%3A%2F%2Fblog.flexexamples.com%2F%20-%20I%20think%20is%20official%20flex%20development%20website.%20But%2C%20there%20are%20not%20info%20that%20I%20need.%20%0D%0A%09http%3A%2F%2Fwww.adobe.com%2Fdevnet%2Fflex%2F%20-%20Adobe%20Flex%20developer%20center%0D%0A%09http%3A%2F%2Fopensource.adobe.com%2Fwiki%2Fdisplay%2Fflexsdk%2FDeveloper%2BDocu" title="LinkedIn"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-link-for-flex-online-tutorial%2F&amp;bm_description=Useful%20Links%20for%20Flex%20online%20tutorial.&amp;plugin=soc" title="MisterWong"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-link-for-flex-online-tutorial%2F&amp;partner=sociable" title="PDF"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://ping.fm/ref/?link=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-link-for-flex-online-tutorial%2F&amp;title=Useful%20Links%20for%20Flex%20online%20tutorial.&amp;body=%0D%0A%09http%3A%2F%2Fblog.flexexamples.com%2F%20-%20I%20think%20is%20official%20flex%20development%20website.%20But%2C%20there%20are%20not%20info%20that%20I%20need.%20%0D%0A%09http%3A%2F%2Fwww.adobe.com%2Fdevnet%2Fflex%2F%20-%20Adobe%20Flex%20developer%20center%0D%0A%09http%3A%2F%2Fopensource.adobe.com%2Fwiki%2Fdisplay%2Fflexsdk%2FDeveloper%2BDocu" title="Ping.fm"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://an-lar.com/feed/" title="RSS"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://slashdot.org/bookmark.pl?title=Useful%20Links%20for%20Flex%20online%20tutorial.&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-link-for-flex-online-tutorial%2F" title="Slashdot"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://socialogs.com/add_story.php?story_url=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-link-for-flex-online-tutorial%2F&amp;story_title=Useful%20Links%20for%20Flex%20online%20tutorial." title="Socialogs"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/socialogs.png" title="Socialogs" alt="Socialogs" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fan-lar.com%2F2008%2F10%2Fuseful-link-for-flex-online-tutorial%2F" title="Technorati"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://an-lar.com/2008/10/useful-link-for-flex-online-tutorial/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Good news: DesktopBSD 1.7 coming soon</title>
		<link>http://an-lar.com/2008/03/good-news-desktopbsd-17-coming-soon/</link>
		<comments>http://an-lar.com/2008/03/good-news-desktopbsd-17-coming-soon/#comments</comments>
		<pubDate>Sun, 23 Mar 2008 15:14:11 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[BSD Unix]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[DesktopBSD]]></category>

		<guid isPermaLink="false">http://www.an-lar.com/archives/34</guid>
		<description><![CDATA[
A first preview version of desktopBSD 1.7 is available in official website.  this snapshot version only support i386 machine. it doesn&#8217;t support am64 machine. A blog post of Official introduction says DesktopBSD based on the FreeBSD 7.0R (version 1.6 is base on the FreeBSd 6.3RC). and new version actiated some useful addons. But this [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.liduan.cn/images/icon/desktopbsd.jpg" style="max-width: 800px; float: left; margin-top: 10px; margin-bottom: 10px; margin-right: 10px;" />
<p><big>A first preview version of desktopBSD 1.7 is available in official website.  this snapshot version only support i386 machine. it doesn&#8217;t support am64 machine. A blog post of <a target="_blank" href="http://desktopbsd.net/blog/index.php/desktopbsd-17-snapshot/">Official introduction</a> says DesktopBSD based on the FreeBSD 7.0R (version 1.6 is base on the FreeBSd 6.3RC). and new version actiated some useful addons. But this blog post also warning there will be certainly some problems!</big></p>
<p>
<p><big>A iso image file has been hosted in ftp server. you can click link of <font face="verdana" size="3"><strong>&#8220;DesktopBSD Weekly Snapshots&#8221;</strong></font>section in <a href="http://desktopbsd.net/index.php?id=89">this page</a>. I am currently downloading this image file. After that, I will try snapshot and geting screenshot.</big></p>
<p><big>Other Desktop distribution <a href="http://www.pcbsd.org/">PC-BSD</a> (currently in version 1.5, also based in Freebsd 6.3) has no any plan about new version that based in new Freebsd7.  </big></p>



Share and Enjoy:


	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fgood-news-desktopbsd-17-coming-soon%2F&amp;partner=sociable" title="Print"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fgood-news-desktopbsd-17-coming-soon%2F&amp;title=Good%20news%3A%20DesktopBSD%201.7%20coming%20soon&amp;bodytext=A%20first%20preview%20version%20of%20desktopBSD%201.7%20is%20available%20in%20official%20website.%20%20this%20snapshot%20version%20only%20support%20i386%20machine.%20it%20doesn%27t%20support%20am64%20machine.%20A%20blog%20post%20of%20Official%20introduction%20says%20DesktopBSD%20based%20on%20the%20FreeBSD%207.0R%20%28version%201.6" title="Digg"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fgood-news-desktopbsd-17-coming-soon%2F" title="Sphinn"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fgood-news-desktopbsd-17-coming-soon%2F&amp;title=Good%20news%3A%20DesktopBSD%201.7%20coming%20soon&amp;notes=A%20first%20preview%20version%20of%20desktopBSD%201.7%20is%20available%20in%20official%20website.%20%20this%20snapshot%20version%20only%20support%20i386%20machine.%20it%20doesn%27t%20support%20am64%20machine.%20A%20blog%20post%20of%20Official%20introduction%20says%20DesktopBSD%20based%20on%20the%20FreeBSD%207.0R%20%28version%201.6" title="del.icio.us"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fgood-news-desktopbsd-17-coming-soon%2F&amp;t=Good%20news%3A%20DesktopBSD%201.7%20coming%20soon" title="Facebook"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fgood-news-desktopbsd-17-coming-soon%2F&amp;title=Good%20news%3A%20DesktopBSD%201.7%20coming%20soon" title="Mixx"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fgood-news-desktopbsd-17-coming-soon%2F&amp;title=Good%20news%3A%20DesktopBSD%201.7%20coming%20soon&amp;annotation=A%20first%20preview%20version%20of%20desktopBSD%201.7%20is%20available%20in%20official%20website.%20%20this%20snapshot%20version%20only%20support%20i386%20machine.%20it%20doesn%27t%20support%20am64%20machine.%20A%20blog%20post%20of%20Official%20introduction%20says%20DesktopBSD%20based%20on%20the%20FreeBSD%207.0R%20%28version%201.6" title="Google Bookmarks"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=Good%20news%3A%20DesktopBSD%201.7%20coming%20soon&amp;body=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fgood-news-desktopbsd-17-coming-soon%2F" title="email"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://hellotxt.com/?status=Good%20news%3A%20DesktopBSD%201.7%20coming%20soon+http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fgood-news-desktopbsd-17-coming-soon%2F" title="HelloTxt"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/hellotxt.png" title="HelloTxt" alt="HelloTxt" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fgood-news-desktopbsd-17-coming-soon%2F&amp;title=Good%20news%3A%20DesktopBSD%201.7%20coming%20soon" title="Live"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://myshare.url.com.tw/index.php?func=newurl&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fgood-news-desktopbsd-17-coming-soon%2F&amp;desc=Good%20news%3A%20DesktopBSD%201.7%20coming%20soon" title="MyShare"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/myshare.png" title="MyShare" alt="MyShare" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fgood-news-desktopbsd-17-coming-soon%2F&amp;t=Good%20news%3A%20DesktopBSD%201.7%20coming%20soon" title="MySpace"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fgood-news-desktopbsd-17-coming-soon%2F&amp;t=Good%20news%3A%20DesktopBSD%201.7%20coming%20soon&amp;s=A%20first%20preview%20version%20of%20desktopBSD%201.7%20is%20available%20in%20official%20website.%20%20this%20snapshot%20version%20only%20support%20i386%20machine.%20it%20doesn%27t%20support%20am64%20machine.%20A%20blog%20post%20of%20Official%20introduction%20says%20DesktopBSD%20based%20on%20the%20FreeBSD%207.0R%20%28version%201.6" title="Tumblr"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Good%20news%3A%20DesktopBSD%201.7%20coming%20soon%20-%20http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fgood-news-desktopbsd-17-coming-soon%2F" title="Twitter"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fgood-news-desktopbsd-17-coming-soon%2F&amp;t=Good%20news%3A%20DesktopBSD%201.7%20coming%20soon&opener=bm&amp;ei=UTF-8&amp;d=A%20first%20preview%20version%20of%20desktopBSD%201.7%20is%20available%20in%20official%20website.%20%20this%20snapshot%20version%20only%20support%20i386%20machine.%20it%20doesn%27t%20support%20am64%20machine.%20A%20blog%20post%20of%20Official%20introduction%20says%20DesktopBSD%20based%20on%20the%20FreeBSD%207.0R%20%28version%201.6" title="Yahoo! Bookmarks"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://yigg.de/neu?exturl=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fgood-news-desktopbsd-17-coming-soon%2F&amp;exttitle=Good%20news%3A%20DesktopBSD%201.7%20coming%20soon" title="Yigg"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="" title="BlogMemes Fr"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/" title="BlogMemes Fr" alt="BlogMemes Fr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Good%20news%3A%20DesktopBSD%201.7%20coming%20soon&amp;u=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fgood-news-desktopbsd-17-coming-soon%2F" title="Fark"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=Good%20news%3A%20DesktopBSD%201.7%20coming%20soon&amp;link=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fgood-news-desktopbsd-17-coming-soon%2F" title="FriendFeed"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.haohaoreport.com/submit.php?url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fgood-news-desktopbsd-17-coming-soon%2F&amp;title=Good%20news%3A%20DesktopBSD%201.7%20coming%20soon" title="Haohao"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/haohao.png" title="Haohao" alt="Haohao" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fgood-news-desktopbsd-17-coming-soon%2F&amp;title=Good%20news%3A%20DesktopBSD%201.7%20coming%20soon&amp;source=An+L%C3%A1r+Town+center%2C+We+are+in%2C+We+live+in.&amp;summary=A%20first%20preview%20version%20of%20desktopBSD%201.7%20is%20available%20in%20official%20website.%20%20this%20snapshot%20version%20only%20support%20i386%20machine.%20it%20doesn%27t%20support%20am64%20machine.%20A%20blog%20post%20of%20Official%20introduction%20says%20DesktopBSD%20based%20on%20the%20FreeBSD%207.0R%20%28version%201.6" title="LinkedIn"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fgood-news-desktopbsd-17-coming-soon%2F&amp;bm_description=Good%20news%3A%20DesktopBSD%201.7%20coming%20soon&amp;plugin=soc" title="MisterWong"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fgood-news-desktopbsd-17-coming-soon%2F&amp;partner=sociable" title="PDF"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://ping.fm/ref/?link=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fgood-news-desktopbsd-17-coming-soon%2F&amp;title=Good%20news%3A%20DesktopBSD%201.7%20coming%20soon&amp;body=A%20first%20preview%20version%20of%20desktopBSD%201.7%20is%20available%20in%20official%20website.%20%20this%20snapshot%20version%20only%20support%20i386%20machine.%20it%20doesn%27t%20support%20am64%20machine.%20A%20blog%20post%20of%20Official%20introduction%20says%20DesktopBSD%20based%20on%20the%20FreeBSD%207.0R%20%28version%201.6" title="Ping.fm"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://an-lar.com/feed/" title="RSS"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://slashdot.org/bookmark.pl?title=Good%20news%3A%20DesktopBSD%201.7%20coming%20soon&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fgood-news-desktopbsd-17-coming-soon%2F" title="Slashdot"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://socialogs.com/add_story.php?story_url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fgood-news-desktopbsd-17-coming-soon%2F&amp;story_title=Good%20news%3A%20DesktopBSD%201.7%20coming%20soon" title="Socialogs"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/socialogs.png" title="Socialogs" alt="Socialogs" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fgood-news-desktopbsd-17-coming-soon%2F" title="Technorati"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://an-lar.com/2008/03/good-news-desktopbsd-17-coming-soon/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>[Part Two]Building a Server with DesktopBSD 1.6(Database Server)</title>
		<link>http://an-lar.com/2008/03/part-twobuilding-a-server-with-desktopbsd-16database-server/</link>
		<comments>http://an-lar.com/2008/03/part-twobuilding-a-server-with-desktopbsd-16database-server/#comments</comments>
		<pubDate>Fri, 21 Mar 2008 19:40:05 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[DesktopBSD]]></category>

		<guid isPermaLink="false">http://www.an-lar.com/archives/33</guid>
		<description><![CDATA[There are a whole lot of Database platform in the IT world. For instance , Oracle,  Firebird, Sybase etc. I only choose two of them in this tutorial, they are mysql and postgresql.  Mysql is a open source project. It is a most popular database component in the personal hosting service. It can [...]]]></description>
			<content:encoded><![CDATA[<p><big>There are a whole lot of Database platform in the IT world. For instance , Oracle,  Firebird, Sybase etc. I only choose </big><img style="float: right; margin-top: 10px; margin-bottom: 10px; margin-left: 10px" src="http://liduan.cn/images/icon/mysqlandpostgresql.jpg" alt="" width="102" height="104" /><big>two of them in this tutorial, they are mysql and postgresql.  Mysql is a open source project. It is a most popular database component in the personal hosting service. It can work very well with PHP together. And, postgresql is also a open source project base on the BSD license. It&#8217;s an object-relational database system. compare with mysql. postgresql is more powerful feature like Views, Triggers, and Unions. on the other hand, the speed of mysql is faster than postgresql.</big></p>
<p><big>The ports system also will be used in building database. make sure your <a href="http://www.an-lar.com/archives/30">ports system has been update</a>. and versions of mysql and postgresql need be latest.</big></p>
<p><span id="more-33"></span><br />
<span style="text-decoration: underline;"><big><strong>1. MySQL 5.1 </strong></big></span><br />
<big>First of all, changing to root user by command &#8220;su&#8221;.</big></p>
<p><strong><big>1.1 Installation MySQL5.1</big></strong><br />
<big>Then, changing to mysql ports directory to install mysql 5.1.</big><br />
<code>
<pre class="brush: cpp">
$ cd /usr/ports/databases/mysql51-server/
$ make install clean</pre>
<p></code></p>
<p><big>You can use following option.</big><br />
<code>
<pre class="brush: bash">&lt;/code&gt;&lt;code&gt;WITH_CHARSET=charset    Define the primary built-in charset (latin1).
WITH_XCHARSET=list         Define other built-in charsets (may be &#039;all&#039;).
WITH_COLLATION=collate  Define default collation (latin1_swedish_ci).
WITH_OPENSSL=yes          Enable secure connections.
WITH_LINUXTHREADS=yes        Use the linuxthreads pthread library.
WITH_PROC_SCOPE_PTH=yes Use process scope threads
(try it if you use libpthread).
BUILD_OPTIMIZED=yes             Enable compiler optimizations
(use it if you need speed).
BUILD_STATIC=yes                    Build a static version of mysqld.
(use it if you need even more speed).
WITH_NDB=yes                          Enable support for NDB Cluster.&lt;/code&gt;&lt;/code&gt;&lt;/code&gt;&lt;/code&gt;
</pre>
<p><big>For example:</big><br />
<code>
<pre class="brush: bash">&lt;/code&gt;&lt;code&gt;$ make WITH_CHARSET=utf8 WITH_XCHARSET=all
WITH_COLLATION=utf8_unicode_ci BUILD_OPTIMIZED=yes
install clean&lt;/code&gt;&lt;/code&gt;&lt;/code&gt;&lt;/code&gt;
</pre>
<p><big><strong>1.2 Start MySQL server</strong></big><br />
<big>after a long time of waiting.you could start mysql server. add a line in the "/etc/rc.conf"</big><br />
<code>
<pre class="brush: bash">&lt;/code&gt;&lt;code&gt;mysql_enable=&quot;YES&quot;</pre>
<p></code><br />
<big>and. using command start server.</big><br />
<code>
<pre class="brush: bash">&lt;/code&gt;&lt;code&gt;$ /usr/local/ect/rc.d/mysql-server start</pre>
<p></code></p>
<p><strong><big>1.3 Configuration MySQL</big></strong><br />
<big>set the password of root user.</big><br />
<code>
<pre class="brush: bash">&lt;/code&gt;&lt;code&gt;$ mysql -u root -p</pre>
<p></code></p>
<p><big><span style="text-decoration: underline;"><strong><br />
2. PostgreSQL</strong></span></big><br />
<big>Keeping you currently in the root account.</big></p>
<p><big><strong>2.1 Installation PostgreSQL 8.3</strong></big><br />
<code>
<pre class="brush: bash">&lt;/code&gt;&lt;code&gt;$ /usr/ports/databases/postgresql83-server
make config install clean</pre>
<p></code><br />
<big>The you can choose model that you need in the Configuration interface.</big></p>
<p align="center"><img src="http://www.an-lar.com/wp-content/uploads/2008/03/clipboard02.jpg" alt="" width="527" height="319" /></p>
<p><big>add several new lines after finish installation in the file of "/etc/rc.conf"</big><br />
<code>
<pre class="brush: bash">&lt;/code&gt;&lt;code&gt;postgresql_enable=&quot;YES&quot;
postgresql_data=&quot;/var/db/pgsql/data&quot;  # you can change to your location
postgresql_flags=&quot;-w -s -m fast&quot;
postgresql_initdb_flags=&quot;--encoding=utf-8 --lc-collate=C&quot;
postgresql_class=&quot;default&quot;</pre>
<p></code></p>
<p><strong><big>2.2 Configuration</big></strong><br />
<big>make sure you have /var/db/pgsql/data directory in your location, if you do not have this directory. you need creat it by root account and change owner to user "pgsql" by command "chown". such as:</big><br />
<code>
<pre class="brush: bash">&lt;/code&gt;&lt;code&gt;mkdir /var/db/pgsql/data
chown pgsql:pgsql /var/db/pgsql/data</pre>
<p></code></p>
<p><big>A simple database should be created by user "pgsql". </big><br />
<code>
<pre class="brush: bash">&lt;/code&gt;&lt;code&gt;$ su pgsql   // using the root account to do this
$ initdb -D /var/db/pgsql/data
$ createuser -p  //change the password of database user &quot;pgsql&quot;.&lt;/code&gt;&lt;code&gt;</pre>
<p></code><code></code></p>
<p><big>Last but not least, start server:</big><br />
<code>
<pre class="brush: bash">&lt;/code&gt;&lt;code&gt;$  /usr/local/etc/rc.d/postgresql start</pre>
<p></code></p>
<p><big><br />
Next, we will build PHP development environment with Apache2 in the DesktopBSD.<br />
To be continued...</big></p>



Share and Enjoy:


	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-twobuilding-a-server-with-desktopbsd-16database-server%2F&amp;partner=sociable" title="Print"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-twobuilding-a-server-with-desktopbsd-16database-server%2F&amp;title=%5BPart%20Two%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28Database%20Server%29&amp;bodytext=There%20are%20a%20whole%20lot%20of%20Database%20platform%20in%20the%20IT%20world.%20For%20instance%20%2C%20Oracle%2C%20%20Firebird%2C%20Sybase%20etc.%20I%20only%20choose%20two%20of%20them%20in%20this%20tutorial%2C%20they%20are%20mysql%20and%20postgresql.%20%20Mysql%20is%20a%20open%20source%20project.%20It%20is%20a%20most%20popular%20database%20compon" title="Digg"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-twobuilding-a-server-with-desktopbsd-16database-server%2F" title="Sphinn"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-twobuilding-a-server-with-desktopbsd-16database-server%2F&amp;title=%5BPart%20Two%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28Database%20Server%29&amp;notes=There%20are%20a%20whole%20lot%20of%20Database%20platform%20in%20the%20IT%20world.%20For%20instance%20%2C%20Oracle%2C%20%20Firebird%2C%20Sybase%20etc.%20I%20only%20choose%20two%20of%20them%20in%20this%20tutorial%2C%20they%20are%20mysql%20and%20postgresql.%20%20Mysql%20is%20a%20open%20source%20project.%20It%20is%20a%20most%20popular%20database%20compon" title="del.icio.us"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-twobuilding-a-server-with-desktopbsd-16database-server%2F&amp;t=%5BPart%20Two%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28Database%20Server%29" title="Facebook"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-twobuilding-a-server-with-desktopbsd-16database-server%2F&amp;title=%5BPart%20Two%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28Database%20Server%29" title="Mixx"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-twobuilding-a-server-with-desktopbsd-16database-server%2F&amp;title=%5BPart%20Two%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28Database%20Server%29&amp;annotation=There%20are%20a%20whole%20lot%20of%20Database%20platform%20in%20the%20IT%20world.%20For%20instance%20%2C%20Oracle%2C%20%20Firebird%2C%20Sybase%20etc.%20I%20only%20choose%20two%20of%20them%20in%20this%20tutorial%2C%20they%20are%20mysql%20and%20postgresql.%20%20Mysql%20is%20a%20open%20source%20project.%20It%20is%20a%20most%20popular%20database%20compon" title="Google Bookmarks"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=%5BPart%20Two%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28Database%20Server%29&amp;body=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-twobuilding-a-server-with-desktopbsd-16database-server%2F" title="email"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://hellotxt.com/?status=%5BPart%20Two%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28Database%20Server%29+http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-twobuilding-a-server-with-desktopbsd-16database-server%2F" title="HelloTxt"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/hellotxt.png" title="HelloTxt" alt="HelloTxt" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-twobuilding-a-server-with-desktopbsd-16database-server%2F&amp;title=%5BPart%20Two%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28Database%20Server%29" title="Live"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://myshare.url.com.tw/index.php?func=newurl&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-twobuilding-a-server-with-desktopbsd-16database-server%2F&amp;desc=%5BPart%20Two%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28Database%20Server%29" title="MyShare"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/myshare.png" title="MyShare" alt="MyShare" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-twobuilding-a-server-with-desktopbsd-16database-server%2F&amp;t=%5BPart%20Two%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28Database%20Server%29" title="MySpace"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-twobuilding-a-server-with-desktopbsd-16database-server%2F&amp;t=%5BPart%20Two%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28Database%20Server%29&amp;s=There%20are%20a%20whole%20lot%20of%20Database%20platform%20in%20the%20IT%20world.%20For%20instance%20%2C%20Oracle%2C%20%20Firebird%2C%20Sybase%20etc.%20I%20only%20choose%20two%20of%20them%20in%20this%20tutorial%2C%20they%20are%20mysql%20and%20postgresql.%20%20Mysql%20is%20a%20open%20source%20project.%20It%20is%20a%20most%20popular%20database%20compon" title="Tumblr"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=%5BPart%20Two%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28Database%20Server%29%20-%20http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-twobuilding-a-server-with-desktopbsd-16database-server%2F" title="Twitter"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-twobuilding-a-server-with-desktopbsd-16database-server%2F&amp;t=%5BPart%20Two%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28Database%20Server%29&opener=bm&amp;ei=UTF-8&amp;d=There%20are%20a%20whole%20lot%20of%20Database%20platform%20in%20the%20IT%20world.%20For%20instance%20%2C%20Oracle%2C%20%20Firebird%2C%20Sybase%20etc.%20I%20only%20choose%20two%20of%20them%20in%20this%20tutorial%2C%20they%20are%20mysql%20and%20postgresql.%20%20Mysql%20is%20a%20open%20source%20project.%20It%20is%20a%20most%20popular%20database%20compon" title="Yahoo! Bookmarks"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://yigg.de/neu?exturl=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-twobuilding-a-server-with-desktopbsd-16database-server%2F&amp;exttitle=%5BPart%20Two%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28Database%20Server%29" title="Yigg"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="" title="BlogMemes Fr"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/" title="BlogMemes Fr" alt="BlogMemes Fr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://cgi.fark.com/cgi/fark/farkit.pl?h=%5BPart%20Two%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28Database%20Server%29&amp;u=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-twobuilding-a-server-with-desktopbsd-16database-server%2F" title="Fark"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=%5BPart%20Two%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28Database%20Server%29&amp;link=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-twobuilding-a-server-with-desktopbsd-16database-server%2F" title="FriendFeed"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.haohaoreport.com/submit.php?url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-twobuilding-a-server-with-desktopbsd-16database-server%2F&amp;title=%5BPart%20Two%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28Database%20Server%29" title="Haohao"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/haohao.png" title="Haohao" alt="Haohao" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-twobuilding-a-server-with-desktopbsd-16database-server%2F&amp;title=%5BPart%20Two%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28Database%20Server%29&amp;source=An+L%C3%A1r+Town+center%2C+We+are+in%2C+We+live+in.&amp;summary=There%20are%20a%20whole%20lot%20of%20Database%20platform%20in%20the%20IT%20world.%20For%20instance%20%2C%20Oracle%2C%20%20Firebird%2C%20Sybase%20etc.%20I%20only%20choose%20two%20of%20them%20in%20this%20tutorial%2C%20they%20are%20mysql%20and%20postgresql.%20%20Mysql%20is%20a%20open%20source%20project.%20It%20is%20a%20most%20popular%20database%20compon" title="LinkedIn"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-twobuilding-a-server-with-desktopbsd-16database-server%2F&amp;bm_description=%5BPart%20Two%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28Database%20Server%29&amp;plugin=soc" title="MisterWong"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-twobuilding-a-server-with-desktopbsd-16database-server%2F&amp;partner=sociable" title="PDF"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://ping.fm/ref/?link=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-twobuilding-a-server-with-desktopbsd-16database-server%2F&amp;title=%5BPart%20Two%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28Database%20Server%29&amp;body=There%20are%20a%20whole%20lot%20of%20Database%20platform%20in%20the%20IT%20world.%20For%20instance%20%2C%20Oracle%2C%20%20Firebird%2C%20Sybase%20etc.%20I%20only%20choose%20two%20of%20them%20in%20this%20tutorial%2C%20they%20are%20mysql%20and%20postgresql.%20%20Mysql%20is%20a%20open%20source%20project.%20It%20is%20a%20most%20popular%20database%20compon" title="Ping.fm"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://an-lar.com/feed/" title="RSS"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://slashdot.org/bookmark.pl?title=%5BPart%20Two%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28Database%20Server%29&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-twobuilding-a-server-with-desktopbsd-16database-server%2F" title="Slashdot"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://socialogs.com/add_story.php?story_url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-twobuilding-a-server-with-desktopbsd-16database-server%2F&amp;story_title=%5BPart%20Two%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28Database%20Server%29" title="Socialogs"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/socialogs.png" title="Socialogs" alt="Socialogs" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-twobuilding-a-server-with-desktopbsd-16database-server%2F" title="Technorati"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://an-lar.com/2008/03/part-twobuilding-a-server-with-desktopbsd-16database-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Part One]Building a Server with DesktopBSD 1.6(introduction)</title>
		<link>http://an-lar.com/2008/03/part-onebuilding-a-server-with-desktopbsd-16introduction/</link>
		<comments>http://an-lar.com/2008/03/part-onebuilding-a-server-with-desktopbsd-16introduction/#comments</comments>
		<pubDate>Mon, 10 Mar 2008 22:57:47 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[DesktopBSD]]></category>

		<guid isPermaLink="false">http://www.an-lar.com/archives/30</guid>
		<description><![CDATA[Why is DesktopBSD neither freeBSD or Linux. Firstly, DesktopBSD 1.6 is base on Freebsd 6.3. It is distribution ofFreeBSD. And Linux is same pretty good, but BSD is more better in old machine such as PIII cpu, 128M memory, Linux maybe can run in these kind of computers, but Linux can&#8217;t run other applications like [...]]]></description>
			<content:encoded><![CDATA[<p><big>Why is DesktopBSD neither freeBSD or Linux. Firstly, DesktopBSD 1.6 is base on Freebsd 6.3. It is distribution of</big><img SRC="http://www.liduan.cn/images/icon/desktopbsd.jpg" STYLE="float: right; margin-top: 10px; margin-bottom: 10px; margin-left: 10px" /><big>FreeBSD. And Linux is same pretty good, but BSD is more better in old machine such as PIII cpu, 128M memory, Linux maybe can run in these kind of computers, but Linux can&#8217;t run other applications like postgresql. </big></p>
<p><big>     And, DesktopBSD have pretty good graphical interface environment with KDE. that should save time of configuration of GUI. DesktopBSD also uses the ports system. we can easily install any software.</big></p>
<p><big>I plan to build a server support following service:</big></p>
<p><big>1. Databases service such as MySQL, PostgreSQL.<br />
2. PHP development environment with Apache2<br />
3. Files share service like NFS and Samba.<br />
4. JSP/Java development environment with Tomcat6<br />
5. FTP server<br />
6. DNS and Mail server.<br />
</big><br />
<span id="more-30"></span><br />
<big>I use a very old machine DELL  *D400*. </big></p>
<p><big>Before building the server, we need install a DesktopBSD system into a machine. DesktopBSD support a graphical installer, it allow to partition disks and create users. It is easy to use. Some screenshots show how to install a DesktopBSD in <a HREF="http://www.desktopbsd.net/index.php?id=42">here</a>.</big></p>
<p><big>After installation, we will to refresh the ports-tree. cvsup or portsnap could be used. I like use cvsup. In the DesktopBSD or Freebsd 6.3. there is a change for cvsup. command is csup not cvsup.</big><br />
<big><code>su<br />
cp /usr/share/examples/cvsup/ports-supfile /etc/ports-supfile<br />
 </code><br />
</big></p>
<p><big>makes you into root user, and change the configuration of cvsup</big><big><big>edit  file </big><big><br />
<code>ee /etc/ports-supfile</code></big></p>
<p><big>change this line</big><big><br />
<code>*default host= CHANGE_THIS.FreeBSD.org</code></big><br />
<big>To:</big><br />
<big><code>*default host= cvsup5.FreeBSD.org</code></big></p>
<p><big>Back to command line, update teh prots-tree</big><big><br />
<code>csup -g -L 2 /etc/ports-supfile<br />
cd /usr/ports<br />
make fetchindex</code></big></p>
<p><big><br />
Next, we will build databases service in the DesktopBSD.<br />
To be continued&#8230;<br />
</big></p>
<p></big></p>



Share and Enjoy:


	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-onebuilding-a-server-with-desktopbsd-16introduction%2F&amp;partner=sociable" title="Print"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-onebuilding-a-server-with-desktopbsd-16introduction%2F&amp;title=%5BPart%20One%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28introduction%29&amp;bodytext=Why%20is%20DesktopBSD%20neither%20freeBSD%20or%20Linux.%20Firstly%2C%20DesktopBSD%201.6%20is%20base%20on%20Freebsd%206.3.%20It%20is%20distribution%20ofFreeBSD.%20And%20Linux%20is%20same%20pretty%20good%2C%20but%20BSD%20is%20more%20better%20in%20old%20machine%20such%20as%20PIII%20cpu%2C%20128M%20memory%2C%20Linux%20maybe%20can%20run%20in%20these" title="Digg"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-onebuilding-a-server-with-desktopbsd-16introduction%2F" title="Sphinn"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-onebuilding-a-server-with-desktopbsd-16introduction%2F&amp;title=%5BPart%20One%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28introduction%29&amp;notes=Why%20is%20DesktopBSD%20neither%20freeBSD%20or%20Linux.%20Firstly%2C%20DesktopBSD%201.6%20is%20base%20on%20Freebsd%206.3.%20It%20is%20distribution%20ofFreeBSD.%20And%20Linux%20is%20same%20pretty%20good%2C%20but%20BSD%20is%20more%20better%20in%20old%20machine%20such%20as%20PIII%20cpu%2C%20128M%20memory%2C%20Linux%20maybe%20can%20run%20in%20these" title="del.icio.us"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-onebuilding-a-server-with-desktopbsd-16introduction%2F&amp;t=%5BPart%20One%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28introduction%29" title="Facebook"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-onebuilding-a-server-with-desktopbsd-16introduction%2F&amp;title=%5BPart%20One%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28introduction%29" title="Mixx"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-onebuilding-a-server-with-desktopbsd-16introduction%2F&amp;title=%5BPart%20One%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28introduction%29&amp;annotation=Why%20is%20DesktopBSD%20neither%20freeBSD%20or%20Linux.%20Firstly%2C%20DesktopBSD%201.6%20is%20base%20on%20Freebsd%206.3.%20It%20is%20distribution%20ofFreeBSD.%20And%20Linux%20is%20same%20pretty%20good%2C%20but%20BSD%20is%20more%20better%20in%20old%20machine%20such%20as%20PIII%20cpu%2C%20128M%20memory%2C%20Linux%20maybe%20can%20run%20in%20these" title="Google Bookmarks"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=%5BPart%20One%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28introduction%29&amp;body=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-onebuilding-a-server-with-desktopbsd-16introduction%2F" title="email"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://hellotxt.com/?status=%5BPart%20One%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28introduction%29+http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-onebuilding-a-server-with-desktopbsd-16introduction%2F" title="HelloTxt"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/hellotxt.png" title="HelloTxt" alt="HelloTxt" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-onebuilding-a-server-with-desktopbsd-16introduction%2F&amp;title=%5BPart%20One%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28introduction%29" title="Live"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://myshare.url.com.tw/index.php?func=newurl&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-onebuilding-a-server-with-desktopbsd-16introduction%2F&amp;desc=%5BPart%20One%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28introduction%29" title="MyShare"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/myshare.png" title="MyShare" alt="MyShare" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-onebuilding-a-server-with-desktopbsd-16introduction%2F&amp;t=%5BPart%20One%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28introduction%29" title="MySpace"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-onebuilding-a-server-with-desktopbsd-16introduction%2F&amp;t=%5BPart%20One%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28introduction%29&amp;s=Why%20is%20DesktopBSD%20neither%20freeBSD%20or%20Linux.%20Firstly%2C%20DesktopBSD%201.6%20is%20base%20on%20Freebsd%206.3.%20It%20is%20distribution%20ofFreeBSD.%20And%20Linux%20is%20same%20pretty%20good%2C%20but%20BSD%20is%20more%20better%20in%20old%20machine%20such%20as%20PIII%20cpu%2C%20128M%20memory%2C%20Linux%20maybe%20can%20run%20in%20these" title="Tumblr"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=%5BPart%20One%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28introduction%29%20-%20http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-onebuilding-a-server-with-desktopbsd-16introduction%2F" title="Twitter"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-onebuilding-a-server-with-desktopbsd-16introduction%2F&amp;t=%5BPart%20One%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28introduction%29&opener=bm&amp;ei=UTF-8&amp;d=Why%20is%20DesktopBSD%20neither%20freeBSD%20or%20Linux.%20Firstly%2C%20DesktopBSD%201.6%20is%20base%20on%20Freebsd%206.3.%20It%20is%20distribution%20ofFreeBSD.%20And%20Linux%20is%20same%20pretty%20good%2C%20but%20BSD%20is%20more%20better%20in%20old%20machine%20such%20as%20PIII%20cpu%2C%20128M%20memory%2C%20Linux%20maybe%20can%20run%20in%20these" title="Yahoo! Bookmarks"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://yigg.de/neu?exturl=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-onebuilding-a-server-with-desktopbsd-16introduction%2F&amp;exttitle=%5BPart%20One%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28introduction%29" title="Yigg"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="" title="BlogMemes Fr"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/" title="BlogMemes Fr" alt="BlogMemes Fr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://cgi.fark.com/cgi/fark/farkit.pl?h=%5BPart%20One%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28introduction%29&amp;u=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-onebuilding-a-server-with-desktopbsd-16introduction%2F" title="Fark"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=%5BPart%20One%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28introduction%29&amp;link=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-onebuilding-a-server-with-desktopbsd-16introduction%2F" title="FriendFeed"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.haohaoreport.com/submit.php?url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-onebuilding-a-server-with-desktopbsd-16introduction%2F&amp;title=%5BPart%20One%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28introduction%29" title="Haohao"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/haohao.png" title="Haohao" alt="Haohao" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-onebuilding-a-server-with-desktopbsd-16introduction%2F&amp;title=%5BPart%20One%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28introduction%29&amp;source=An+L%C3%A1r+Town+center%2C+We+are+in%2C+We+live+in.&amp;summary=Why%20is%20DesktopBSD%20neither%20freeBSD%20or%20Linux.%20Firstly%2C%20DesktopBSD%201.6%20is%20base%20on%20Freebsd%206.3.%20It%20is%20distribution%20ofFreeBSD.%20And%20Linux%20is%20same%20pretty%20good%2C%20but%20BSD%20is%20more%20better%20in%20old%20machine%20such%20as%20PIII%20cpu%2C%20128M%20memory%2C%20Linux%20maybe%20can%20run%20in%20these" title="LinkedIn"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-onebuilding-a-server-with-desktopbsd-16introduction%2F&amp;bm_description=%5BPart%20One%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28introduction%29&amp;plugin=soc" title="MisterWong"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-onebuilding-a-server-with-desktopbsd-16introduction%2F&amp;partner=sociable" title="PDF"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://ping.fm/ref/?link=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-onebuilding-a-server-with-desktopbsd-16introduction%2F&amp;title=%5BPart%20One%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28introduction%29&amp;body=Why%20is%20DesktopBSD%20neither%20freeBSD%20or%20Linux.%20Firstly%2C%20DesktopBSD%201.6%20is%20base%20on%20Freebsd%206.3.%20It%20is%20distribution%20ofFreeBSD.%20And%20Linux%20is%20same%20pretty%20good%2C%20but%20BSD%20is%20more%20better%20in%20old%20machine%20such%20as%20PIII%20cpu%2C%20128M%20memory%2C%20Linux%20maybe%20can%20run%20in%20these" title="Ping.fm"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://an-lar.com/feed/" title="RSS"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://slashdot.org/bookmark.pl?title=%5BPart%20One%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28introduction%29&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-onebuilding-a-server-with-desktopbsd-16introduction%2F" title="Slashdot"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://socialogs.com/add_story.php?story_url=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-onebuilding-a-server-with-desktopbsd-16introduction%2F&amp;story_title=%5BPart%20One%5DBuilding%20a%20Server%20with%20DesktopBSD%201.6%28introduction%29" title="Socialogs"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/socialogs.png" title="Socialogs" alt="Socialogs" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fan-lar.com%2F2008%2F03%2Fpart-onebuilding-a-server-with-desktopbsd-16introduction%2F" title="Technorati"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://an-lar.com/2008/03/part-onebuilding-a-server-with-desktopbsd-16introduction/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Unix Time Stamp Convert</title>
		<link>http://an-lar.com/2008/02/unix-time-stamp-convert/</link>
		<comments>http://an-lar.com/2008/02/unix-time-stamp-convert/#comments</comments>
		<pubDate>Mon, 25 Feb 2008 21:38:41 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Project]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Time Stamp]]></category>

		<guid isPermaLink="false">http://www.an-lar.com/archives/29</guid>
		<description><![CDATA[This is a nice program for convert unix time stamp and system time to each other. the program just use command line without GUI. User can easy convert 10 time stamps to system time, and just one system time to unix time stamp.


open your command line interface(in MSwindows open &#8220;RUN..&#8221; input &#8220;cmd&#8221;)
command utsconv like:
utsconv [OPTION [...]]]></description>
			<content:encoded><![CDATA[<p><big>This is a nice program for convert unix time stamp and system time to each other. the program just use command line without GUI.</big><big> User can easy convert 10 time stamps to system time, and just one system</big><big><img style="float: right; margin-top: 10px; margin-bottom: 10px; margin-left: 10px;" src="http://www.liduan.cn/images/icon/clock.jpeg" /></big><big> time to unix time stamp.<br />
</big><br />
<big><br />
open your command line interface(in MSwindows open &#8220;RUN..&#8221; input &#8220;cmd&#8221;)<br />
command utsconv like:</p>
<p>utsconv [OPTION -t, /t, -u, /u, -h, /h, .....] [TimeStamp/SystemTime]</big></p>
<p><span id="more-29"></span></p>
<div align="center"><u><big><b><a href="http://www.liduan.cn/attachment.php?f=attachment%2F2007_10%2Futsconv2_en_cn.zip">Download Here</a></b></big></u></div>
<p><big>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
example:<br />
1. Convert one or more(no more than 10) unix time stamp to system time.</p>
<p><b>utsconv -u 123456</b></p>
<p>or </p>
<p><b>utsconv -u 123456 234567 234567 </b></p>
<p>(* &#8216;-u&#8217; and &#8216;/u&#8217; are same option)</p>
<p>2. Convert one (only one) system time to unix time stamp.</p>
<p><b>utsconv -t 2008 2 22 12 25 59</b></p>
<p>(* &#8216;-t&#8217; and &#8216;/t&#8217; are same option)<br />
(** format is YYYY MM DD HH MI SS)</p>
<p>3. Getting help</p>
<p><b>utsconv -h</b></p>
<p>or</p>
<p><b>utsconv /h</p>
<p>utsconv &#8211;help</p>
<p>utsconv -?</p>
<p>utsconv /?</b></p>
<p>4. Getting version information</p>
<p><b>utsconv -v</b></p>
<p>or</p>
<p><b>utsconv /v</b></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
In unix system, if you upload &#8216;utsconv&#8217; to your *nix server by ftp, tftp or sftp. Please make sure the Transfer </p>
<p>mode is Binary. And you also need use command &#8216;chmod +x utsconv&#8217; change file mode.<br />
<u><br />
<b>Screen shot :</b></u></p>
<div align="center"><span style="font-size: medium;"><a href="http://picasaweb.google.com/goodheston/Utsconv/photo#5098507610597961762"><img src="http://lh3.google.com/goodheston/RsGJqKZRMCI/AAAAAAAAAX4/29sF97U1Qok/s400/Clipboard02.jpg" border="0" /></a><br />
Help</p>
<p></span><span style="font-size: medium;"><a href="http://picasaweb.google.com/goodheston/Utsconv/photo#5098507610597961778"><img src="http://lh3.google.com/goodheston/RsGJqKZRMDI/AAAAAAAAAYA/WWjkVssbhaU/s400/Clipboard05.jpg" border="0" /></a><br />
Version</p>
<p></span><span style="font-size: medium;"><a href="http://picasaweb.google.com/goodheston/Utsconv/photo#5098507610597961794"><img src="http://lh3.google.com/goodheston/RsGJqKZRMEI/AAAAAAAAAYI/BvJHiKo6MHc/s400/Clipboard07.jpg" border="0" /></a><br />
Convert Unix Time stamp</p>
<p></span><span style="font-size: medium;"><a href="http://picasaweb.google.com/goodheston/Utsconv/photo#5098507614892929106"><img src="http://lh4.google.com/goodheston/RsGJqaZRMFI/AAAAAAAAAYQ/hCKEJSCv4EA/s400/Clipboard10.jpg" border="0" /></a><br />
Convert System Time</p>
<p></span><span style="font-size: small;"><span style="font-size: medium;"><a href="http://picasaweb.google.com/goodheston/Utsconv/photo#5098507614892929122"><img src="http://lh4.google.com/goodheston/RsGJqaZRMGI/AAAAAAAAAYY/9mdbEVKdyvM/s400/Clipboard12.jpg" border="0" /></a><br />
In *nix</span><br />
</span></div>
<p><span style="font-size: medium;"></p>
<p></span></p>
<p></big></p>



Share and Enjoy:


	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Funix-time-stamp-convert%2F&amp;partner=sociable" title="Print"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Funix-time-stamp-convert%2F&amp;title=Unix%20Time%20Stamp%20Convert&amp;bodytext=This%20is%20a%20nice%20program%20for%20convert%20unix%20time%20stamp%20and%20system%20time%20to%20each%20other.%20the%20program%20just%20use%20command%20line%20without%20GUI.%20User%20can%20easy%20convert%2010%20time%20stamps%20to%20system%20time%2C%20and%20just%20one%20system%20time%20to%20unix%20time%20stamp.%0D%0A%0D%0A%0D%0Aopen%20your%20command%20" title="Digg"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Funix-time-stamp-convert%2F" title="Sphinn"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Funix-time-stamp-convert%2F&amp;title=Unix%20Time%20Stamp%20Convert&amp;notes=This%20is%20a%20nice%20program%20for%20convert%20unix%20time%20stamp%20and%20system%20time%20to%20each%20other.%20the%20program%20just%20use%20command%20line%20without%20GUI.%20User%20can%20easy%20convert%2010%20time%20stamps%20to%20system%20time%2C%20and%20just%20one%20system%20time%20to%20unix%20time%20stamp.%0D%0A%0D%0A%0D%0Aopen%20your%20command%20" title="del.icio.us"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Funix-time-stamp-convert%2F&amp;t=Unix%20Time%20Stamp%20Convert" title="Facebook"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Funix-time-stamp-convert%2F&amp;title=Unix%20Time%20Stamp%20Convert" title="Mixx"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Funix-time-stamp-convert%2F&amp;title=Unix%20Time%20Stamp%20Convert&amp;annotation=This%20is%20a%20nice%20program%20for%20convert%20unix%20time%20stamp%20and%20system%20time%20to%20each%20other.%20the%20program%20just%20use%20command%20line%20without%20GUI.%20User%20can%20easy%20convert%2010%20time%20stamps%20to%20system%20time%2C%20and%20just%20one%20system%20time%20to%20unix%20time%20stamp.%0D%0A%0D%0A%0D%0Aopen%20your%20command%20" title="Google Bookmarks"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=Unix%20Time%20Stamp%20Convert&amp;body=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Funix-time-stamp-convert%2F" title="email"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://hellotxt.com/?status=Unix%20Time%20Stamp%20Convert+http%3A%2F%2Fan-lar.com%2F2008%2F02%2Funix-time-stamp-convert%2F" title="HelloTxt"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/hellotxt.png" title="HelloTxt" alt="HelloTxt" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Funix-time-stamp-convert%2F&amp;title=Unix%20Time%20Stamp%20Convert" title="Live"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://myshare.url.com.tw/index.php?func=newurl&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Funix-time-stamp-convert%2F&amp;desc=Unix%20Time%20Stamp%20Convert" title="MyShare"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/myshare.png" title="MyShare" alt="MyShare" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Funix-time-stamp-convert%2F&amp;t=Unix%20Time%20Stamp%20Convert" title="MySpace"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Funix-time-stamp-convert%2F&amp;t=Unix%20Time%20Stamp%20Convert&amp;s=This%20is%20a%20nice%20program%20for%20convert%20unix%20time%20stamp%20and%20system%20time%20to%20each%20other.%20the%20program%20just%20use%20command%20line%20without%20GUI.%20User%20can%20easy%20convert%2010%20time%20stamps%20to%20system%20time%2C%20and%20just%20one%20system%20time%20to%20unix%20time%20stamp.%0D%0A%0D%0A%0D%0Aopen%20your%20command%20" title="Tumblr"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Unix%20Time%20Stamp%20Convert%20-%20http%3A%2F%2Fan-lar.com%2F2008%2F02%2Funix-time-stamp-convert%2F" title="Twitter"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Funix-time-stamp-convert%2F&amp;t=Unix%20Time%20Stamp%20Convert&opener=bm&amp;ei=UTF-8&amp;d=This%20is%20a%20nice%20program%20for%20convert%20unix%20time%20stamp%20and%20system%20time%20to%20each%20other.%20the%20program%20just%20use%20command%20line%20without%20GUI.%20User%20can%20easy%20convert%2010%20time%20stamps%20to%20system%20time%2C%20and%20just%20one%20system%20time%20to%20unix%20time%20stamp.%0D%0A%0D%0A%0D%0Aopen%20your%20command%20" title="Yahoo! Bookmarks"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://yigg.de/neu?exturl=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Funix-time-stamp-convert%2F&amp;exttitle=Unix%20Time%20Stamp%20Convert" title="Yigg"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="" title="BlogMemes Fr"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/" title="BlogMemes Fr" alt="BlogMemes Fr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Unix%20Time%20Stamp%20Convert&amp;u=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Funix-time-stamp-convert%2F" title="Fark"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=Unix%20Time%20Stamp%20Convert&amp;link=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Funix-time-stamp-convert%2F" title="FriendFeed"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.haohaoreport.com/submit.php?url=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Funix-time-stamp-convert%2F&amp;title=Unix%20Time%20Stamp%20Convert" title="Haohao"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/haohao.png" title="Haohao" alt="Haohao" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Funix-time-stamp-convert%2F&amp;title=Unix%20Time%20Stamp%20Convert&amp;source=An+L%C3%A1r+Town+center%2C+We+are+in%2C+We+live+in.&amp;summary=This%20is%20a%20nice%20program%20for%20convert%20unix%20time%20stamp%20and%20system%20time%20to%20each%20other.%20the%20program%20just%20use%20command%20line%20without%20GUI.%20User%20can%20easy%20convert%2010%20time%20stamps%20to%20system%20time%2C%20and%20just%20one%20system%20time%20to%20unix%20time%20stamp.%0D%0A%0D%0A%0D%0Aopen%20your%20command%20" title="LinkedIn"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Funix-time-stamp-convert%2F&amp;bm_description=Unix%20Time%20Stamp%20Convert&amp;plugin=soc" title="MisterWong"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Funix-time-stamp-convert%2F&amp;partner=sociable" title="PDF"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://ping.fm/ref/?link=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Funix-time-stamp-convert%2F&amp;title=Unix%20Time%20Stamp%20Convert&amp;body=This%20is%20a%20nice%20program%20for%20convert%20unix%20time%20stamp%20and%20system%20time%20to%20each%20other.%20the%20program%20just%20use%20command%20line%20without%20GUI.%20User%20can%20easy%20convert%2010%20time%20stamps%20to%20system%20time%2C%20and%20just%20one%20system%20time%20to%20unix%20time%20stamp.%0D%0A%0D%0A%0D%0Aopen%20your%20command%20" title="Ping.fm"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://an-lar.com/feed/" title="RSS"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://slashdot.org/bookmark.pl?title=Unix%20Time%20Stamp%20Convert&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Funix-time-stamp-convert%2F" title="Slashdot"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://socialogs.com/add_story.php?story_url=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Funix-time-stamp-convert%2F&amp;story_title=Unix%20Time%20Stamp%20Convert" title="Socialogs"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/socialogs.png" title="Socialogs" alt="Socialogs" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Funix-time-stamp-convert%2F" title="Technorati"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://an-lar.com/2008/02/unix-time-stamp-convert/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Making a FreeBSD DVD in Windows System</title>
		<link>http://an-lar.com/2008/02/making-a-freebsd-dvd-in-windows-system/</link>
		<comments>http://an-lar.com/2008/02/making-a-freebsd-dvd-in-windows-system/#comments</comments>
		<pubDate>Wed, 13 Feb 2008 21:28:40 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[BSD Unix]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[FreeBSD]]></category>

		<guid isPermaLink="false">http://www.an-lar.com/archives/27</guid>
		<description><![CDATA[There are only CD ISO image in the FreeBSD official website. installation FreeBSD by 2 or 3 CD is inconvenient. we need replace CD one by one. so a DVD installation disc will save a lot of times and work.


The following Tools will be used in the work of creating DVD ISO image: WinRAR, CD [...]]]></description>
			<content:encoded><![CDATA[<p><big>There are only CD ISO image in the FreeBSD official website. installation FreeBSD by 2 or 3 CD is inconvenient. we need replace CD one by one. so a DVD installation disc will save a lot of times and work.</big></p>
<div align="center"><img src="http://www.freebsd.org/layout/images/logo-red.png" />
</div>
<p><big>The following Tools will be used in the work of creating DVD ISO image: WinRAR, CD ISO 1 to 3 of Freebsd(I use Freebsd6.3), UltraISO (winISO also can work in this project, but I like UltraISO) and emeditor(or any editor who support unix text format). Moreover if you want burn DVD-ROM, your need software of burning and DVD-RW driver and DVD-R or DVD-RW disc.</big></p>
<p><span id="more-27"></span></p>
<p><big>Before start, you need check md5 of each CD ISO image. you need make sure each image files have no problem in the downloading.</big></p>
<p align="center"><a href="http://picasaweb.google.com/inputx/Freebsd_dvd_iso/photo#5166563196939049266"><img src="http://lh6.google.com/inputx/R7NR2p8omTI/AAAAAAAAAwo/Gj2wpAI-nLk/s400/freebsd_DVD_iso_01.jpg" /></a></p>
<p align="center"><a href="http://picasaweb.google.com/inputx/Freebsd_dvd_iso/photo#5166563196939049282"><img src="http://lh6.google.com/inputx/R7NR2p8omUI/AAAAAAAAAww/jrivXNCeBn4/s400/freebsd_DVD_iso_02.jpg" /></a></p>
<p><big>First of all, Export ISO image files of disc 2 and 3 to individual folder, we call folder of disc 2 is &#8220;disc2&#8243; and other is &#8220;disc3&#8243;. you don&#8217;t need to export disc 1 ISO image. Just leave it.</big></p>
<p align="center"><a href="http://picasaweb.google.com/inputx/Freebsd_dvd_iso/photo#5166563196939049298"><img src="http://lh6.google.com/inputx/R7NR2p8omVI/AAAAAAAAAw4/doVJLYvyTFI/s400/freebsd_DVD_iso_03.jpg" /></a></p>
<p align="center"><a href="http://picasaweb.google.com/inputx/Freebsd_dvd_iso/photo#5166563201234016610"><img src="http://lh3.google.com/inputx/R7NR258omWI/AAAAAAAAAxA/PRg1u-XnTxc/s400/freebsd_DVD_iso_04.jpg" /></a></p>
<p><big>After exporting, Search a file that name is &#8220;INDEX&#8221; in the folder &#8220;disc2&#8243; or &#8220;disc3&#8243;. in fact, wherever three disc ISO images, there are three files of &#8220;INDEX&#8221; with same content. Just copy any one of them to the same folder with disc 1 ISO image file.</big></p>
<p align="center"><a href="http://picasaweb.google.com/inputx/Freebsd_dvd_iso/photo#5166563201234016626"><img src="http://lh3.google.com/inputx/R7NR258omXI/AAAAAAAAAxI/n4JbVZ_vsOo/s400/freebsd_DVD_iso_05.jpg" /></a></p>
<p align="center"><a href="http://picasaweb.google.com/inputx/Freebsd_dvd_iso/photo#5166563617845844354"><img src="http://lh4.google.com/inputx/R7NSPJ8omYI/AAAAAAAAAxQ/Joe91ny5xAs/s400/freebsd_DVD_iso_06.jpg" /></a></p>
<p><big>Open &#8220;INDEX&#8221; at emeditor, replace all &#8220;|2&#8243; and &#8220;|3&#8243; to &#8220;|1&#8243;. File &#8220;INDEX&#8221; just record which disc hold each package. if we making a DVD ISO image, all packages will be hold in disc one. that is why &#8220;INDEX&#8221; need be changed.</big></p>
<p align="center"><a href="http://picasaweb.google.com/inputx/Freebsd_dvd_iso/photo#5166563626435778962"><img src="http://lh6.google.com/inputx/R7NSPp8omZI/AAAAAAAAAxY/_akwPzqvs-g/s400/freebsd_DVD_iso_07.jpg" /></a></p>
<p align="center"><a href="http://picasaweb.google.com/inputx/Freebsd_dvd_iso/photo#5166563669385451938"><img src="http://lh4.google.com/inputx/R7NSSJ8omaI/AAAAAAAAAxg/ydS_WuEtGnI/s400/freebsd_DVD_iso_08.jpg" /></a></p>
<p align="center"><a href="http://picasaweb.google.com/inputx/Freebsd_dvd_iso/photo#5166563673680419250"><img src="http://lh5.google.com/inputx/R7NSSZ8ombI/AAAAAAAAAxo/IDbid3QTuNc/s400/freebsd_DVD_iso_09.jpg" /></a></p>
<p align="center"><a href="http://picasaweb.google.com/inputx/Freebsd_dvd_iso/photo#5166563677975386562"><img src="http://lh6.google.com/inputx/R7NSSp8omcI/AAAAAAAAAxw/bMiR-B08FIQ/s400/freebsd_DVD_iso_10.jpg" /></a></p>
<p><big>Then, we could add all packages of &#8220;disc2&#8243; and &#8220;disc3&#8243; to first ISO image. using UltraISO open ISO image of disc 1. using &#8220;add&#8221; command add the all folders of &#8220;package&#8221; folder under the &#8220;disc2&#8243;. Do same thing with &#8220;disc3&#8243; folder.</big></p>
<p align="center"><a href="http://picasaweb.google.com/inputx/Freebsd_dvd_iso/photo#5166563828299241938"><img src="http://lh5.google.com/inputx/R7NSbZ8omdI/AAAAAAAAAx8/MA6ObTs628o/s400/freebsd_DVD_iso_11.jpg" /></a></p>
<p align="center"><a href="http://picasaweb.google.com/inputx/Freebsd_dvd_iso/photo#5166563832594209250"><img src="http://lh6.google.com/inputx/R7NSbp8omeI/AAAAAAAAAyE/esQ1g0IVhTA/s400/freebsd_DVD_iso_12.jpg" /></a></p>
<p align="center"><a href="http://picasaweb.google.com/inputx/Freebsd_dvd_iso/photo#5166563832594209266"><img src="http://lh6.google.com/inputx/R7NSbp8omfI/AAAAAAAAAyM/YWQZVtRyxPE/s400/freebsd_DVD_iso_13.jpg" /></a></p>
<p><big>Following, update file &#8220;INDEX&#8221; of disc one file by the file that you have changed. </p>
<p>Last but not least, save the ISO image file. </p>
<p>Now, you can burn FreeBSD in any DVD-R or DVD-RW by this ISO image.</big></p>



Share and Enjoy:


	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Fmaking-a-freebsd-dvd-in-windows-system%2F&amp;partner=sociable" title="Print"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Fmaking-a-freebsd-dvd-in-windows-system%2F&amp;title=Making%20a%20FreeBSD%20DVD%20in%20Windows%20System&amp;bodytext=There%20are%20only%20CD%20ISO%20image%20in%20the%20FreeBSD%20official%20website.%20installation%20FreeBSD%20by%202%20or%203%20CD%20is%20inconvenient.%20we%20need%20replace%20CD%20one%20by%20one.%20so%20a%20DVD%20installation%20disc%20will%20save%20a%20lot%20of%20times%20and%20work.%0D%0A%0D%0A%0D%0A%0D%0AThe%20following%20Tools%20will%20be%20used%20in%20th" title="Digg"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Fmaking-a-freebsd-dvd-in-windows-system%2F" title="Sphinn"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Fmaking-a-freebsd-dvd-in-windows-system%2F&amp;title=Making%20a%20FreeBSD%20DVD%20in%20Windows%20System&amp;notes=There%20are%20only%20CD%20ISO%20image%20in%20the%20FreeBSD%20official%20website.%20installation%20FreeBSD%20by%202%20or%203%20CD%20is%20inconvenient.%20we%20need%20replace%20CD%20one%20by%20one.%20so%20a%20DVD%20installation%20disc%20will%20save%20a%20lot%20of%20times%20and%20work.%0D%0A%0D%0A%0D%0A%0D%0AThe%20following%20Tools%20will%20be%20used%20in%20th" title="del.icio.us"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Fmaking-a-freebsd-dvd-in-windows-system%2F&amp;t=Making%20a%20FreeBSD%20DVD%20in%20Windows%20System" title="Facebook"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Fmaking-a-freebsd-dvd-in-windows-system%2F&amp;title=Making%20a%20FreeBSD%20DVD%20in%20Windows%20System" title="Mixx"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Fmaking-a-freebsd-dvd-in-windows-system%2F&amp;title=Making%20a%20FreeBSD%20DVD%20in%20Windows%20System&amp;annotation=There%20are%20only%20CD%20ISO%20image%20in%20the%20FreeBSD%20official%20website.%20installation%20FreeBSD%20by%202%20or%203%20CD%20is%20inconvenient.%20we%20need%20replace%20CD%20one%20by%20one.%20so%20a%20DVD%20installation%20disc%20will%20save%20a%20lot%20of%20times%20and%20work.%0D%0A%0D%0A%0D%0A%0D%0AThe%20following%20Tools%20will%20be%20used%20in%20th" title="Google Bookmarks"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=Making%20a%20FreeBSD%20DVD%20in%20Windows%20System&amp;body=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Fmaking-a-freebsd-dvd-in-windows-system%2F" title="email"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://hellotxt.com/?status=Making%20a%20FreeBSD%20DVD%20in%20Windows%20System+http%3A%2F%2Fan-lar.com%2F2008%2F02%2Fmaking-a-freebsd-dvd-in-windows-system%2F" title="HelloTxt"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/hellotxt.png" title="HelloTxt" alt="HelloTxt" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Fmaking-a-freebsd-dvd-in-windows-system%2F&amp;title=Making%20a%20FreeBSD%20DVD%20in%20Windows%20System" title="Live"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://myshare.url.com.tw/index.php?func=newurl&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Fmaking-a-freebsd-dvd-in-windows-system%2F&amp;desc=Making%20a%20FreeBSD%20DVD%20in%20Windows%20System" title="MyShare"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/myshare.png" title="MyShare" alt="MyShare" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Fmaking-a-freebsd-dvd-in-windows-system%2F&amp;t=Making%20a%20FreeBSD%20DVD%20in%20Windows%20System" title="MySpace"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Fmaking-a-freebsd-dvd-in-windows-system%2F&amp;t=Making%20a%20FreeBSD%20DVD%20in%20Windows%20System&amp;s=There%20are%20only%20CD%20ISO%20image%20in%20the%20FreeBSD%20official%20website.%20installation%20FreeBSD%20by%202%20or%203%20CD%20is%20inconvenient.%20we%20need%20replace%20CD%20one%20by%20one.%20so%20a%20DVD%20installation%20disc%20will%20save%20a%20lot%20of%20times%20and%20work.%0D%0A%0D%0A%0D%0A%0D%0AThe%20following%20Tools%20will%20be%20used%20in%20th" title="Tumblr"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Making%20a%20FreeBSD%20DVD%20in%20Windows%20System%20-%20http%3A%2F%2Fan-lar.com%2F2008%2F02%2Fmaking-a-freebsd-dvd-in-windows-system%2F" title="Twitter"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Fmaking-a-freebsd-dvd-in-windows-system%2F&amp;t=Making%20a%20FreeBSD%20DVD%20in%20Windows%20System&opener=bm&amp;ei=UTF-8&amp;d=There%20are%20only%20CD%20ISO%20image%20in%20the%20FreeBSD%20official%20website.%20installation%20FreeBSD%20by%202%20or%203%20CD%20is%20inconvenient.%20we%20need%20replace%20CD%20one%20by%20one.%20so%20a%20DVD%20installation%20disc%20will%20save%20a%20lot%20of%20times%20and%20work.%0D%0A%0D%0A%0D%0A%0D%0AThe%20following%20Tools%20will%20be%20used%20in%20th" title="Yahoo! Bookmarks"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://yigg.de/neu?exturl=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Fmaking-a-freebsd-dvd-in-windows-system%2F&amp;exttitle=Making%20a%20FreeBSD%20DVD%20in%20Windows%20System" title="Yigg"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="" title="BlogMemes Fr"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/" title="BlogMemes Fr" alt="BlogMemes Fr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Making%20a%20FreeBSD%20DVD%20in%20Windows%20System&amp;u=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Fmaking-a-freebsd-dvd-in-windows-system%2F" title="Fark"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=Making%20a%20FreeBSD%20DVD%20in%20Windows%20System&amp;link=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Fmaking-a-freebsd-dvd-in-windows-system%2F" title="FriendFeed"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.haohaoreport.com/submit.php?url=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Fmaking-a-freebsd-dvd-in-windows-system%2F&amp;title=Making%20a%20FreeBSD%20DVD%20in%20Windows%20System" title="Haohao"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/haohao.png" title="Haohao" alt="Haohao" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Fmaking-a-freebsd-dvd-in-windows-system%2F&amp;title=Making%20a%20FreeBSD%20DVD%20in%20Windows%20System&amp;source=An+L%C3%A1r+Town+center%2C+We+are+in%2C+We+live+in.&amp;summary=There%20are%20only%20CD%20ISO%20image%20in%20the%20FreeBSD%20official%20website.%20installation%20FreeBSD%20by%202%20or%203%20CD%20is%20inconvenient.%20we%20need%20replace%20CD%20one%20by%20one.%20so%20a%20DVD%20installation%20disc%20will%20save%20a%20lot%20of%20times%20and%20work.%0D%0A%0D%0A%0D%0A%0D%0AThe%20following%20Tools%20will%20be%20used%20in%20th" title="LinkedIn"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Fmaking-a-freebsd-dvd-in-windows-system%2F&amp;bm_description=Making%20a%20FreeBSD%20DVD%20in%20Windows%20System&amp;plugin=soc" title="MisterWong"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Fmaking-a-freebsd-dvd-in-windows-system%2F&amp;partner=sociable" title="PDF"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://ping.fm/ref/?link=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Fmaking-a-freebsd-dvd-in-windows-system%2F&amp;title=Making%20a%20FreeBSD%20DVD%20in%20Windows%20System&amp;body=There%20are%20only%20CD%20ISO%20image%20in%20the%20FreeBSD%20official%20website.%20installation%20FreeBSD%20by%202%20or%203%20CD%20is%20inconvenient.%20we%20need%20replace%20CD%20one%20by%20one.%20so%20a%20DVD%20installation%20disc%20will%20save%20a%20lot%20of%20times%20and%20work.%0D%0A%0D%0A%0D%0A%0D%0AThe%20following%20Tools%20will%20be%20used%20in%20th" title="Ping.fm"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://an-lar.com/feed/" title="RSS"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://slashdot.org/bookmark.pl?title=Making%20a%20FreeBSD%20DVD%20in%20Windows%20System&amp;url=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Fmaking-a-freebsd-dvd-in-windows-system%2F" title="Slashdot"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://socialogs.com/add_story.php?story_url=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Fmaking-a-freebsd-dvd-in-windows-system%2F&amp;story_title=Making%20a%20FreeBSD%20DVD%20in%20Windows%20System" title="Socialogs"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/socialogs.png" title="Socialogs" alt="Socialogs" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fan-lar.com%2F2008%2F02%2Fmaking-a-freebsd-dvd-in-windows-system%2F" title="Technorati"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://an-lar.com/2008/02/making-a-freebsd-dvd-in-windows-system/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>fedora 8</title>
		<link>http://an-lar.com/2007/11/fedora-8/</link>
		<comments>http://an-lar.com/2007/11/fedora-8/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 21:47:41 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.an-lar.com/archives/24</guid>
		<description><![CDATA[fedora, a good project about linux. this is version 8.
 



&#160;

&#160;










&#60;
a href=&#8221;http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131227271869157202&#8243;&#62;




















Share and Enjoy:


	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<p>fedora, a good project about linux. this is version 8.</p>
<p><center> <embed src="http://picasaweb.google.com/s/c/bin/slideshow.swf" type="application/x-shockwave-flash" flashvars="host=picasaweb.google.com&amp;captions=1&amp;RGB=0x000000&amp;feed=http%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2Finputx%2Falbumid%2F5131226795127786801%3Fkind%3Dphoto%26alt%3Drss%26authkey%3D9gyQi98jF8o" pluginspage="http://www.macromedia.com/go/getflashplayer" height="300" width="400"></embed></center><br />
<span id="more-24"></span></p>
<p align="center"><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131226812307656002"><img src="http://lh5.google.com/inputx/RzXHmXGOzUI/AAAAAAAAAoU/dBcqROUKeb0/s400/Fedora_8_01.jpg" /></a></p>
<p align="center"><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131226829487525202"><img src="http://lh5.google.com/inputx/RzXHnXGOzVI/AAAAAAAAAoc/tGHCMPBMeMg/s400/Fedora_8_02.jpg" /></a></p>
<p align="center">&nbsp;</p>
<p align="center"><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131226842372427106"><img src="http://lh4.google.com/inputx/RzXHoHGOzWI/AAAAAAAAAok/v2Bq_nD6BCU/s400/Fedora_8_03.jpg" /></a></p>
<p align="center">&nbsp;</p>
<p align="center"><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131226855257329010"><img src="http://lh3.google.com/inputx/RzXHo3GOzXI/AAAAAAAAAos/lNce3Ldtrrg/s400/Fedora_8_04.jpg" /></a></p>
<p align="center"><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131226868142230914"><img src="http://lh6.google.com/inputx/RzXHpnGOzYI/AAAAAAAAAo0/c-XaWzPb7Q8/s400/Fedora_8_05.jpg" /></a><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131226881027132818"><img src="http://lh5.google.com/inputx/RzXHqXGOzZI/AAAAAAAAAo8/7NMk1N0jxKk/s400/Fedora_8_06.jpg" /></a></p>
<p><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131226898207002018"><img src="http://lh5.google.com/inputx/RzXHrXGOzaI/AAAAAAAAApE/NLTkTSxRAcY/s400/Fedora_8_07.jpg" /></a></p>
<p><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131226906796936626"><img src="http://lh3.google.com/inputx/RzXHr3GOzbI/AAAAAAAAApM/rT1bKcw1WzU/s400/Fedora_8_08.jpg" /></a></p>
<p><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131226919681838530"><img src="http://lh6.google.com/inputx/RzXHsnGOzcI/AAAAAAAAApU/h8J5qSkPs7Y/s400/Fedora_8_09.jpg" /></a></p>
<p><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131226932566740434"><img src="http://lh5.google.com/inputx/RzXHtXGOzdI/AAAAAAAAApc/mhH1Dtrx7as/s400/Fedora_8_10.jpg" /></a></p>
<p><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131226949746609634"><img src="http://lh5.google.com/inputx/RzXHuXGOzeI/AAAAAAAAApk/xga9mENt79Q/s400/Fedora_8_11.jpg" /></a></p>
<p><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131226962631511538"><img src="http://lh4.google.com/inputx/RzXHvHGOzfI/AAAAAAAAAps/wY1rGBWbJ98/s400/Fedora_8_12.jpg" /></a></p>
<p align="center"><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131227194559745778"><img src="http://lh6.google.com/inputx/RzXH8nGOzvI/AAAAAAAAArw/0TjWescS06E/s400/Fedora_8_14.jpg" /></a></p>
<p align="center"><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131227207444647682"><img src="http://lh5.google.com/inputx/RzXH9XGOzwI/AAAAAAAAAr4/Dg68X81qaFE/s400/Fedora_8_15.jpg" /></a><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131227237509418786"><img src="http://lh4.google.com/inputx/RzXH_HGOzyI/AAAAAAAAAsI/JfduZEwz0M8/s400/Fedora_8_16.jpg" /></a></p>
<p><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131227250394320690"><img src="http://lh3.google.com/inputx/RzXH_3GOzzI/AAAAAAAAAsQ/SUEuRhaRybY/s400/Fedora_8_17.jpg" /></a>&lt;</p>
<p>a href=&#8221;http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131227271869157202&#8243;&gt;<img src="http://lh4.google.com/inputx/RzXIBHGOz1I/AAAAAAAAAsg/9DWyrt1tijY/s400/Fedora_8_18.jpg" /></p>
<p><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131227284754059106"><img src="http://lh3.google.com/inputx/RzXIB3GOz2I/AAAAAAAAAso/MawQ86HZBhk/s400/Fedora_8_19.jpg" /></a></p>
<p><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131227306228895602"><img src="http://lh4.google.com/inputx/RzXIDHGOz3I/AAAAAAAAAsw/dVnEEhWpd4s/s400/Fedora_8_20.jpg" /></a></p>
<p><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131227258984255298"><img src="http://lh5.google.com/inputx/RzXIAXGOz0I/AAAAAAAAAsY/bIh_f10xl3Y/s400/Fedora_8_13.jpg" /></a></p>
<p align="center"><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131226975516413442"><img src="http://lh3.google.com/inputx/RzXHv3GOzgI/AAAAAAAAAp0/1DbxBfMj0jI/s400/Fedora_8_22.jpg" /></a><br />
<a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131226988401315346"><img src="http://lh6.google.com/inputx/RzXHwnGOzhI/AAAAAAAAAp8/4YhlIENnieU/s400/Fedora_8_23.jpg" /></a><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131227005581184546"><img src="http://lh6.google.com/inputx/RzXHxnGOziI/AAAAAAAAAqE/MF4jBji36Bc/s400/Fedora_8_24.jpg" /></a></p>
<p><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131227022761053746"><img src="http://lh6.google.com/inputx/RzXHynGOzjI/AAAAAAAAAqM/W7unCJmbKJc/s400/Fedora_8_25.jpg" /></a></p>
<p><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131227035645955650"><img src="http://lh5.google.com/inputx/RzXHzXGOzkI/AAAAAAAAAqU/IvtgtXF3ZhQ/s400/Fedora_8_26.jpg" /></a><br />
<a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131227048530857554"><img src="http://lh4.google.com/inputx/RzXH0HGOzlI/AAAAAAAAAqc/MMcc5Xf7YUA/s400/Fedora_8_27.jpg" /></a><br />
<a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131227065710726754"><img src="http://lh4.google.com/inputx/RzXH1HGOzmI/AAAAAAAAAqk/qsXNMQskkHY/s400/Fedora_8_28.jpg" /></a></p>
<p><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131227078595628658"><img src="http://lh3.google.com/inputx/RzXH13GOznI/AAAAAAAAAqs/ye-p0-YXS2o/s400/Fedora_8_29.jpg" /></a></p>
<p align="center"><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131227091480530562"><img src="http://lh6.google.com/inputx/RzXH2nGOzoI/AAAAAAAAAq0/dJumyLbUX2w/s400/Fedora_8_30.jpg" /></a><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131227104365432466"><img src="http://lh5.google.com/inputx/RzXH3XGOzpI/AAAAAAAAAq8/_6YpSJRNOuo/s400/Fedora_8_31.jpg" /></a></p>
<p><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131227117250334370"><img src="http://lh4.google.com/inputx/RzXH4HGOzqI/AAAAAAAAArI/8OuGkzKFrLw/s400/Fedora_8_32.jpg" /></a></p>
<p><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131227130135236274"><img src="http://lh3.google.com/inputx/RzXH43GOzrI/AAAAAAAAArQ/rAW5NOnh6xI/s400/Fedora_8_33.jpg" /></a></p>
<p><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131227143020138178"><img src="http://lh6.google.com/inputx/RzXH5nGOzsI/AAAAAAAAArY/YM5xqqXNL70/s400/Fedora_8_34.jpg" /></a></p>
<p><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131227164494974674"><img src="http://lh3.google.com/inputx/RzXH63GOztI/AAAAAAAAArg/S75AKsJJ1vw/s400/Fedora_8_35.jpg" /></a></p>
<p><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131227181674843874"><img src="http://lh3.google.com/inputx/RzXH73GOzuI/AAAAAAAAAro/i0E6qCdFFKk/s400/Fedora_8_36.jpg" /></a></p>
<p><a href="http://picasaweb.google.com/inputx/Fedora8/photo?authkey=9gyQi98jF8o#5131227224624516882"><img src="http://lh5.google.com/inputx/RzXH-XGOzxI/AAAAAAAAAsA/KawK4HFKinM/s400/Fedora_8_21.jpg" /></a></p>



Share and Enjoy:


	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Ffedora-8%2F&amp;partner=sociable" title="Print"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Ffedora-8%2F&amp;title=fedora%208&amp;bodytext=fedora%2C%20a%20good%20project%20about%20linux.%20this%20is%20version%208.%0D%0A%0D%0A%20%0D%0A%0D%0A%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%26lt%3B%0D%0A%0D%0Aa%20href%3D%22http%3A%2F%2Fpicasaweb.google.com%2Finputx%2FFedora8%2Fphoto%3Fauthkey%3D9gyQi98jF8o%235131227271869157202%22%26gt%3B%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A" title="Digg"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Ffedora-8%2F" title="Sphinn"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Ffedora-8%2F&amp;title=fedora%208&amp;notes=fedora%2C%20a%20good%20project%20about%20linux.%20this%20is%20version%208.%0D%0A%0D%0A%20%0D%0A%0D%0A%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%26lt%3B%0D%0A%0D%0Aa%20href%3D%22http%3A%2F%2Fpicasaweb.google.com%2Finputx%2FFedora8%2Fphoto%3Fauthkey%3D9gyQi98jF8o%235131227271869157202%22%26gt%3B%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A" title="del.icio.us"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Ffedora-8%2F&amp;t=fedora%208" title="Facebook"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Ffedora-8%2F&amp;title=fedora%208" title="Mixx"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Ffedora-8%2F&amp;title=fedora%208&amp;annotation=fedora%2C%20a%20good%20project%20about%20linux.%20this%20is%20version%208.%0D%0A%0D%0A%20%0D%0A%0D%0A%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%26lt%3B%0D%0A%0D%0Aa%20href%3D%22http%3A%2F%2Fpicasaweb.google.com%2Finputx%2FFedora8%2Fphoto%3Fauthkey%3D9gyQi98jF8o%235131227271869157202%22%26gt%3B%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A" title="Google Bookmarks"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=fedora%208&amp;body=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Ffedora-8%2F" title="email"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://hellotxt.com/?status=fedora%208+http%3A%2F%2Fan-lar.com%2F2007%2F11%2Ffedora-8%2F" title="HelloTxt"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/hellotxt.png" title="HelloTxt" alt="HelloTxt" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Ffedora-8%2F&amp;title=fedora%208" title="Live"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://myshare.url.com.tw/index.php?func=newurl&amp;url=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Ffedora-8%2F&amp;desc=fedora%208" title="MyShare"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/myshare.png" title="MyShare" alt="MyShare" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Ffedora-8%2F&amp;t=fedora%208" title="MySpace"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Ffedora-8%2F&amp;t=fedora%208&amp;s=fedora%2C%20a%20good%20project%20about%20linux.%20this%20is%20version%208.%0D%0A%0D%0A%20%0D%0A%0D%0A%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%26lt%3B%0D%0A%0D%0Aa%20href%3D%22http%3A%2F%2Fpicasaweb.google.com%2Finputx%2FFedora8%2Fphoto%3Fauthkey%3D9gyQi98jF8o%235131227271869157202%22%26gt%3B%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A" title="Tumblr"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=fedora%208%20-%20http%3A%2F%2Fan-lar.com%2F2007%2F11%2Ffedora-8%2F" title="Twitter"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Ffedora-8%2F&amp;t=fedora%208&opener=bm&amp;ei=UTF-8&amp;d=fedora%2C%20a%20good%20project%20about%20linux.%20this%20is%20version%208.%0D%0A%0D%0A%20%0D%0A%0D%0A%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%26lt%3B%0D%0A%0D%0Aa%20href%3D%22http%3A%2F%2Fpicasaweb.google.com%2Finputx%2FFedora8%2Fphoto%3Fauthkey%3D9gyQi98jF8o%235131227271869157202%22%26gt%3B%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A" title="Yahoo! Bookmarks"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://yigg.de/neu?exturl=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Ffedora-8%2F&amp;exttitle=fedora%208" title="Yigg"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="" title="BlogMemes Fr"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/" title="BlogMemes Fr" alt="BlogMemes Fr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://cgi.fark.com/cgi/fark/farkit.pl?h=fedora%208&amp;u=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Ffedora-8%2F" title="Fark"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=fedora%208&amp;link=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Ffedora-8%2F" title="FriendFeed"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.haohaoreport.com/submit.php?url=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Ffedora-8%2F&amp;title=fedora%208" title="Haohao"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/haohao.png" title="Haohao" alt="Haohao" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Ffedora-8%2F&amp;title=fedora%208&amp;source=An+L%C3%A1r+Town+center%2C+We+are+in%2C+We+live+in.&amp;summary=fedora%2C%20a%20good%20project%20about%20linux.%20this%20is%20version%208.%0D%0A%0D%0A%20%0D%0A%0D%0A%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%26lt%3B%0D%0A%0D%0Aa%20href%3D%22http%3A%2F%2Fpicasaweb.google.com%2Finputx%2FFedora8%2Fphoto%3Fauthkey%3D9gyQi98jF8o%235131227271869157202%22%26gt%3B%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A" title="LinkedIn"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Ffedora-8%2F&amp;bm_description=fedora%208&amp;plugin=soc" title="MisterWong"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Ffedora-8%2F&amp;partner=sociable" title="PDF"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://ping.fm/ref/?link=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Ffedora-8%2F&amp;title=fedora%208&amp;body=fedora%2C%20a%20good%20project%20about%20linux.%20this%20is%20version%208.%0D%0A%0D%0A%20%0D%0A%0D%0A%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%26lt%3B%0D%0A%0D%0Aa%20href%3D%22http%3A%2F%2Fpicasaweb.google.com%2Finputx%2FFedora8%2Fphoto%3Fauthkey%3D9gyQi98jF8o%235131227271869157202%22%26gt%3B%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A" title="Ping.fm"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://an-lar.com/feed/" title="RSS"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://slashdot.org/bookmark.pl?title=fedora%208&amp;url=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Ffedora-8%2F" title="Slashdot"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://socialogs.com/add_story.php?story_url=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Ffedora-8%2F&amp;story_title=fedora%208" title="Socialogs"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/socialogs.png" title="Socialogs" alt="Socialogs" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Ffedora-8%2F" title="Technorati"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://an-lar.com/2007/11/fedora-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Difficut Chinese Characters</title>
		<link>http://an-lar.com/2007/11/difficut-chinese-characters/</link>
		<comments>http://an-lar.com/2007/11/difficut-chinese-characters/#comments</comments>
		<pubDate>Fri, 09 Nov 2007 14:10:32 +0000</pubDate>
		<dc:creator>liduan</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[Weblog]]></category>
		<category><![CDATA[chinese]]></category>

		<guid isPermaLink="false">http://www.an-lar.com/archives/23</guid>
		<description><![CDATA[There are more than forty thousand Chinese Characters in Chinese language system. But Chinese people only use less than five thousand Chinese characters in their daily life.
&#160;
&#160;
&#160;

&#160;
&#160;

In the nearly  fifty thought Chinese Characters, there are twenty most difficult characters. although professional person can not know all of them.they are:
&#160;
&#160;




 1. Nation or country.





2. Praise [...]]]></description>
			<content:encoded><![CDATA[<p><font size="3"><strong>There are more than forty thousand Chinese Characters in Chinese language system. But Chinese people only use less than five thousand Chinese characters in their daily life.</strong></font></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><center><embed width="400" height="267" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=http%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2Finputx%2Falbumid%2F5130841970353032161%3Fkind%3Dphoto%26alt%3Drss" type="application/x-shockwave-flash" src="http://picasaweb.google.com/s/c/bin/slideshow.swf"></embed></center></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><span id="more-23"></span><font size="3"><br />
In the nearly  fifty thought Chinese Characters, there are twenty most difficult characters. although professional person can not know all of them.they are:</font></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<table width="60%" cellspacing="1" cellpadding="1" border="1" align="center">
<tbody>
<tr>
<td width="30%"><font size="3"><a href="http://picasaweb.google.com/inputx/Cc/photo#5130842107791985650"><img src="http://lh5.google.com/inputx/RzRptnGOy_I/AAAAAAAAAlY/z1jvs8zIr98/s144/1.jpg" alt="" /></a></font></td>
<td><font size="3"> 1. Nation or country.</font></td>
</tr>
<tr>
<td width="30%">
<p><font size="3"><a href="http://picasaweb.google.com/inputx/Cc/photo#5130842107791985666"><img src="http://lh5.google.com/inputx/RzRptnGOzAI/AAAAAAAAAlg/Tx1RNQmGqzA/s144/2.jpg" alt="" /></a></font></p>
</td>
<td><font size="3">2. Praise <em>(maybe, I&#8217;m not sure)</em></font></td>
</tr>
<tr>
<td width="30%"><font size="3"><a href="http://picasaweb.google.com/inputx/Cc/photo#5130842107791985682"><img src="http://lh5.google.com/inputx/RzRptnGOzBI/AAAAAAAAAlo/J-endYCaHpg/s144/3.jpg" alt="" /></a></font></td>
<td><font size="3"><em> 3. I can&#8217;t explain what&#8217;s it means by English</em></font></td>
</tr>
<tr>
<td width="30%"><font size="3"><a href="http://picasaweb.google.com/inputx/Cc/photo#5130842107791985698"><img src="http://lh5.google.com/inputx/RzRptnGOzCI/AAAAAAAAAlw/aV9S_K-l0Bk/s144/4.jpg" alt="" /></a></font></td>
<td><font size="3"> 4, A few or a little</font></td>
</tr>
<tr>
<td width="30%"><font size="3"><a href="http://picasaweb.google.com/inputx/Cc/photo#5130842107791985714"><img src="http://lh5.google.com/inputx/RzRptnGOzDI/AAAAAAAAAl4/uTJqG_PuUiA/s144/5.jpg" alt="" /></a></font></td>
<td><font size="3"> 5, Declare</font></td>
</tr>
<tr>
<td width="30%"><font size="3"><a href="http://picasaweb.google.com/inputx/Cc/photo#5130842232346037314"><img src="http://lh6.google.com/inputx/RzRp03GOzEI/AAAAAAAAAmA/AQ1LmMh_rtI/s144/6.jpg" alt="" /></a></font></td>
<td><font size="3"> 6, River</font></td>
</tr>
<tr>
<td width="30%"><font size="3"><a href="http://picasaweb.google.com/inputx/Cc/photo#5130842232346037330"><img src="http://lh6.google.com/inputx/RzRp03GOzFI/AAAAAAAAAmI/ONOnY9YJUuo/s144/7.jpg" alt="" /></a></font></td>
<td><font size="3"> 7, Huge</font></td>
</tr>
<tr>
<td width="30%"><font size="3"><a href="http://picasaweb.google.com/inputx/Cc/photo#5130842232346037346"><img src="http://lh6.google.com/inputx/RzRp03GOzGI/AAAAAAAAAmQ/8wJ9vTZ3Fdc/s144/8.jpg" alt="" /></a></font></td>
<td><font size="3"> 8, Mouth</font></td>
</tr>
<tr>
<td width="30%"><font size="3"><a href="http://picasaweb.google.com/inputx/Cc/photo#5130842232346037362"><img src="http://lh6.google.com/inputx/RzRp03GOzHI/AAAAAAAAAmY/p33yakrzWss/s144/9.jpg" alt="" /></a></font></td>
<td><font size="3"><em> 9, Sorry, I can&#8217;t explain what&#8217;s it means by English</em></font></td>
</tr>
<tr>
<td width="30%"><font size="3"><a href="http://picasaweb.google.com/inputx/Cc/photo#5130842232346037378"><img src="http://lh6.google.com/inputx/RzRp03GOzII/AAAAAAAAAmg/80a9Jy0fJqU/s144/10.jpg" alt="" /></a></font></td>
<td><font size="3"> 10, Thunder <em>(maybe, I&#8217;m not sure, I only sure it is a character, not a group characters)</em></font></td>
</tr>
<tr>
<td width="30%"><font size="3"><a href="http://picasaweb.google.com/inputx/Cc/photo#5130842326835317906"><img src="http://lh4.google.com/inputx/RzRp6XGOzJI/AAAAAAAAAmo/eskEzQJqC1g/s144/11.jpg" alt="" /></a></font></td>
<td><font size="3"> 11, Love</font></td>
</tr>
<tr>
<td width="30%"><font size="3"><a href="http://picasaweb.google.com/inputx/Cc/photo#5130842331130285218"><img src="http://lh5.google.com/inputx/RzRp6nGOzKI/AAAAAAAAAmw/puxpxU2WnXY/s144/12.jpg" alt="" /></a></font></td>
<td><font size="3"> 12, <em>I don&#8217;t know. sorry</em></font></td>
</tr>
<tr>
<td width="30%"><font size="3"><a href="http://picasaweb.google.com/inputx/Cc/photo#5130842331130285234"><img src="http://lh5.google.com/inputx/RzRp6nGOzLI/AAAAAAAAAm4/a1sCYvJuhgs/s144/13.jpg" alt="" /></a></font></td>
<td><font size="3"> 13, Anti-devil</font></td>
</tr>
<tr>
<td width="30%"><font size="3"><a href="http://picasaweb.google.com/inputx/Cc/photo#5130842335425252546"><img src="http://lh6.google.com/inputx/RzRp63GOzMI/AAAAAAAAAnA/mc7ECCgqxgE/s144/14.jpg" alt="" /></a></font></td>
<td><font size="3"><em> 14. I can&#8217;t explain what&#8217;s it means by English</em></font></td>
</tr>
<tr>
<td width="30%"><font size="3"><a href="http://picasaweb.google.com/inputx/Cc/photo#5130842335425252562"><img src="http://lh6.google.com/inputx/RzRp63GOzNI/AAAAAAAAAnI/YQs7ITFDw40/s144/15.jpg" alt="" /></a></font></td>
<td><font size="3"> 15,<em>I don&#8217;t know. sorry</em></font></td>
</tr>
<tr>
<td width="30%"><font size="3"><a href="http://picasaweb.google.com/inputx/Cc/photo#5130842429914533090"><img src="http://lh4.google.com/inputx/RzRqAXGOzOI/AAAAAAAAAnQ/fQQmKHECqbM/s144/16.jpg" alt="" /></a></font></td>
<td><font size="3"><em> 16. I can&#8217;t explain what&#8217;s it means by English</em></font></td>
</tr>
<tr>
<td width="30%"><font size="3"><a href="http://picasaweb.google.com/inputx/Cc/photo#5130842429914533106"><img src="http://lh4.google.com/inputx/RzRqAXGOzPI/AAAAAAAAAnY/sYZB2lBaRSU/s144/17.jpg" alt="" /></a></font></td>
<td><font size="3"> 17,Lamb</font></td>
</tr>
<tr>
<td width="30%"><font size="3"><a href="http://picasaweb.google.com/inputx/Cc/photo#5130842429914533122"><img src="http://lh4.google.com/inputx/RzRqAXGOzQI/AAAAAAAAAng/7HiS4XZm53Q/s144/18.jpg" alt="" /></a></font></td>
<td><font size="3"> 18, One</font></td>
</tr>
<tr>
<td width="30%"><font size="3"><a href="http://picasaweb.google.com/inputx/Cc/photo#5130842429914533138"><img src="http://lh4.google.com/inputx/RzRqAXGOzRI/AAAAAAAAAno/AqO5dj5Vw2k/s144/19.jpg" alt="" /></a></font></td>
<td><font size="3"> 19, One</font></td>
</tr>
<tr>
<td width="30%"><font size="3"><a href="http://picasaweb.google.com/inputx/Cc/photo#5130842429914533154"><img src="http://lh4.google.com/inputx/RzRqAXGOzSI/AAAAAAAAAnw/zU-nDNNZbTo/s144/20.jpg" alt="" /></a></font></td>
<td><font size="3"><em> 20. I can&#8217;t explain what&#8217;s it means by English</em></font></td>
</tr>
</tbody>
</table>
<p>
<font size="3"></p>
<p>
</br></font></p>
<p><font size="3"><br />
</font></p>
<p><font size="3"><br />
</font></p>
<p><font size="3"><br />
</font></p>
<p><font size="3"></p>
<p>
</br></font></p>
<p><font size="3"><br />
</font></p>
<p><font size="3"><br />
</font></p>
<p><font size="3"><br />
</font></p>



Share and Enjoy:


	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Fdifficut-chinese-characters%2F&amp;partner=sociable" title="Print"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/printfriendly.png" title="Print" alt="Print" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Fdifficut-chinese-characters%2F&amp;title=Difficut%20Chinese%20Characters&amp;bodytext=There%20are%20more%20than%20forty%20thousand%20Chinese%20Characters%20in%20Chinese%20language%20system.%20But%20Chinese%20people%20only%20use%20less%20than%20five%20thousand%20Chinese%20characters%20in%20their%20daily%20life.%0D%0A%26nbsp%3B%0D%0A%26nbsp%3B%0D%0A%26nbsp%3B%0D%0A%0D%0A%26nbsp%3B%0D%0A%26nbsp%3B%0D%0A%0D%0AIn%20the%20nearly%20%20fifty%20thought%20Ch" title="Digg"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Fdifficut-chinese-characters%2F" title="Sphinn"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Fdifficut-chinese-characters%2F&amp;title=Difficut%20Chinese%20Characters&amp;notes=There%20are%20more%20than%20forty%20thousand%20Chinese%20Characters%20in%20Chinese%20language%20system.%20But%20Chinese%20people%20only%20use%20less%20than%20five%20thousand%20Chinese%20characters%20in%20their%20daily%20life.%0D%0A%26nbsp%3B%0D%0A%26nbsp%3B%0D%0A%26nbsp%3B%0D%0A%0D%0A%26nbsp%3B%0D%0A%26nbsp%3B%0D%0A%0D%0AIn%20the%20nearly%20%20fifty%20thought%20Ch" title="del.icio.us"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Fdifficut-chinese-characters%2F&amp;t=Difficut%20Chinese%20Characters" title="Facebook"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Fdifficut-chinese-characters%2F&amp;title=Difficut%20Chinese%20Characters" title="Mixx"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Fdifficut-chinese-characters%2F&amp;title=Difficut%20Chinese%20Characters&amp;annotation=There%20are%20more%20than%20forty%20thousand%20Chinese%20Characters%20in%20Chinese%20language%20system.%20But%20Chinese%20people%20only%20use%20less%20than%20five%20thousand%20Chinese%20characters%20in%20their%20daily%20life.%0D%0A%26nbsp%3B%0D%0A%26nbsp%3B%0D%0A%26nbsp%3B%0D%0A%0D%0A%26nbsp%3B%0D%0A%26nbsp%3B%0D%0A%0D%0AIn%20the%20nearly%20%20fifty%20thought%20Ch" title="Google Bookmarks"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="mailto:?subject=Difficut%20Chinese%20Characters&amp;body=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Fdifficut-chinese-characters%2F" title="email"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://hellotxt.com/?status=Difficut%20Chinese%20Characters+http%3A%2F%2Fan-lar.com%2F2007%2F11%2Fdifficut-chinese-characters%2F" title="HelloTxt"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/hellotxt.png" title="HelloTxt" alt="HelloTxt" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Fdifficut-chinese-characters%2F&amp;title=Difficut%20Chinese%20Characters" title="Live"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://myshare.url.com.tw/index.php?func=newurl&amp;url=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Fdifficut-chinese-characters%2F&amp;desc=Difficut%20Chinese%20Characters" title="MyShare"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/myshare.png" title="MyShare" alt="MyShare" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Fdifficut-chinese-characters%2F&amp;t=Difficut%20Chinese%20Characters" title="MySpace"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Fdifficut-chinese-characters%2F&amp;t=Difficut%20Chinese%20Characters&amp;s=There%20are%20more%20than%20forty%20thousand%20Chinese%20Characters%20in%20Chinese%20language%20system.%20But%20Chinese%20people%20only%20use%20less%20than%20five%20thousand%20Chinese%20characters%20in%20their%20daily%20life.%0D%0A%26nbsp%3B%0D%0A%26nbsp%3B%0D%0A%26nbsp%3B%0D%0A%0D%0A%26nbsp%3B%0D%0A%26nbsp%3B%0D%0A%0D%0AIn%20the%20nearly%20%20fifty%20thought%20Ch" title="Tumblr"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/tumblr.png" title="Tumblr" alt="Tumblr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://twitter.com/home?status=Difficut%20Chinese%20Characters%20-%20http%3A%2F%2Fan-lar.com%2F2007%2F11%2Fdifficut-chinese-characters%2F" title="Twitter"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://bookmarks.yahoo.com/toolbar/savebm?u=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Fdifficut-chinese-characters%2F&amp;t=Difficut%20Chinese%20Characters&opener=bm&amp;ei=UTF-8&amp;d=There%20are%20more%20than%20forty%20thousand%20Chinese%20Characters%20in%20Chinese%20language%20system.%20But%20Chinese%20people%20only%20use%20less%20than%20five%20thousand%20Chinese%20characters%20in%20their%20daily%20life.%0D%0A%26nbsp%3B%0D%0A%26nbsp%3B%0D%0A%26nbsp%3B%0D%0A%0D%0A%26nbsp%3B%0D%0A%26nbsp%3B%0D%0A%0D%0AIn%20the%20nearly%20%20fifty%20thought%20Ch" title="Yahoo! Bookmarks"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/yahoomyweb.png" title="Yahoo! Bookmarks" alt="Yahoo! Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://yigg.de/neu?exturl=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Fdifficut-chinese-characters%2F&amp;exttitle=Difficut%20Chinese%20Characters" title="Yigg"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/yiggit.png" title="Yigg" alt="Yigg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="" title="BlogMemes Fr"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/" title="BlogMemes Fr" alt="BlogMemes Fr" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://cgi.fark.com/cgi/fark/farkit.pl?h=Difficut%20Chinese%20Characters&amp;u=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Fdifficut-chinese-characters%2F" title="Fark"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/fark.png" title="Fark" alt="Fark" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.friendfeed.com/share?title=Difficut%20Chinese%20Characters&amp;link=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Fdifficut-chinese-characters%2F" title="FriendFeed"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.haohaoreport.com/submit.php?url=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Fdifficut-chinese-characters%2F&amp;title=Difficut%20Chinese%20Characters" title="Haohao"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/haohao.png" title="Haohao" alt="Haohao" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Fdifficut-chinese-characters%2F&amp;title=Difficut%20Chinese%20Characters&amp;source=An+L%C3%A1r+Town+center%2C+We+are+in%2C+We+live+in.&amp;summary=There%20are%20more%20than%20forty%20thousand%20Chinese%20Characters%20in%20Chinese%20language%20system.%20But%20Chinese%20people%20only%20use%20less%20than%20five%20thousand%20Chinese%20characters%20in%20their%20daily%20life.%0D%0A%26nbsp%3B%0D%0A%26nbsp%3B%0D%0A%26nbsp%3B%0D%0A%0D%0A%26nbsp%3B%0D%0A%26nbsp%3B%0D%0A%0D%0AIn%20the%20nearly%20%20fifty%20thought%20Ch" title="LinkedIn"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Fdifficut-chinese-characters%2F&amp;bm_description=Difficut%20Chinese%20Characters&amp;plugin=soc" title="MisterWong"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.printfriendly.com/print?url=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Fdifficut-chinese-characters%2F&amp;partner=sociable" title="PDF"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/pdf.png" title="PDF" alt="PDF" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://ping.fm/ref/?link=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Fdifficut-chinese-characters%2F&amp;title=Difficut%20Chinese%20Characters&amp;body=There%20are%20more%20than%20forty%20thousand%20Chinese%20Characters%20in%20Chinese%20language%20system.%20But%20Chinese%20people%20only%20use%20less%20than%20five%20thousand%20Chinese%20characters%20in%20their%20daily%20life.%0D%0A%26nbsp%3B%0D%0A%26nbsp%3B%0D%0A%26nbsp%3B%0D%0A%0D%0A%26nbsp%3B%0D%0A%26nbsp%3B%0D%0A%0D%0AIn%20the%20nearly%20%20fifty%20thought%20Ch" title="Ping.fm"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/ping.png" title="Ping.fm" alt="Ping.fm" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://an-lar.com/feed/" title="RSS"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://slashdot.org/bookmark.pl?title=Difficut%20Chinese%20Characters&amp;url=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Fdifficut-chinese-characters%2F" title="Slashdot"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://socialogs.com/add_story.php?story_url=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Fdifficut-chinese-characters%2F&amp;story_title=Difficut%20Chinese%20Characters" title="Socialogs"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/socialogs.png" title="Socialogs" alt="Socialogs" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fan-lar.com%2F2007%2F11%2Fdifficut-chinese-characters%2F" title="Technorati"><img src="http://anlar.duan.li/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://an-lar.com/2007/11/difficut-chinese-characters/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
