<?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>Izabil</title>
	<atom:link href="http://izabil.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://izabil.com</link>
	<description>Sail to the moon... ha ha ha</description>
	<lastBuildDate>Thu, 22 Jul 2010 09:21:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>I just changed to new themes ..</title>
		<link>http://izabil.com/2010/i-just-changed-to-new-themes/</link>
		<comments>http://izabil.com/2010/i-just-changed-to-new-themes/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 09:21:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[From Me For You]]></category>

		<guid isPermaLink="false">http://izabil.com/?p=597</guid>
		<description><![CDATA[Hope this new theme will be ok&#8230;more pleasent&#8230; Share on Facebook]]></description>
			<content:encoded><![CDATA[<p>Hope this new theme will be ok&#8230;more pleasent&#8230;</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://izabil.com/2010/i-just-changed-to-new-themes/" target="_blank"><img src="http://izabil.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://izabil.com/2010/i-just-changed-to-new-themes/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://izabil.com/2010/i-just-changed-to-new-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to increase the number of Linux Message Queues &#8230;  create more message queue</title>
		<link>http://izabil.com/2010/how-to-increase-the-number-of-linux-message-queues/</link>
		<comments>http://izabil.com/2010/how-to-increase-the-number-of-linux-message-queues/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 08:57:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://izabil.com/?p=589</guid>
		<description><![CDATA[/* * File:   main.c * * Created on May 3, 2010, 12:35 PM */ #include &#60;stdio.h&#62; #include &#60;stdlib.h&#62; #include &#60;mqueue.h&#62; #include &#60;sys/stat.h&#62; #include &#60;errno.h&#62; #include &#60;signal.h&#62; #include &#60;sys/resource.h&#62; #define MSGQUEMAX          100 #define MSGQUESIZEMAX      256 #define MSGQUE_X &#8220;/mqix&#8221; /* * */ void send_mq(); int main(int argc, char** argv) { int iret; pthread_t send_thread; struct rlimit limit; [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>/*<br />
* File:   main.c<br />
*<br />
* Created on May 3, 2010, 12:35 PM<br />
*/</p>
<p>#include &lt;stdio.h&gt;<br />
#include &lt;stdlib.h&gt;<br />
#include &lt;mqueue.h&gt;<br />
#include &lt;sys/stat.h&gt;<br />
#include &lt;errno.h&gt;<br />
#include &lt;signal.h&gt;<br />
#include &lt;sys/resource.h&gt;</p>
<p>#define MSGQUEMAX          100<br />
#define MSGQUESIZEMAX      256<br />
#define MSGQUE_X &#8220;/mqix&#8221;</p>
<p>/*<br />
*<br />
*/<br />
void send_mq();<br />
int main(int argc, char** argv) {<br />
int iret;<br />
pthread_t send_thread;<br />
struct rlimit limit;</p>
<p>/* Set the file size resource limit. */<br />
limit.rlim_cur = 4194304 ;<br />
limit.rlim_max = 4194304 ;</p>
<p>if (setrlimit(RLIMIT_MSGQUEUE, &amp;limit) != 0) {<br />
printf(&#8220;setrlimit() failed with errno=%d\n&#8221;, errno);<br />
exit(1);<br />
}</p>
<p>printf(&#8220;The limit is %d \n&#8221;, limit.rlim_max);<br />
iret = pthread_create(&amp;send_thread, NULL, send_mq, NULL);</p>
<p>while(1){<br />
}</p>
<p>return (EXIT_SUCCESS);<br />
}</p>
<p>void send_mq(){</p>
<p>int i,ret;<br />
char mqsend[20];<br />
char buffer[20];<br />
struct mq_attr mqa;</p>
<p>struct rlimit curr_limits;</p>
<p>mqa.mq_maxmsg = MSGQUEMAX;<br />
mqa.mq_msgsize = MSGQUESIZEMAX;</p>
<p>mqd_t sendMQ;</p>
<p>for(i=0;i&lt;MSGQUEMAX;i++){<br />
sprintf(mqsend, &#8220;%s%d&#8221;, MSGQUE_x, i);<br />
if ((sendMQ = mq_open(mqsend,O_CREAT|O_EXCL|O_RDWR|O_NONBLOCK, S_IRWXU | S_IRWXG | S_IRWXO, &amp;mqa)) &lt; 0){<br />
mq_close(sendMQ);<br />
}<br />
else{<br />
mq_close(sendMQ);<br />
}<br />
if ((sendMQ = mq_open(mqsend, O_WRONLY|O_NONBLOCK)) &lt; 0){<br />
mq_close(sendMQ);<br />
}<br />
else{</p>
<p>sprintf(buffer,&#8221;mqix%d send successfully \n&#8221;,i);<br />
ret = mq_send(sendMQ, buffer, mqa.mq_msgsize, 0);<br />
if (ret &lt; 0)<br />
{<br />
}<br />
else{<br />
printf(&#8220;mqix%d send successfully \n&#8221;,i);<br />
}<br />
}<br />
}<br />
}</p></blockquote>
<p>Here are the code to increase the number of message queues.Before this the number of message queues that can be created is so limited,around 20 only.Now i can create around 100 message queues.</p>
<p>/* Set the file size resource limit. */</p>
<p>limit.rlim_cur = 4194304 ;<br />
limit.rlim_max = 4194304 ;</p>
<p>The two lines above is very important.It will determined how many message queues can be created&#8230;</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://izabil.com/2010/how-to-increase-the-number-of-linux-message-queues/" target="_blank"><img src="http://izabil.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://izabil.com/2010/how-to-increase-the-number-of-linux-message-queues/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://izabil.com/2010/how-to-increase-the-number-of-linux-message-queues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Its Julai &#8230;</title>
		<link>http://izabil.com/2010/its-julai/</link>
		<comments>http://izabil.com/2010/its-julai/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 08:45:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[From Me For You]]></category>

		<guid isPermaLink="false">http://izabil.com/?p=587</guid>
		<description><![CDATA[Its Julai already&#8230;The earth look not change much..i miss this planet so much&#8230;finally i successfully came back alive&#8230;so nice Share on Facebook]]></description>
			<content:encoded><![CDATA[<p>Its Julai already&#8230;The earth look not change much..i miss this planet so much&#8230;finally i successfully came back alive&#8230;so nice</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://izabil.com/2010/its-julai/" target="_blank"><img src="http://izabil.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://izabil.com/2010/its-julai/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://izabil.com/2010/its-julai/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Movies that i watched this month</title>
		<link>http://izabil.com/2010/movies-that-i-watched-this-month/</link>
		<comments>http://izabil.com/2010/movies-that-i-watched-this-month/#comments</comments>
		<pubDate>Fri, 21 May 2010 13:57:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[From Me For You]]></category>

		<guid isPermaLink="false">http://izabil.com/?p=584</guid>
		<description><![CDATA[1.Iron Man 2 2.Ip Man 2 3. a Nightmare on Elm Street Share on Facebook]]></description>
			<content:encoded><![CDATA[<p>1.Iron Man 2</p>
<p>2.Ip Man 2</p>
<p>3. a Nightmare on Elm Street</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://izabil.com/2010/movies-that-i-watched-this-month/" target="_blank"><img src="http://izabil.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://izabil.com/2010/movies-that-i-watched-this-month/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://izabil.com/2010/movies-that-i-watched-this-month/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I am a brave man &#8211; Successfully put my finger in Mr Croc &#8216;s mouth.</title>
		<link>http://izabil.com/2010/i-am-a-brave-man/</link>
		<comments>http://izabil.com/2010/i-am-a-brave-man/#comments</comments>
		<pubDate>Sat, 08 May 2010 14:49:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[From Me For You]]></category>

		<guid isPermaLink="false">http://izabil.com/?p=573</guid>
		<description><![CDATA[Share on Facebook]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://izabil.com/wp-content/uploads/2010/05/08052010477.jpg"><img class="alignleft size-medium wp-image-575" title="08052010477" src="http://izabil.com/wp-content/uploads/2010/05/08052010477-300x225.jpg" alt="" width="300" height="284" /></a></p>
<p style="text-align: center;"><a href="http://izabil.com/wp-content/uploads/2010/05/08052010478.jpg"><img class="alignleft size-medium wp-image-576" title="08052010478" src="http://izabil.com/wp-content/uploads/2010/05/08052010478-300x225.jpg" alt="" width="300" height="256" /></a></p>
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;"><a href="http://izabil.com/wp-content/uploads/2010/05/080520104781.jpg"><img class="size-medium wp-image-581 aligncenter" title="08052010478" src="http://izabil.com/wp-content/uploads/2010/05/080520104781-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://izabil.com/2010/i-am-a-brave-man/" target="_blank"><img src="http://izabil.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://izabil.com/2010/i-am-a-brave-man/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://izabil.com/2010/i-am-a-brave-man/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wubildr.mbr boot error</title>
		<link>http://izabil.com/2010/wubildr-mbr-boot-error/</link>
		<comments>http://izabil.com/2010/wubildr-mbr-boot-error/#comments</comments>
		<pubDate>Tue, 04 May 2010 05:03:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://izabil.com/?p=569</guid>
		<description><![CDATA[Just now ,i solved a problem of boot options.I have windows 7 on my computer.Before this ,i have both windows 7 and ubuntu. Then i uninstalled ubuntu .But,when i start my computer,i always given two options ; start win 7 or ubuntu.If i click on Ubuntu,these message appear: File: \ubuntu\winboot\wubildr.mbr status: 0xc000000e Info: The selected [...]]]></description>
			<content:encoded><![CDATA[<p>Just now ,i solved a problem of boot options.I have windows 7 on my computer.Before this ,i have both windows 7 and ubuntu. Then i uninstalled ubuntu .But,when i start my computer,i always given two options ; start win 7 or ubuntu.If i click on Ubuntu,these message appear:</p>
<p style="padding-left: 30px;">File: \ubuntu\winboot\wubildr.mbr</p>
<p>status: 0xc000000e</p>
<p>Info: The selected entry could not be loaded because the application is missing or corrupt.</p>
<p>How do i solve it?I searched on Google and found about bcdedit.</p>
<p>So go to Accessories,then go to command prompt,run as administrator.Then type bcdedit.Choose the unused OS that you don&#8217;t want to use it.</p>
<p>Get it&#8217;s long number&#8230;i don&#8217;t now what is that.Something like key i guess.Put it like the message shown below.</p>
<p>Then type :<strong>bcdedit /delete {4c21825f-e04b-11dd-b760-00195b61617a} </strong></p>
<p><strong>Then settle.For more information ,you can visit </strong><a href="http://www.sevenforums.com/tutorials/2676-bcdedit-how-use.html" target="_blank">http://www.sevenforums.com/tutorials/2676-bcdedit-how-use.html</a></p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://izabil.com/2010/wubildr-mbr-boot-error/" target="_blank"><img src="http://izabil.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://izabil.com/2010/wubildr-mbr-boot-error/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://izabil.com/2010/wubildr-mbr-boot-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install netbeans in ubuntu</title>
		<link>http://izabil.com/2010/how-to-install-netbeans-in-ubuntu/</link>
		<comments>http://izabil.com/2010/how-to-install-netbeans-in-ubuntu/#comments</comments>
		<pubDate>Tue, 04 May 2010 01:51:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://izabil.com/?p=565</guid>
		<description><![CDATA[1.Download 3 components a.netbeans-6.8-ml-linux.sh b.jre-6u20-linux-i586.bin c.jdk-6u20-linux-i586.bin You can download it from Sun Java Website or netbeans website 2.Then copy jre-6u20-linux-i586.bin and jdk-6u20-linux-i586.bin into /usr/ directory. 3.Then copy netbeans-6.8-ml-linux.sh into /home/zs/ directory. 4.Install jre-6u20-linux-i586.bin and jdk-6u20-linux-i586.bin by type these two commands First open new terminal first. a.Type :  cd / b.Type : cd /usr/ c.Type : [...]]]></description>
			<content:encoded><![CDATA[<p>1.Download 3 components</p>
<p style="padding-left: 30px;">a.netbeans-6.8-ml-linux.sh</p>
<p style="padding-left: 30px;">b.jre-6u20-linux-i586.bin</p>
<p style="padding-left: 30px;">c.jdk-6u20-linux-i586.bin</p>
<p>You can download it from Sun Java Website or netbeans website</p>
<p>2.Then copy jre-6u20-linux-i586.bin and jdk-6u20-linux-i586.bin into /usr/ directory.</p>
<p>3.Then copy netbeans-6.8-ml-linux.sh into /home/zs/ directory.</p>
<p>4.Install jre-6u20-linux-i586.bin and jdk-6u20-linux-i586.bin by type these two commands</p>
<p style="padding-left: 30px;">First open new terminal first.</p>
<p style="padding-left: 30px;">a.Type :  cd /</p>
<p style="padding-left: 30px;">b.Type : cd /usr/</p>
<p style="padding-left: 30px;">c.Type : Sudo sh jre-6u20-linux-i586.bin</p>
<p style="padding-left: 30px;">d.Type : Sudo sh jdk-6u20-linux-i586.bin</p>
<p>5.Then install netbeans by type this command</p>
<p style="padding-left: 30px;">a.Open new terminal first</p>
<p style="padding-left: 30px;">b.Type : cd /home/zs/</p>
<p style="padding-left: 30px;">c.Type : sudo sh netbeans-6.8-ml-linux.sh</p>
<p>Then done&#8230;Success..</p>
<p>Good luck</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://izabil.com/2010/how-to-install-netbeans-in-ubuntu/" target="_blank"><img src="http://izabil.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://izabil.com/2010/how-to-install-netbeans-in-ubuntu/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://izabil.com/2010/how-to-install-netbeans-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>error : file not found &#8211; grub rescue&gt;</title>
		<link>http://izabil.com/2010/error-file-not-found-grub-rescue/</link>
		<comments>http://izabil.com/2010/error-file-not-found-grub-rescue/#comments</comments>
		<pubDate>Mon, 03 May 2010 01:54:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://izabil.com/?p=563</guid>
		<description><![CDATA[Last night,i upgraded my ubuntu from 9.10 to 10.04 LTS.After all the processes finished,i rebooted my computer.Than , my computer failed to boot.Then this message showed up on the black screen. error : file not found grub rescue&#62; FYI,i installed ubuntu on windows 7 OS.So what i did is : 1.Boot off your Windows Vista/7 [...]]]></description>
			<content:encoded><![CDATA[<p>Last night,i upgraded my ubuntu from 9.10 to 10.04 LTS.After all the processes finished,i rebooted my computer.Than , my computer failed to boot.Then this message showed up on the black screen.</p>
<p>error : file not found</p>
<p>grub rescue&gt;</p>
<p>FYI,i installed ubuntu on windows 7 OS.So what i did is :</p>
<p>1.Boot off your Windows Vista/7 installation DVD</p>
<p>2.Click next after you get to the Regional settings, select your Location/Keyboard .</p>
<p>3.Click on &#8220;Repair your computer.&#8221;</p>
<p>4.Then make sure Windows Vista/7 installation is UNSELECTED.</p>
<p>5.Then click on &#8220;Command prompt&#8221;.</p>
<p>6.Then type : bootrec.exe /fixboot</p>
<p>7.After that type : bootrec.exe /fixmbr</p>
<p>8.Then close the windows and click &#8220;Restart.&#8221;</p>
<p>This is my references :<a href="http://ubuntuforums.org/showthread.php?t=1014708" target="_blank"> http://ubuntuforums.org/showthread.php?t=1014708</a></p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://izabil.com/2010/error-file-not-found-grub-rescue/" target="_blank"><img src="http://izabil.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://izabil.com/2010/error-file-not-found-grub-rescue/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://izabil.com/2010/error-file-not-found-grub-rescue/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to develop iPhone application without using iPhone sdk or Apple Mac</title>
		<link>http://izabil.com/2010/how-to-develop-iphone-application-without-using-iphone-sdk-or-apple-mac/</link>
		<comments>http://izabil.com/2010/how-to-develop-iphone-application-without-using-iphone-sdk-or-apple-mac/#comments</comments>
		<pubDate>Sun, 02 May 2010 04:50:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[From Me For You]]></category>

		<guid isPermaLink="false">http://izabil.com/?p=559</guid>
		<description><![CDATA[You can use PhoneGap.What is PhoneGap? PhoneGap is an open source development framework for building cross-platform mobile apps. Build apps in HTML and JavaScript and still take advantage of core features in iPhone/iTouch, iPad, Google Android, Palm, Symbian and Blackberry SDKs. To know more,you can visit here (http://www.phonegap.com/)&#8230; Share on Facebook]]></description>
			<content:encoded><![CDATA[<p>You can use PhoneGap.What is PhoneGap?</p>
<blockquote><p>PhoneGap is an open source development framework for building cross-platform mobile apps.  Build apps in HTML and JavaScript and <em>still</em> take advantage of core features in iPhone/iTouch, iPad, Google Android, Palm, Symbian and Blackberry SDKs.</p></blockquote>
<p>To know more,you can visit<a href="http://www.phonegap.com/" target="_blank"> here (http://www.phonegap.com/)</a>&#8230;</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://izabil.com/2010/how-to-develop-iphone-application-without-using-iphone-sdk-or-apple-mac/" target="_blank"><img src="http://izabil.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://izabil.com/2010/how-to-develop-iphone-application-without-using-iphone-sdk-or-apple-mac/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://izabil.com/2010/how-to-develop-iphone-application-without-using-iphone-sdk-or-apple-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading to UBuntu 10.04 LTS</title>
		<link>http://izabil.com/2010/upgrading-to-ubuntu-10-04-lts/</link>
		<comments>http://izabil.com/2010/upgrading-to-ubuntu-10-04-lts/#comments</comments>
		<pubDate>Sun, 02 May 2010 03:51:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[From Me For You]]></category>

		<guid isPermaLink="false">http://izabil.com/?p=557</guid>
		<description><![CDATA[Right now i am upgrading my ubuntu from version 9.10 to 10.04 LTS&#8230;..Its look like a nice problem.My Ubuntu 9.10 is having problem in gdm&#8230;I cannot set login window and cannot change splash screen.Hope this 10.04 successfully resolve this problem&#8230; Share on Facebook]]></description>
			<content:encoded><![CDATA[<p>Right now i am upgrading my ubuntu from version 9.10 to 10.04 LTS&#8230;..Its look like a nice problem.My Ubuntu 9.10 is having problem in gdm&#8230;I cannot set login window and cannot change splash screen.Hope this 10.04 successfully resolve this problem&#8230;</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://izabil.com/2010/upgrading-to-ubuntu-10-04-lts/" target="_blank"><img src="http://izabil.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://izabil.com/2010/upgrading-to-ubuntu-10-04-lts/" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://izabil.com/2010/upgrading-to-ubuntu-10-04-lts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
