<?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>SoleSky &#187; Ubuntu</title>
	<atom:link href="http://www.solesky.com/tag/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.solesky.com</link>
	<description>My love, My life,My soul</description>
	<lastBuildDate>Mon, 19 Dec 2011 03:38:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>How to MD5 a String</title>
		<link>http://www.solesky.com/2011/02/md5-a-string/</link>
		<comments>http://www.solesky.com/2011/02/md5-a-string/#comments</comments>
		<pubDate>Sat, 26 Feb 2011 01:06:40 +0000</pubDate>
		<dc:creator>calcifer</dc:creator>
				<category><![CDATA[Technique]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.solesky.com/?p=1702</guid>
		<description><![CDATA[As a Linux and Unix user, I think to do &#8220;md5sum&#8221; for your files is just a piece of cake. We always to use md5sum command to check various files, such as a OS  disk image. But today I come to a problem,  some web site use the md5 of the user ID as the [...]]]></description>
			<content:encoded><![CDATA[<p>As a Linux and Unix user, I think to do &#8220;md5sum&#8221; for your files is just a piece of cake. We always to use md5sum command to check various files, such as a OS  disk image. But today I come to a problem,  some web site use the md5 of the user ID as the &#8220;Invitation code&#8221;  <img src='http://www.solesky.com/wp-includes/images/smilies/icon_confused.gif' alt=':???:' class='wp-smiley' /> </p>
<p>I would like to take &#8220;calcifer&#8221; as the user ID, so how to generate the md5 code for such a string??</p>
<p>Let&#8217;s see the manual:</p>
<p>MD5SUM(1)                        User Commands                       MD5SUM(1)<br />
NAME<br />
md5sum &#8211; compute and check MD5 message digest<br />
SYNOPSIS<br />
md5sum [OPTION]&#8230; [FILE]&#8230;<br />
DESCRIPTION<br />
Print  or check MD5 (128-bit) checksums.  With no FILE, or when FILE is<br />
-, read standard input.<br />
-b, &#8211;binary<br />
read in binary mode<br />
-c, &#8211;check<br />
read MD5 sums from the FILEs and check them<br />
-t, &#8211;text<br />
read in text mode (default)<br />
MD5SUM(1)                        User Commands                       MD5SUM(1)<br />
NAME       md5sum &#8211; compute and check MD5 message digest<br />
SYNOPSIS       md5sum [OPTION]&#8230; [FILE]&#8230;<br />
DESCRIPTION       Print  or check MD5 (128-bit) checksums.  With no FILE, or when FILE is       -, read standard input.<br />
-b, &#8211;binary              read in binary mode<br />
-c, &#8211;check              read MD5 sums from the FILEs and check them<br />
-t, &#8211;text              read in text mode (default)</p>
<p>Obviously, we can&#8217;t make it as the usual way we used to do  &#8230;.<br />
So we have to do a litter small trick: using pipe ~</p>
<pre language="Shell" line="1">echo -n "calcifer" | md5sum - </pre>
<p>PS:  &#8221;-n&#8221; is to make sure we didn&#8217;t include the &#8220;new line&#8221; this invisible symbol .<br />
So here can to the result:</p>
<pre language="Shell" line="2">calcifer@calcifer-laptop:~/Desktop$ echo -n "calcifer" | md5sum -

3ba9c9546d5dcb7ce2ee47967a83e324  - </pre>
<p>That&#8217;s what we need~~<br />
And further more, it&#8217;s nautilus for some people to input the command like this:</p>
<pre language="Shell" line="1"> echo -n calcifer | md5sum </pre>
<p>In fact, the outcome is the same:</p>
<pre language="Shell" line="2">calcifer@calcifer-laptop:~/Desktop$ echo -n calcifer | md5sum -
3ba9c9546d5dcb7ce2ee47967a83e324  - </pre>
]]></content:encoded>
			<wfw:commentRss>http://www.solesky.com/2011/02/md5-a-string/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update the MSN certificates for Pidgin</title>
		<link>http://www.solesky.com/2010/11/update-the-msn-certificates-for-pidgin/</link>
		<comments>http://www.solesky.com/2010/11/update-the-msn-certificates-for-pidgin/#comments</comments>
		<pubDate>Thu, 25 Nov 2010 00:26:43 +0000</pubDate>
		<dc:creator>calcifer</dc:creator>
				<category><![CDATA[Technique]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.solesky.com/?p=1664</guid>
		<description><![CDATA[If you are using MSN via Pidgin (ver &#60; 2.7.7), maybe you can&#8217;t get logged in MSN right now. The error message about &#8220;SSL Certificate Error&#8221; shows that we need a new certificate file for Pidgin to connect the MSN server. So to fix this problem, we need to update the certificate file. Use vi [...]]]></description>
			<content:encoded><![CDATA[<p>If you are using MSN via Pidgin (ver &lt; 2.7.7), maybe you can&#8217;t get logged in MSN right now. The error message about &#8220;SSL Certificate Error&#8221; shows that we need a new certificate file for Pidgin to connect the MSN server.</p>
<p>So to fix this problem, we need to update the certificate file.</p>
<p>Use vi or gedit or any editor you like to open the file:  ~/.purple/certificates/x509/tls_peers/omega.contacts.msn.com<br />
(For Pidgin in Windows, the path and file should be C:\Program Files\Pidgin\ca-certs\Microsoft_Secure_Server_Authority.pem)</p>
<p>Then copy all the text blew to replace the old content:</p>
<p><code>-----BEGIN CERTIFICATE-----<br />
MIIGeDCCBWCgAwIBAgIKfdrgSQAIAAHIuTANBgkqhkiG9w0BAQUFADCBizETMBEG<br />
CgmSJomT8ixkARkWA2NvbTEZMBcGCgmSJomT8ixkARkWCW1pY3Jvc29mdDEUMBIG<br />
CgmSJomT8ixkARkWBGNvcnAxFzAVBgoJkiaJk/IsZAEZFgdyZWRtb25kMSowKAYD<br />
VQQDEyFNaWNyb3NvZnQgU2VjdXJlIFNlcnZlciBBdXRob3JpdHkwHhcNMTAxMTE1<br />
MjEyODE5WhcNMTIxMTE0MjEyODE5WjB2MQswCQYDVQQGEwJVUzELMAkGA1UECBMC<br />
V0ExEDAOBgNVBAcTB1JlZG1vbmQxDDAKBgNVBAoTA01TTjEdMBsGA1UECxMUTVNO<br />
IENvbnRhY3QgU2VydmljZXMxGzAZBgNVBAMMEiouY29udGFjdHMubXNuLmNvbTCC<br />
ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJnXhdENETaZ8YFfenWCuky3<br />
Fke/oWgUOEbgvaRuZusd2LnvoSiqH++2lkV0JJlIQ+7jLLN8MY7VhlHQmkLC3x44<br />
KZn2IktMVgTBGMKnvbyYVAnRsjt/rVhQrQeHVEQzv5WXx//3FKmXWAuJiuRj9PZ2<br />
KsNqPJgaaa5cuOu4oynO9fH5/ZtJIeUf7bC4Wu++o7jTu5zOhIa7R1buE9FXFF33<br />
vQ1vHi4p9zR2Pi/i2nUpEnzeNCLl/8F/Tf+658SvIC4EzxrYcj+fit6sAnNUfsOE<br />
1SIk9YLD+tS0fln1afbcDvH0ib5Xm7u2/o6ZmxQU0mrAkfQectsKpZLJj03neBsC<br />
AwEAAaOCAvAwggLsMAsGA1UdDwQEAwIEsDBEBgkqhkiG9w0BCQ8ENzA1MA4GCCqG<br />
SIb3DQMCAgIAgDAOBggqhkiG9w0DBAICAIAwBwYFKw4DAgcwCgYIKoZIhvcNAwcw<br />
HQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMBMB0GA1UdDgQWBBRciAVJ/Vsj<br />
sAlZoNG/Zs+rILsPNDAfBgNVHSMEGDAWgBQIQuPbThFm87UIxUDbVXwzRhGDODCC<br />
AQoGA1UdHwSCAQEwgf4wgfuggfiggfWGWGh0dHA6Ly9tc2NybC5taWNyb3NvZnQu<br />
Y29tL3BraS9tc2NvcnAvY3JsL01pY3Jvc29mdCUyMFNlY3VyZSUyMFNlcnZlciUy<br />
MEF1dGhvcml0eSg4KS5jcmyGVmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kv<br />
bXNjb3JwL2NybC9NaWNyb3NvZnQlMjBTZWN1cmUlMjBTZXJ2ZXIlMjBBdXRob3Jp<br />
dHkoOCkuY3JshkFodHRwOi8vY29ycHBraS9jcmwvTWljcm9zb2Z0JTIwU2VjdXJl<br />
JTIwU2VydmVyJTIwQXV0aG9yaXR5KDgpLmNybDCBvwYIKwYBBQUHAQEEgbIwga8w<br />
XgYIKwYBBQUHMAKGUmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvbXNjb3Jw<br />
L01pY3Jvc29mdCUyMFNlY3VyZSUyMFNlcnZlciUyMEF1dGhvcml0eSg4KS5jcnQw<br />
TQYIKwYBBQUHMAKGQWh0dHA6Ly9jb3JwcGtpL2FpYS9NaWNyb3NvZnQlMjBTZWN1<br />
cmUlMjBTZXJ2ZXIlMjBBdXRob3JpdHkoOCkuY3J0MD8GCSsGAQQBgjcVBwQyMDAG<br />
KCsGAQQBgjcVCIPPiU2t8gKFoZ8MgvrKfYHh+3SBT4PC7YUIjqnShWMCAWQCAQow<br />
JwYJKwYBBAGCNxUKBBowGDAKBggrBgEFBQcDAjAKBggrBgEFBQcDATANBgkqhkiG<br />
9w0BAQUFAAOCAQEAbbWUY/5r/Tv/kefqNUT5aGVejrkbG4229gnJLcv+uQTEg0Gg<br />
xfvLr77N1z2j57FameJwz6DeTRbK8MYVPoP+z5o4vM3F3GxLm7aBklYQ/7G0TIp/<br />
13z01a5aBGvZH8umzex3YrAnhJEcucSN5WaT6r9uwT7imdbsCgfFPdiIgS5iHdcl<br />
k/3QSpau+4/XZgh/8V/FMN9KEFYGvEhMb5EVzKJ8pqF9Jy9Mfzqev3BtSREiljCt<br />
lJuiRamxWgQoeNVTAI+J2YAsD8Qon1iZiHl08uHdgXWZiGDtLPcd9aIiL7/vi/+D<br />
7w3bhyHPFr+/13BCIWSfKnSRj/g6YoHnhF4gyQ==<br />
-----END CERTIFICATE-----</code><br />
Save the file and have a try~  <img src='http://www.solesky.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':grin:' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.solesky.com/2010/11/update-the-msn-certificates-for-pidgin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Linux for our life</title>
		<link>http://www.solesky.com/2010/06/linux-for-our-life/</link>
		<comments>http://www.solesky.com/2010/06/linux-for-our-life/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 14:33:09 +0000</pubDate>
		<dc:creator>calcifer</dc:creator>
				<category><![CDATA[Soliloquy]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.solesky.com/?p=1514</guid>
		<description><![CDATA[As a Linux user for several years, Linux give me another view of the world and lots of Linux lovers share lots of fun with me. Wanna to give thans to Linux, I bought a few stuff from a B2C web site. The first one is a Tee with Ubuntu Logo: It&#8217;s so awesome. Ubuntu [...]]]></description>
			<content:encoded><![CDATA[<p>As a Linux user for several years, Linux give me another view of the world and lots of Linux lovers share lots of fun with me. Wanna to give thans to Linux, I bought a few stuff from a B2C web site. <img src='http://www.solesky.com/wp-includes/images/smilies/icon_mrgreen.gif' alt=':mrgreen:' class='wp-smiley' /><br />
The first one is a Tee with Ubuntu Logo:</p>
<p><a href="http://www.flickr.com/photos/soleskytwo/4702752607/" title="Ubuntu Tee" class="flickr-image aligncenter" rel="flickr-mgr" ><img src="http://farm5.static.flickr.com/4028/4702752607_081a2fc47c.jpg" alt="Ubuntu Tee" class="flickr-large"  /></a></p>
<p>It&#8217;s so awesome. Ubuntu is my using Linux dist.. And I love its logo because it show love and peace to us, Reminding us that we are connected , no matter where we are and whom we are.</p>
<p>The other Tee I bought is a GNOME Tee:</p>
<p><a href="http://www.flickr.com/photos/soleskytwo/4702750063/" title="GNOME Tee" class="flickr-image aligncenter" rel="flickr-mgr" ><img src="http://farm5.static.flickr.com/4066/4702750063_ecd158f5a6.jpg" alt="GNOME Tee" class="flickr-large"  /></a></p>
<p>I love this &#8220;big paw&#8221; very much. GNOME is my favorite Linux Desktop environment. It&#8217;s so elegant and effective. There is no more luxuriant  decorative odds in Gnome. That make it very friendly to me.</p>
<p>Beside those two Tees above, I also got a mouse pad in Ubuntu theme with half price~~ <img src='http://www.solesky.com/wp-includes/images/smilies/icon_cool.gif' alt=':cool:' class='wp-smiley' />  </p>
<p><a href="http://www.flickr.com/photos/soleskytwo/4703392116/" title="Ubuntu Mouse Pad" class="flickr-image alignnone" rel="flickr-mgr" ><img src="http://farm5.static.flickr.com/4004/4703392116_a3b2c2a229.jpg" alt="Ubuntu Mouse Pad" class="flickr-large"  /></a></p>
<p>Do you Love it too ?  <img src='http://www.solesky.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':grin:' class='wp-smiley' />   </p>
]]></content:encoded>
			<wfw:commentRss>http://www.solesky.com/2010/06/linux-for-our-life/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Save the Energy, Save the World</title>
		<link>http://www.solesky.com/2010/05/save-the-energy-save-the-world/</link>
		<comments>http://www.solesky.com/2010/05/save-the-energy-save-the-world/#comments</comments>
		<pubDate>Sat, 08 May 2010 00:08:39 +0000</pubDate>
		<dc:creator>calcifer</dc:creator>
				<category><![CDATA[Technique]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.solesky.com/?p=1503</guid>
		<description><![CDATA[The sticky damn summer of Canton has come. My poor little laptop would face a serious problem about its own temperature which cause it closes itself directly. Yep, we can set the power performance manually. But there are only few fixed profile to choose: high performance, low performance and balance&#8230; Then I have to focus [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://grano.la/"><img alt="" src="http://grano.la/_IMAGES/granola_linux.png" title="granola gui" class="alignright" width="377" height="474" /></a>The sticky damn summer of Canton has come. My poor little laptop would face a serious problem about its own temperature which cause it closes itself directly.<br />
Yep, we can set the power performance manually. But there are only few fixed profile to choose: high performance, low performance and balance&#8230; Then I have to focus on the temperature&#8217;s changing and switch different setting among them.</p>
<p>Maybe <a href="http://grano.la/help/?download">Granola</a> is a good choice for me. It&#8217;s a smart automatically energy management software. That sounds cool~ Now I only have to install it and let it do the job for me. And beside, I can also install a GUI interface to see what it has done.</p>
<p>Make a notice for myself:</p>
<p>1 download and run the install script: <a href="http://grano.la/help/?download&#038;os=linux">here</a></p>
<p>2 install software and GUI interface:</p>
<blockquote><p>sudo apt-get install granola granola-gui</p></blockquote>
<p>and it&#8217;s done~</p>
]]></content:encoded>
			<wfw:commentRss>http://www.solesky.com/2010/05/save-the-energy-save-the-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s Time for A Change</title>
		<link>http://www.solesky.com/2010/04/its-time-for-a-change/</link>
		<comments>http://www.solesky.com/2010/04/its-time-for-a-change/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 00:17:25 +0000</pubDate>
		<dc:creator>calcifer</dc:creator>
				<category><![CDATA[Information]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.solesky.com/?p=1498</guid>
		<description><![CDATA[Ubuntu 10.04 LTS has come. Let&#8217;s Ubunt~ http://www.ubuntu.com/]]></description>
			<content:encoded><![CDATA[<p>Ubuntu 10.04 LTS has come. Let&#8217;s Ubunt~</p>
<p>http://www.ubuntu.com/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.solesky.com/2010/04/its-time-for-a-change/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Back to 32 bit Linux Flashplugin again&#8230;</title>
		<link>http://www.solesky.com/2010/04/back-to-32-bit-linux-flashplugin-again/</link>
		<comments>http://www.solesky.com/2010/04/back-to-32-bit-linux-flashplugin-again/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 12:25:29 +0000</pubDate>
		<dc:creator>calcifer</dc:creator>
				<category><![CDATA[Technique]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.solesky.com/?p=1489</guid>
		<description><![CDATA[After Adobe released its 64 bit flashplugin for Linux 64 bit OS , I switched to that 64 bit version at once and hope that the problems can be fixed forever. But I am so bored with its endless crashing and decided to turn back to the 32 bit version. Just make a record for [...]]]></description>
			<content:encoded><![CDATA[<p>After Adobe released its 64 bit flashplugin for Linux 64 bit OS , I switched to that 64 bit version at once and hope that the problems can be fixed forever. But I am so bored with its endless crashing and decided to turn back to the 32 bit version.</p>
<p>Just make a record for myself :</p>
<p>1st: Remove the gnash (If you have)</p>
<blockquote><p>sudo apt-get remove gnash</p></blockquote>
<p>2nd : Install nspluginwrapper and Flash 9:</p>
<blockquote><p>sudo apt-get install nspluginwrapper flashplugin-nonfree lib32nss-mdns</p></blockquote>
<p>3rd:  Flash 9 is not packaged, but the package installer script will fetch it from Adobe&#8217;s download site and install it. Now simply install nspluginwrapper as a Firefox plugin:</p>
<blockquote><p>sudo ln -sf /usr/lib/nspluginwrapper/plugins/npwrapper.libflashplayer.so /usr/lib/firefox-addons/plugins/ sudo ln -sf /usr/lib/nspluginwrapper/plugins/npwrapper.libflashplayer.so /usr/lib/firefox-3.0/plugins/</p></blockquote>
<p>OK, Bye</p>
]]></content:encoded>
			<wfw:commentRss>http://www.solesky.com/2010/04/back-to-32-bit-linux-flashplugin-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can Ubuntu Become the &#8216;Default Alternative&#8217; to Windows?</title>
		<link>http://www.solesky.com/2009/10/can-ubuntu-become-the-default-alternative-to-windows/</link>
		<comments>http://www.solesky.com/2009/10/can-ubuntu-become-the-default-alternative-to-windows/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 00:25:33 +0000</pubDate>
		<dc:creator>calcifer</dc:creator>
				<category><![CDATA[Information]]></category>
		<category><![CDATA[Canonical]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mark Shuttleworth]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.solesky.com/?p=1187</guid>
		<description><![CDATA[[copied from www.internetnews.com original link: here] As new Linux release nears, founder Mark Shuttleworth explains his company&#8217;s plan for profitability. With more than 8 million users, Ubuntu Linux is among the most popular Linux distributions. But what is its mission? What are Ubuntu and Canonical, its lead commercial sponsor, really all about? Ubuntu has desktop [...]]]></description>
			<content:encoded><![CDATA[<p><script src="http://www.ubuntu.com/files/countdown/display2.js" type="text/javascript"></script></p>
<p>[copied from <a href="http://www.internetnews.com/" target="_blank">www.internetnews.com</a> original link: <a href="http://www.internetnews.com/bus-news/article.php/3845611/What+Is+Ubuntu.htm">here</a>]</p>
<p><img class="alignright" title="ubuntu" src="http://www.ubuntu.com/sites/all/themes/ubuntu09/logo.png" alt="Ubuntu logo" width="202" height="55" /></p>
<p>As new Linux release nears, founder Mark Shuttleworth explains his company&#8217;s plan for profitability.</p>
<p>With more than 8 million users, <a href="http://www.ubuntu.com/">Ubuntu Linux</a> is among the most popular Linux distributions.</p>
<p>But what is its mission? What are Ubuntu and Canonical, its lead commercial sponsor, really all about?</p>
<p>Ubuntu has desktop and server releases, and is gearing up both user and cloud services, all of which are set to be updated in the new Karmic Koala release due out later this week. With all the different products and directions, Ubuntu founder Mark Shuttleworth faces questions about the focus and definition of the distribution, as well as the profitability of its corporate backer.</p>
<p>In a press conference call today, Shuttleworth tried to explain.<br />
<span id="more-1187"></span><br />
&#8220;The mission of Canonical is to deliver all the benefit of free software to a variety of audiences,&#8221; Shuttleworth said. &#8220;We started with desktop, because we thought that was place we could make the most distinctive splash. The desktop was largely neglected and at the same time there were changes afoot in the core infrastructure of Linux at the kernel level that meant we were confident we could surprise people at how easy [it was] to install and use the desktop if someone was focused on it.&#8221;</p>
<p>Ubuntu competes against multiple Linux distributions, including those from Red Hat and Novell, as well as community-based distributions. Both Red Hat and Novell offer enterprise Linux desktops, though specific efforts focused on the consumer segment are not currently the main thrust.</p>
<p>Shuttleworth said that Ubuntu to date has been successful in expanding the Linux desktop footprint, and is now interested in increasing the number of places where it can deliver the benefits of open source software.</p>
<p>&#8220;We&#8217;ve already done a lot of work in developer ecosystem and we&#8217;re now increasingly interested in the non-developer consumer ecosystem, so that&#8217;s what all the OEM work is about,&#8221; Shuttleworth said, declaring that his focus was on &#8220;making sure that Ubuntu gets pre-installed and Ubuntu is available from Dell.com and others and making sure that Ubuntu is the default alternative to Windows.&#8221;</p>
<p>He added that Canonical has a similar vision for Ubuntu on servers and in the cloud. He admitted that having different products for different market segments does represent some real challenges for Canonical as a small firm.</p>
<p>In terms of the company&#8217;s organizational structure, Shuttleworth said that there is a core Ubuntu platform team at Canonical, which is divided into desktop, server, mobile and netbook groups. On the sales and marketing front, separate groups are tasked with focusing on OEM, enterprise and consumer efforts.</p>
<p>&#8220;It is a stretch and it is a challenge,&#8221; Shuttleworth said. &#8220;But the real prize for us is to show that the free software ecosystem can be delivered as a platform which spans from the most lightweight devices right the way through to the most heavy-duty devices.&#8221;</p>
<p>He added that there are real benefits to having a complete platform, giving developers the opportunity to both develop and deploy applications using Ubuntu&#8217;s brand of Linux.</p>
<p>&#8220;The consistency of platform and ecosystem is highly valuable to us and to our users. That&#8217;s why we&#8217;ve given ourselves the harder job of delivering a complete platform rather than going for a specific niche market,&#8221; Shuttleworth said. &#8220;Time will tell whether it&#8217;s achievable. It&#8217;s wonderful to do the impossible so long as it&#8217;s not actually impossible. We&#8217;re certainly surfing close to the edge of that line.&#8221;</p>
<p>But the broad product mix poses a threat to Canonical&#8217;s profitability, at least in the short term. It&#8217;s a concern that Shuttleworth recognizes, but he sees the silver lining in the longer-term picture.</p>
<p>&#8220;I have no concerns about our ability to be profitable,&#8221; Shuttleworth said. &#8220;If necessary, we would have the option to focus on specific areas that are already self-sustainable. My preference is to push the organization faster, to continue to invest in and to continue to create the feeling of a complete platform.&#8221;</p>
<p>Canonical is a privately-held company, and Shuttleworth does not disclose its financial performance. Last year, he admitted that Canonical was not cash-flow positive.</p>
<p>&#8220;Profitability is a matter of choice as to how much we&#8217;re willing to invest, whether we see the appropriate returns on that investment and whether we see it as the right thing to be doing,&#8221; Shuttleworth said. &#8220;Right now I&#8217;m absolutely convinced that we want to be delivering Ubuntu as an end-to-end solution, and that requires us to invest in multiple theatres of battle at the same time.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.solesky.com/2009/10/can-ubuntu-become-the-default-alternative-to-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Let&#8217;s War !</title>
		<link>http://www.solesky.com/2009/10/lets-war/</link>
		<comments>http://www.solesky.com/2009/10/lets-war/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 12:48:56 +0000</pubDate>
		<dc:creator>calcifer</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.solesky.com/?p=1173</guid>
		<description><![CDATA[FPS Game is one of the most popular game type. You can&#8217;t find out how many people had played Counter Strike or Doom. But those games are too violent and bloody. It&#8217;s not suitable for the kids and girls to play such games. But the game that I want to introduce today will give FPS [...]]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignright" style="width: 216px"><a href="http://www.teeworlds.com/" target="_blank"><img title="Tee" src="http://www.teeworlds.com/images/splashtee.png" alt="" width="206" height="206" /></a><p class="wp-caption-text">Click to Play！</p></div>
<p>FPS Game is one of the most popular game type. You can&#8217;t find out how many people had played Counter Strike or Doom. But those games are too violent and bloody. It&#8217;s not suitable for the kids and girls to play such games. But the game that I want to introduce today will give FPS game another life to be suitable to all people.  <img src='http://www.solesky.com/wp-includes/images/smilies/icon_mrgreen.gif' alt=':mrgreen:' class='wp-smiley' /> </p>
<p><strong>Teeworlds</strong> is a free online multiplayer game, available for <strong>all major operating systems</strong>. Battle with up to 16 players in a variety of game modes, including Team Deathmatch and Capture The Flag. You can even design your own maps! I admit that the first reason why I love this game is its excellent portability. When I searched games on Ubuntu, my eyes were caught by a cute image. This small little &#8216;ball&#8217; is called Tee. They have a round body and short hands and feet. But don&#8217;t think that these lovely and little &#8216;balls&#8217; would be very friendly and harmless. In fact, they are super strong and armed. <img src='http://www.solesky.com/wp-includes/images/smilies/icon_eek.gif' alt=':shock:' class='wp-smiley' />   Yep! they are war animals.  <img src='http://www.solesky.com/wp-includes/images/smilies/icon_twisted.gif' alt=':twisted:' class='wp-smiley' /> </p>
<p>Tees are skilled with many weapons. No matter the scatter gun, rocket launcher, beam rifle or just a wooden hammer, those small tee will fight incredibly and show you what is the real weapon master. Even the rope which used to clime at usual can be a tool to make enemies down without finding out what has happened.<br />
<a class="highslide-image" onclick="return hs.expand(this, {captionId:'screenshot0077'});" href="http://www.teeworlds.com/images/screens/screenshot0077.png"><img title="Click to enlarge" src="http://www.teeworlds.com/images/screens/screenshot0077_t.png" alt="" /></a><br />
<span id="more-1173"></span><br />
<a class="highslide-image" onclick="return hs.expand(this, {captionId:'screenshot0011'});" href="http://www.teeworlds.com/images/screens/screenshot0011.png"><img title="Click to enlarge" src="http://www.teeworlds.com/images/screens/screenshot0011_t.png" alt="" /></a></p>
<p>To join their world of war is very simple. Just go to the official web site www.teeworlds.com to download the client that suitable to you OS. And install it within a minute then ~ Let&#8217;s war~</p>
<p>The first step is to custom your own tee, you can choose your favorite character image and named it with a cool ID. Then turn back to the host list and pick up the host the suitable to your location with a nice ping. And Loading&#8230;</p>
<p>The rest of this game can be learn by you natural war instincts. <img src='http://www.solesky.com/wp-includes/images/smilies/icon_twisted.gif' alt=':twisted:' class='wp-smiley' />   And I am waiting for your challenge or cooperation. <img src='http://www.solesky.com/wp-includes/images/smilies/icon_cool.gif' alt=':cool:' class='wp-smiley' /> </p>
<p> <img src='http://www.solesky.com/wp-includes/images/smilies/icon_arrow.gif' alt=':arrow:' class='wp-smiley' />  BTW: you can leave your Teeworld ID in this post&#8217;s comment, that would be easier to meet our comrades.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.solesky.com/2009/10/lets-war/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Install Wine on 64 bit Ubuntu and Run WOW~</title>
		<link>http://www.solesky.com/2009/08/install-wine-on-64-bit-ubuntu-and-run-wow/</link>
		<comments>http://www.solesky.com/2009/08/install-wine-on-64-bit-ubuntu-and-run-wow/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 02:45:49 +0000</pubDate>
		<dc:creator>calcifer</dc:creator>
				<category><![CDATA[Technique]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[WOW]]></category>

		<guid isPermaLink="false">http://www.solesky.com/?p=948</guid>
		<description><![CDATA[We can say that WOW is a great on-line game in the world. It released when I was in Campus. For the good of my study, I missed this game totally. At that time, WOW was run by the 9th City and made great benefit in China. Nowadays, Blizzard decides to end the contract with [...]]]></description>
			<content:encoded><![CDATA[<p>We can say that WOW is a great on-line game in the world. It released when I was in Campus. For the good of my study, I missed this game totally. At that time, WOW was run by the 9th City and made great benefit in China. Nowadays, Blizzard decides to end the contract with 9th City and make a good deal with the other IT giant in China, Net Ease. So a new age of China WOW is coming&#8230;</p>
<p>We know that WOW&#8217;s PC client software is only supported Windows. To the Linux users like me, one of the way to play this game is to install wine which can run Windows version software under a Linux environment. That&#8217;s easy to make it cause Ubuntu has built it easy to install. But I countered another problem, the Chinese character and input method support&#8230; <img src='http://www.solesky.com/wp-includes/images/smilies/icon_confused.gif' alt=':???:' class='wp-smiley' /> </p>
<p>After search on Google, I found that the already built version wine-cn haven&#8217;t released and I have to &#8220;hack&#8221; it by myself.<br />
The job I have to do:</p>
<ul>
<li> 1 download the source ball of wine</li>
<li> 2 patch the source file with Chinese charset support</li>
<li> 3 prepare the environment of building wine on 64-bit platform</li>
<li> 4 compile and install wine</li>
<li> 5 fix the Chinese character display by adding &#8220;gdi32.dll.so&#8221;</li>
<li> 6 Download and Install WOW~</li>
</ul>
<p>1  go to http://www.winehq.org/site/download to download the wine source ball</p>
<p>2 extract the file and patch with the <a href="http://forum.ubuntu.org.cn/download/file.php?id=35293">&#8220;wine_charset.patch&#8221;</a></p>
<blockquote><p>cd wine-1.0<br />
patch -p1 &lt; wine_charset.patch</p></blockquote>
<p>3 Run this in Shell to prepare:(Ubuntu 9.04 only)</p>
<blockquote><p>sudo apt-get build-dep wine</p></blockquote>
<p>4 Configure, make, and install:</p>
<blockquote><p>CC=&#8221;gcc-4.3 -m32&#8243; LDFLAGS=&#8221;-L/lib32 -L/usr/lib32 -Wl,-rpath,/lib32 -Wl,-rpath,/usr/lib32&#8243; ./configure -v</p></blockquote>
<blockquote><p>make</p></blockquote>
<blockquote><p>
make instal</p></blockquote>
<p>To compile 14.9MB source ball is a time wasting job.  <img src='http://www.solesky.com/wp-includes/images/smilies/icon_neutral.gif' alt=':neutral:' class='wp-smiley' />  </p>
<p>5 Fetch the <a href="http://forum.ubuntu.org.cn/viewtopic.php?f=121&#038;t=131400"> gdi32.dll.so</a> and copy to the wine</p>
<blockquote><p>sudo cp gdi32.dll.so /usr/lib/wine/</p></blockquote>
<p>6 Install and Run WOW just like in Windows~</p>
]]></content:encoded>
			<wfw:commentRss>http://www.solesky.com/2009/08/install-wine-on-64-bit-ubuntu-and-run-wow/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Let&#8217;s merge our OSs ~ VirtualBox</title>
		<link>http://www.solesky.com/2009/01/lets-merge-our-oss-virtualbox/</link>
		<comments>http://www.solesky.com/2009/01/lets-merge-our-oss-virtualbox/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 08:02:10 +0000</pubDate>
		<dc:creator>calcifer</dc:creator>
				<category><![CDATA[Technique]]></category>
		<category><![CDATA[Linu]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.sloesky.com/?p=490</guid>
		<description><![CDATA[How many OS do you run simultaneously ? Only one Windows OS? Maybe, but why can&#8217;t we set up two, three or more OS at the same time! Maybe if we mention virtualizer software, you will think of Vmware, Virtual tool and so on. But what I want to introduce is the Virtual Box. VirtualBox [...]]]></description>
			<content:encoded><![CDATA[<p>How many OS do you run simultaneously ? Only one Windows OS? Maybe, but why can&#8217;t we set up two, three or more OS at the same time! Maybe if we mention virtualizer software, you will think of Vmware, Virtual tool and so on. But what I want to introduce is the Virtual Box. VirtualBox is a general-purpose full virtualizer for x86 hardware. Targeted at server, desktop and embedded use, it is now the only professional-quality virtualization solution that is also Open Source Software. The first time I use it was when I was searching software in Ubuntu.  Before that I had used Vmware several times. To me, Virtual Box is more simple and comfortable. For an example, the seamless mode will make you desktop so cool ~. Can you imagine that Windows from Linux and Windows XP appear within the some desktop? Or run two or three online games which could not run on one physical machine before <img src='http://www.solesky.com/wp-includes/images/smilies/icon_twisted.gif' alt=':twisted:' class='wp-smiley' />  ? That&#8217;s so fantastic ! <a class="highslide-image" onclick="return hs.expand(this);" href="http://farm4.static.flickr.com/3077/3208483397_bc709fe3f3_o.jpg"><img title="Click to enlarge" src="http://farm4.static.flickr.com/3077/3208483397_018684d41b_t.jpg" alt="image" /></a> All you have to do is to download the <a href="http://www.virtualbox.org/wiki/Downloads">Virtual Box software</a>(if you are using Ubuntu , you can install via apt <img src='http://www.solesky.com/wp-includes/images/smilies/icon_mrgreen.gif' alt=':mrgreen:' class='wp-smiley' />  )and install whatever OS you want~  <span id="more-490"></span> <a href="http://61.145.118.209/web/VirutalBox 使用教程.doc">(使用教程请点此处)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.solesky.com/2009/01/lets-merge-our-oss-virtualbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

