<?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>Khalil Majdalawi&#039;s Blog &#187; ubuntu</title>
	<atom:link href="http://dev3k.com/blog/tag/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://dev3k.com/blog</link>
	<description>Web development,Technology,Games and more...</description>
	<lastBuildDate>Mon, 30 Jan 2012 09:57:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Black Screen on Ubuntu</title>
		<link>http://dev3k.com/blog/2011/11/black-screen-on-ubuntu/</link>
		<comments>http://dev3k.com/blog/2011/11/black-screen-on-ubuntu/#comments</comments>
		<pubDate>Sun, 27 Nov 2011 21:12:05 +0000</pubDate>
		<dc:creator>Khalil Majdalawi</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[HP pavilion g6]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://dev3k.com/blog/?p=401</guid>
		<description><![CDATA[Today i tried to install Ubuntu 11.10 on HP Pavilion g6 laptop and i faced a strange problem a black screen during installation!!! so i tried connecting it to another monitor and it did work but after installation and installing latest update and drivers the problem still exist on the main monitor :S so after [...]]]></description>
			<content:encoded><![CDATA[<p>Today i tried to install Ubuntu 11.10 on <strong>HP Pavilion g6</strong> laptop and i faced a strange problem a black screen during installation!!!</p>
<p>so i tried connecting it to another monitor and it did work but after installation and installing latest update and drivers the problem still exist on the main monitor :S</p>
<p>so after some googleing and trying deferent solutions i found out that the problem in screen brightness level,  for laptop monitor the level is  0 or less "total black"  which is weird,  and the fn key is working in wrong way "inversed" WTH!! ,</p>
<p>to adjust the level you need to hit f3 without fn key :S , or find the solution the hard way  by setting it in this file /etc/rc.local by adding the following line before exit 0</p>
<blockquote><p>echo 5 &gt; /sys/class/backlight/acpi_video0/brightness<br />
exit 0</p></blockquote>
<p>Where 5 is the brightness level from 0 to 10</p>
<p><a href="http://askubuntu.com/questions/79983/screen-brightness-resets-to-minimum-after-every-reboot" target="_blank">source </a></p>
]]></content:encoded>
			<wfw:commentRss>http://dev3k.com/blog/2011/11/black-screen-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to fix the Ubuntu GPG Error BADSIG</title>
		<link>http://dev3k.com/blog/2010/06/how-to-fix-the-ubuntu-gpg-error-badsig/</link>
		<comments>http://dev3k.com/blog/2010/06/how-to-fix-the-ubuntu-gpg-error-badsig/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 10:07:09 +0000</pubDate>
		<dc:creator>Khalil Majdalawi</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://dev3k.com/blog/?p=368</guid>
		<description><![CDATA[If you are seeing Ubuntu GPG Error BADSIG use the one of the following methods to fix Error Message: W: GPG error: http://archive.canonical.com intrepid Release: The following signatures were invalid: BADSIG 40976EAF437D05B5 Ubuntu Archive Automatic Signing Key Try to run the following commands from terminal sudo -i apt-get clean cd /var/lib/apt mv lists lists.old mkdir [...]]]></description>
			<content:encoded><![CDATA[<p>If you are seeing Ubuntu GPG Error BADSIG use the one of the following methods to fix</p>
<p>Error Message:<br />
W: GPG error: http://archive.canonical.com intrepid Release: The following signatures were invalid: BADSIG 40976EAF437D05B5 Ubuntu Archive Automatic Signing Key </p>
<p>Try to run the following commands from terminal</p>
<pre>
<code>sudo -i
apt-get clean
cd /var/lib/apt
mv lists lists.old
mkdir -p lists/partial
apt-get clean
apt-get update</code>
</pre>
<p><a href="http://www.ubuntugeek.com/how-to-fix-the-ubuntu-gpg-error-badsig.html">source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dev3k.com/blog/2010/06/how-to-fix-the-ubuntu-gpg-error-badsig/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Mount and Unmout ISO Files in Ubuntu</title>
		<link>http://dev3k.com/blog/2009/06/mount-and-unmout-iso-files-in-ubuntu/</link>
		<comments>http://dev3k.com/blog/2009/06/mount-and-unmout-iso-files-in-ubuntu/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 18:18:30 +0000</pubDate>
		<dc:creator>Khalil Majdalawi</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://dev3k.com/blog/?p=297</guid>
		<description><![CDATA[Mount ISO File First you need to make the directory to put the ISO file into using the following command sudo mkdir /media/isodir Then use following command sudo mount your_image_file.iso /media/isodir/ -t iso9660 -o loop Now you should have your iso file mounted, and accessible from your desktop. Unmount ISO File Just use following command [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Mount ISO File</strong><br />
<br />
First you need to make the directory to put the ISO file into using the following command</p>
<pre><code>sudo mkdir /media/isodir</code></pre>
<p>Then use following command</p>
<pre><code>sudo mount your_image_file.iso /media/isodir/ -t iso9660 -o loop</code></pre>
<p>Now you should have your iso file mounted, and accessible from your desktop.<br />
<br />
<strong>Unmount ISO File</strong><br />
<br />
Just use following command</p>
<pre><code>sudo umount /media/isodir</code></pre></p>
]]></content:encoded>
			<wfw:commentRss>http://dev3k.com/blog/2009/06/mount-and-unmout-iso-files-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux usage share for client devices</title>
		<link>http://dev3k.com/blog/2009/05/linux-usage-share-for-client-devices/</link>
		<comments>http://dev3k.com/blog/2009/05/linux-usage-share-for-client-devices/#comments</comments>
		<pubDate>Mon, 04 May 2009 15:23:06 +0000</pubDate>
		<dc:creator>Khalil Majdalawi</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[market shares]]></category>
		<category><![CDATA[opensuse]]></category>
		<category><![CDATA[operating systems]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://dev3k.com/blog/?p=230</guid>
		<description><![CDATA[Net Applications, a Web site analytics company, just published their April 2009 Web users survey, Market Share, and they found that "Linux usage share on client devices has surpassed 1% for the first time and we still have 99% to go and i think it can make it , thanks to some powerful distributions like [...]]]></description>
			<content:encoded><![CDATA[<div id="left">
<div id="leftcontainer"><!---  START LEFT NAV     --> <!-- START NAVIGATION STYLE --><!-- END NAVIGATION STYLE --> <!---  START LEFT NAV     --> <script type="text/javascript"><!--
 function tog(node) { ebid = document.getElementById(node); if (ebid) { stl = ebid.style; if (stl.display == 'block') { stl.display = 'none'; if (document.images) { var thisImg = document.images["i_"+node]; if (thisImg) {  if (node == 'P0_3') { thisImg.src = "http://www.computerworld.com/common/images/leftnav/sign_plus.gif"; } else { thisImg.src = "http://www.computerworld.com/common/images/leftnav/sign_plus.gif"; } } } } else { stl.display = 'block'; if (document.images) { var thisImg = document.images["i_"+node]; if (thisImg) { if (node == 'P0_3') { thisImg.src = "http://www.computerworld.com/common/images/leftnav/sign_minus.gif"; } else {  thisImg.src = "http://www.computerworld.com/common/images/leftnav/sign_minus.gif"; } } } } } }
// --></script></div>
</div>
<p><a href="http://www.netapplications.com/" target="_self">Net Applications</a>, a Web site analytics company, just published their April 2009 Web users survey, Market Share, and they found that "<a href="http://marketshare.hitslink.com/operating-system-market-share.aspx?qprid=8&amp;sample=35" target="_self">Linux usage share on client devices has surpassed 1%</a> for the first time and we still have 99% to go and i think it can make it , thanks to some powerful distributions like <a href="http://www.ubuntu.com" target="_blank">Ubuntu</a>,<a href="http://fedoraproject.org" target="_blank">Fedora</a> and <a href="http://www.opensuse.org" target="_blank">OpenSUSE</a>.</p>
<p><a href="http://dev3k.com/blog/wp-content/uploads/2009/05/market_share.jpg"><img class="aligncenter size-full wp-image-231" title="market_share" src="http://dev3k.com/blog/wp-content/uploads/2009/05/market_share.jpg" alt="market_share" width="692" height="423" /></a></p>
<p style="text-align: center;">
]]></content:encoded>
			<wfw:commentRss>http://dev3k.com/blog/2009/05/linux-usage-share-for-client-devices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving from Ubuntu 8.04 to 9.04</title>
		<link>http://dev3k.com/blog/2009/04/moving-from-ubuntu-804-to-904/</link>
		<comments>http://dev3k.com/blog/2009/04/moving-from-ubuntu-804-to-904/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 09:57:04 +0000</pubDate>
		<dc:creator>Khalil Majdalawi</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[operating systems]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://dev3k.com/blog/?p=216</guid>
		<description><![CDATA[So finally i got free time to upgrade to new Ubuntu Jaunty 9.04 , i was using Ubuntu Hardy 8.04 for long time and it was awesome but now its time to move , and here some new features i liked or noticed at first use for the new release : New Ext4 file system [...]]]></description>
			<content:encoded><![CDATA[<p>So finally i got free time to upgrade to new Ubuntu Jaunty 9.04 , i was using Ubuntu Hardy 8.04 for long time and it was awesome but now its time to move , and here some new features i liked or noticed at first use for the new release :</p>
<ol>
<li>New <a href="http://en.wikipedia.org/wiki/Ext4" target="_blank">Ext4</a> file system support</li>
<li>Faster boot time almost 20 sec "wow" check this video
<div><object width="425" height="344" data="http://www.youtube.com/v/5GKohxZHNg4&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/5GKohxZHNg4&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></div>
</li>
<li>New network manager and its way better and easier comparing to 8.04</li>
<li>Nautilus 2.26.2 and tabs thing very useful</li>
<li>New notification area which rocks <img class="aligncenter size-full wp-image-221" title="9_04_notify_area" src="http://dev3k.com/blog/wp-content/uploads/2009/04/9_04_notify_area.jpg" alt="9_04_notify_area" width="303" height="122" /></li>
<li>The shutdown/restart/suspend options have been taken off the System main menu</li>
<li>Wallpaper transformation</li>
</ol>
<p>last thoughts :</p>
<p>comparing to 8.04 its way faster,better and sexier <img src='http://dev3k.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  , and here is my desktop final look</p>
<p><a href="http://dev3k.com/blog/wp-content/uploads/2009/04/ubuntu_9_04_screenshot.jpg"><img class="aligncenter size-full wp-image-223" title="ubuntu_9_04_screenshot" src="http://dev3k.com/blog/wp-content/uploads/2009/04/ubuntu_9_04_screenshot.jpg" alt="ubuntu_9_04_screenshot" width="600" height="480" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://dev3k.com/blog/2009/04/moving-from-ubuntu-804-to-904/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

