<?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>Ask Your Question &#187; Linux</title>
	<atom:link href="http://askbahar.com/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://askbahar.com</link>
	<description>Lets Talk</description>
	<lastBuildDate>Sun, 11 Mar 2012 09:50:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to add command shortcut in Ubuntu shell</title>
		<link>http://askbahar.com/2011/04/01/how-to-add-command-shortcut-in-ubuntu-shell/</link>
		<comments>http://askbahar.com/2011/04/01/how-to-add-command-shortcut-in-ubuntu-shell/#comments</comments>
		<pubDate>Fri, 01 Apr 2011 04:43:30 +0000</pubDate>
		<dc:creator>Habib Ullah Bahar</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[alias]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[shortcut]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://askbahar.com/?p=111</guid>
		<description><![CDATA[<p>When you need to write long commands in Linux shell, like me, you must have been looking for a way (if you haven&#8217;t found the way already ) to create shortcuts for those long commands.<br /> Based on your need, you can do any of the following:<br /> alias: If you need a shortcut for [...]]]></description>
			<content:encoded><![CDATA[<p>When you need to write long commands in Linux shell, like me, you must have been looking for a way (if you haven&#8217;t found the way already <img src='http://askbahar.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> ) to create shortcuts for those long commands.<br />
Based on your need, you can do any of the following:<span id="more-111"></span><br />
<strong>alias: </strong>If you need a shortcut for only the current shell session, use alias.</p>
<ul>
<li>To check current aliases list: <em>alias</em></li>
<li>To check an existing alias: <em>alias ALIAS_NAME</em></li>
<li>To add new alias: <em>alias </em><em>COMMAND_SHORTCUT = </em><em>&#8216;LONG_COMMAND&#8217; </em>[example: <em>alias apacheReload = '/etc/init.d/apache2 reload'''</em>]</li>
<li>To remove an existing alias: <em>unalias ALIAS_NAME</em></li>
<li>Learn more about alias at <a href="http://en.wikipedia.org/wiki/Alias_%28command%29" target="_blank">Wikipedia</a>, <a href="http://ss64.com/bash/alias.html" target="_blank">Bash Man Page for Alias</a></li>
</ul>
<p><strong>Symbolic Links: </strong>This is actually my favorite. Does not depend on current shell session. FYI. each command is actually an executable script.</p>
<ul>
<li>To create a shortcut for all users, create a soft symbolic link of the executable script in <em>/usr/local/bin</em>. For example, to execute apache related commands using just apache, issue this command<br />
<em>ln -s /etc/init.d/apache2 /usr/local/bin/apache </em>#this command will create a soft symbolic link of apache2 in /usr/local/bin directory. Now you can just manage apache by using <em>apache</em> command<em>.</em></li>
<li>To create a shortcut only for current user, create a soft symbolic link of the executable script in <em>$HOME/bin</em></li>
</ul>
<p><strong>Using your own shell scripts</strong>: This requires understanding of shell scripting. You can create a shell script which essentially provide the full ability to create new system commands. Make the script executable, keep it in home directory.</p>
<p>&nbsp;</p>
<p>I hope it helps some one. Please use the comment section to provide your feedback.</p>
]]></content:encoded>
			<wfw:commentRss>http://askbahar.com/2011/04/01/how-to-add-command-shortcut-in-ubuntu-shell/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to restore volume icon in Ubuntu Gnome</title>
		<link>http://askbahar.com/2010/09/21/restore-volume-icon-in-ubuntu/</link>
		<comments>http://askbahar.com/2010/09/21/restore-volume-icon-in-ubuntu/#comments</comments>
		<pubDate>Tue, 21 Sep 2010 04:09:39 +0000</pubDate>
		<dc:creator>Habib Ullah Bahar</dc:creator>
				<category><![CDATA[Gnome]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[volume]]></category>
		<category><![CDATA[volume icon]]></category>

		<guid isPermaLink="false">http://askbahar.com/?p=96</guid>
		<description><![CDATA[<p>So why would someone need this at the first place? When someone like me make a stupid mistake by removing them </p> <p>Restoring volume icon is different in Ubuntu 9.10 or later versions.<br /> </p> <p>So if you are in Ubuntu 9.04 or earlier,</p> <p>1. Right click on the panel and click &#8216;Add to Panel&#8217;</p> [...]]]></description>
			<content:encoded><![CDATA[<p>So why would someone need this at the first place? When someone like me make a stupid mistake by removing them <img src='http://askbahar.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Restoring volume icon is different in Ubuntu 9.10 or later versions.<br />
<span id="more-96"></span></p>
<p>So if you are in Ubuntu 9.04 or earlier,</p>
<blockquote><p>1. Right click on the panel and click &#8216;Add to Panel&#8217;</p>
<p>2. Find Sound/Volume</p>
<p>3. Add it.</p></blockquote>
<p>And if you are in Ubuntu 9.10 or later like me</p>
<blockquote><p>1. Right click on the panel and click on Add to Panel</p>
<p>2. Find &#8216;Notification Area&#8217; and add it. (IN case you have already have a notification area added like me, you can skip this step).</p>
<p>3. Right click near Notification Area</p>
<p>4. Find &#8216;Indicator Applet&#8217; and add it.</p></blockquote>
<p>By any chance if the above method does not work for you, you can restore your gnome panel by applying following commands in your terminal.</p>
<blockquote><p><code>rm -f ~/.gconf/apps/panel<br />
sudo /etc/init.d/gdm restart</code></p></blockquote>
<p>Partial credit for this post: <a href="http://ubuntuforums.org/showthread.php?t=1357005" target="_blank">Ubuntu Forum</a> <img src='http://askbahar.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Let me know if you have any problem figuring this <img src='http://askbahar.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://askbahar.com/2010/09/21/restore-volume-icon-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to prepare bootable flash drive of Windows 7 and Ubuntu</title>
		<link>http://askbahar.com/2010/09/19/prepare-bootable-flash-drive-windows-7-ubuntu/</link>
		<comments>http://askbahar.com/2010/09/19/prepare-bootable-flash-drive-windows-7-ubuntu/#comments</comments>
		<pubDate>Sun, 19 Sep 2010 13:11:36 +0000</pubDate>
		<dc:creator>Habib Ullah Bahar</dc:creator>
				<category><![CDATA[Bootable ISO]]></category>
		<category><![CDATA[Links Collection]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ubuntu Maverick]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[boot os]]></category>
		<category><![CDATA[bootable ubuntu]]></category>
		<category><![CDATA[flash drive]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[universal usb installer]]></category>
		<category><![CDATA[winodws 7]]></category>

		<guid isPermaLink="false">http://askbahar.com/?p=92</guid>
		<description><![CDATA[<p>There are bunch of articles and softwares available online to achieve this. So instead of writing another tutorial, I am sharing the available tutorials which I have used often when I needed.</p> <p>Here are the links:</p> <p>Make your own bootable Windows 7 Flash Drive</p> Recommended: <a href="http://kmwoley.com/blog/?p=345" target="_blank">http://kmwoley.com/blog/?p=345</a> Without using any additional software: <a href="http://maketecheasier.com/boot-and-install-windows-7-from-usb-flash-drive/2009/01/23" target="_blank">http://maketecheasier.com/boot-and-install-windows-7-from-usb-flash-drive/2009/01/23</a> With [...]]]></description>
			<content:encoded><![CDATA[<p>There are bunch of articles and softwares available online to achieve this. So instead of writing another tutorial, I am sharing the available tutorials which I have used often when I needed.</p>
<p>Here are the links:</p>
<p><strong>Make your own bootable Windows 7 Flash Drive</strong></p>
<ul>
<li>Recommended: <a href="http://kmwoley.com/blog/?p=345" target="_blank">http://kmwoley.com/blog/?p=345</a></li>
<li>Without using any additional software: <a href="http://maketecheasier.com/boot-and-install-windows-7-from-usb-flash-drive/2009/01/23" target="_blank">http://maketecheasier.com/boot-and-install-windows-7-from-usb-flash-drive/2009/01/23</a></li>
<li>With Microsoft provided software: <a href="http://store.microsoft.com/help/iso-tool]http://store.microsoft.com/help/iso-tool" target="_blank">http://store.microsoft.com/help/iso-tool]http://store.microsoft.com/help/iso-tool</a> (only 2.6 MB)</li>
<li>Using 3rd party software: <a href="http://maketecheasier.com/updated-boot-and-install-windows-7-from-usb-flash-drive/2009/09/" target="_blank">http://maketecheasier.com/updated-boot-and-install-windows-7-from-usb-flash-drive/2009/09/</a> (only 6.7 MB)</li>
</ul>
<p><strong>Make bootable Ubuntu using Flash Drive</strong></p>
<p>Actually this is very much easy, and same for all distro. all are free n opensource.</p>
<ul>
<li><a href="http://www.pendrivelinux.com/universal-usb-installer-easy-as-1-2-3/" target="_blank">Universal USB Installer</a></li>
<li><a href="http://unetbootin.sourceforge.net/" target="_blank">UNetbootin</a></li>
</ul>
<p>I hope it helps, if you need any help, let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://askbahar.com/2010/09/19/prepare-bootable-flash-drive-windows-7-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Maverick (beta) repository problem</title>
		<link>http://askbahar.com/2010/09/18/ubuntu-maverick-repository-problem/</link>
		<comments>http://askbahar.com/2010/09/18/ubuntu-maverick-repository-problem/#comments</comments>
		<pubDate>Sat, 18 Sep 2010 04:06:28 +0000</pubDate>
		<dc:creator>Habib Ullah Bahar</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ubuntu Maverick]]></category>
		<category><![CDATA[maverick]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[ubuntu repository]]></category>
		<category><![CDATA[vlc install problem]]></category>

		<guid isPermaLink="false">http://askbahar.com/?p=82</guid>
		<description><![CDATA[<p>I used to be a Fedora distro fan, but considering the popularity of Ubuntu, I have decided to try Ubuntu, and downloaded the latest one, <a title="Try Ubuntu Maverick" href="http://www.ubuntu.com/testing/maverick/beta" target="_blank">Ubuntu Maverick (10.10 beta) </a>.</p> <p>After installation, first I enabled Ubuntu Multiverse repository then tried to install vlc applying the following command in terminal:</p> <p [...]]]></description>
			<content:encoded><![CDATA[<p>I used to be a Fedora distro fan, but considering the popularity of Ubuntu, I have decided to try Ubuntu, and downloaded the latest one, <a title="Try Ubuntu Maverick" href="http://www.ubuntu.com/testing/maverick/beta" target="_blank">Ubuntu Maverick (10.10 beta) </a>.</p>
<p>After installation, first I enabled Ubuntu Multiverse repository then tried to install vlc applying the following command in terminal:</p>
<p style="padding-left: 30px;"><strong>sudo apt-get update</strong></p>
<p style="padding-left: 30px;"><strong>sudo apt-get install vlc vlc-plugin-pulse mozilla-plugin-vlc</strong></p>
<p>But I got this error:</p>
<blockquote><p>Reading package lists&#8230; Done<br />
Building dependency tree<br />
Reading state information&#8230; Done<br />
E: Couldn&#8217;t find package vlc</p></blockquote>
<p><span id="more-82"></span><br />
<em> After some investigation, I found out that some Ubuntu mirror repositories aren&#8217;t fully updated for Maverick yet. </em><em><strong>Bangladesh Ubuntu mirror</strong> is one of them <img src='http://askbahar.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </em></p>
<p><em>Solution? Just change the active mirror server to US or main server. I changed mine to Singapore eznetsols.org mirror.</em></p>
<p><em><span style="font-style: normal;">To change using GUI, </span></em></p>
<blockquote><p><em><span style="font-style: normal;">1. System-&gt;Administrator-&gt;Synaptic Package Manager</span></em></p>
<p><em><span style="font-style: normal;">2. Settings-&gt;Repositories</span></em></p>
<p><em><span style="font-style: normal;">3. Click on Download From drop down menu, select Other, then choose a better mirror server near your location.</span></em></p>
<p><em><span style="font-style: normal;">4. Hit Reload</span></em></p>
<p><em><span style="font-style: normal;">5. Now install any package you want <img src='http://askbahar.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span></em></p></blockquote>
<p>I hope it helps. For any query/help please use the comment from below.</p>
]]></content:encoded>
			<wfw:commentRss>http://askbahar.com/2010/09/18/ubuntu-maverick-repository-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to verify an ISO image in linux before burning</title>
		<link>http://askbahar.com/2008/05/17/verify-iso-image-in-linux-before-burning/</link>
		<comments>http://askbahar.com/2008/05/17/verify-iso-image-in-linux-before-burning/#comments</comments>
		<pubDate>Sat, 17 May 2008 10:24:19 +0000</pubDate>
		<dc:creator>Habib Ullah Bahar</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[boot]]></category>
		<category><![CDATA[ISO]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[os]]></category>
		<category><![CDATA[vmware player]]></category>

		<guid isPermaLink="false">http://askbahar.wordpress.com/?p=29</guid>
		<description><![CDATA[<p>There is no nice or 100% effective fast way to verify an <a title="ISO image in Wikipedia" href="http://en.wikipedia.org/wiki/Iso_image" target="_blank">ISO image</a> of any OS [normally *INX based OS] without installing. But there are several ways one can test the ISO image. If the test(s) are successful, there is a high (to me which is almost 100% [...]]]></description>
			<content:encoded><![CDATA[<p>There is no nice or 100% effective fast way to verify an <a title="ISO image in Wikipedia" href="http://en.wikipedia.org/wiki/Iso_image" target="_blank">ISO image</a> of any OS [normally *INX based OS] without installing. But there are several ways one can test the ISO image. If the test(s) are successful, there is a high (to me which is almost 100% <img src='http://askbahar.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ) probability, that the ISO is perfect to be burned in a CD or DVD which one is desirable.</p>
<p><span id="more-29"></span></p>
<ul>
<li>After downlaoding an ISO from any source, you must validate the SH1SUM or MD5SUM which one is required in your case to verify the security and integrity of your ISO.</li>
<li>You can manually mount the ISO image to check its content when you are in Linux using the code
<pre>su -c 'mount -o loop -t iso9660 &lt;isofilename&gt; &lt;mountpoint&gt;</pre>
</li>
<li>You can use <a href="https://www.vmware.com/products/player/" target="_blank">VMware Player</a> to boot your ISO image, even you can install it as a virtual OS in Linux. With this free software, you can not only verify the image but you can also test the installation without changing your current installation of Linux. Download it from <a title="Download VMware Player" href="https://www.vmware.com/download/player/" target="_blank">here</a>.</li>
</ul>
<p>Some useful links about the topic:</p>
<ul>
<li><a href="http://fedoraproject.org/en/verify" target="_self">http://fedoraproject.org/en/verify</a></li>
<li><a href="http://www.ubuntugeek.com/how-to-install-ubuntu-linux-from-usb-stick.html" target="_self">http://www.ubuntugeek.com/how-to-install-ubuntu-linux-from-usb-stick.html</a></li>
<li><a href="http://en.opensuse.org/Download_Help" target="_self">http://en.opensuse.org/Download_Help</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://askbahar.com/2008/05/17/verify-iso-image-in-linux-before-burning/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fedora 9 (Sulphur) is on earth&#8230;grab it!</title>
		<link>http://askbahar.com/2008/05/15/fedora9-released/</link>
		<comments>http://askbahar.com/2008/05/15/fedora9-released/#comments</comments>
		<pubDate>Thu, 15 May 2008 03:49:02 +0000</pubDate>
		<dc:creator>Habib Ullah Bahar</dc:creator>
				<category><![CDATA[Operating System]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[fedora 9]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[os]]></category>
		<category><![CDATA[sulphur]]></category>

		<guid isPermaLink="false">http://askbahar.wordpress.com/?p=23</guid>
		<description><![CDATA[<p><a href="http://askbahar.files.wordpress.com/2008/05/f9launch.png"></a></p> <p>So after a long time, Fedora 9 (Sulphur) has been released. The version includes some must need features.</p> <p>Here is the list..</p> <p></p> This release features <a class="ulink" href="http://www.gnome.org/start/2.22/notes/C/" target="_top">GNOME 2.22</a>. GNOME now includes a webcam photo and video creation utility called Cheese, improved network filesystem support, a new international clock applet, Google [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://askbahar.files.wordpress.com/2008/05/f9launch.png"><img class="alignleft size-full wp-image-28" src="http://askbahar.files.wordpress.com/2008/05/f9launch.png" alt="Fedora 9 Launched" width="450" height="150" /></a></p>
<p>So after a long time, Fedora 9 (Sulphur) has been released. The version includes some must need features.</p>
<p>Here is the list..</p>
<p><span id="more-23"></span></p>
<div class="itemizedlist">
<ul type="disc">
<li>This release features             <a class="ulink" href="http://www.gnome.org/start/2.22/notes/C/" target="_top">GNOME             2.22</a>. GNOME now includes a webcam photo and video             creation utility called <span class="application"><strong>Cheese</strong></span>,             improved network filesystem support, a new international             clock applet, Google Calendar support and custom email             labels in Evolution, a new Remote Desktop Viewer, improved             accessibility features, and             <span class="application"><strong>PolicyKit</strong></span> integration.</li>
<li>KDE 4.0.3 is available with more upgraded features and overall its more stable.</li>
<li><a class="ulink" href="http://fedoraproject.org/wiki/NetworkManager" target="_top"> NetworkManager</a> 0.7 provides improved mobile             broadband support, including GSM and CDMA devices, and now             supports multiple devices and ad-hoc networking for sharing             connections. To me its the best feature of Fedora9.</li>
<li>The Fedora installer, <span class="application"><strong>Anaconda</strong></span>, 	    now supports partition resizing for ext2/3, NTFS 	    filesystems, creating and installing to encrypted file 	    systems, improved Rescue Mode with FirstAidKit, 	    independent locations for the second stage installer and 	    the software packages.</li>
<li>Live USB images now support persistence, so your data and 	    setting changes will be preserved even after rebooting.</li>
<li><a class="ulink" href="http://www.packagekit.org/" target="_top">PackageKit</a>, 	    a new set of graphical and console tools, with a framework 	    for cross-distribution software management, has 	    replaced <span class="application"><strong>Pirut</strong></span> in this release 	    of Fedora. The <span class="application"><strong>PackageKit</strong></span> graphical updater is available instead 	    of <span class="application"><strong>Pup</strong></span>. Behind <span class="application"><strong>PackageKit</strong></span>, 	    the performance of <code>yum</code> has been 	    significantly improved.</li>
<li><a class="ulink" href="http://en.wikipedia.org/wiki/Ext4" target="_top">Ext4</a>, 	    the next version of the mature and stable ext3 filesystem 	    is available as a option in this release. Ext4 features 	    better performance, higher storage capacity and several 	    other new features.</li>
<li>This release of Fedora uses 	    <a class="ulink" href="http://upstart.ubuntu.com/" target="_top"><span class="application"><strong>Upstart</strong></span></a>, 	    an event-based replacement for 	    the <code>/sbin/init</code> daemon.</li>
<li>Firefox 3 brings a number of major improvements including 	    a native look and feel, desktop integration, the new 	    Places replacement for bookmarks, and a re-worked address 	    bar.</li>
<li>The completely free and open source Java environment 	    OpenJDK 6 is installed by 	    default.</li>
<li><a class="ulink" href="http://fedoraproject.org/wiki/OpenOffice" target="_top">OpenOffice.org</a> 2.4, with many new features, is available as part of 	    Fedora 9.</li>
<li>Fedora now includes             <a class="ulink" href="http://perldoc.perl.org/perldelta.html" target="_top"> <span class="application"><strong>Perl 5.10.0</strong></span></a>, which             features a smaller memory footprint and other improvements.</li>
<li>Fedora now 	    includes <a class="ulink" href="http://www.tug.org/texlive/" target="_top">TeXLive</a> to replace the older, unmaintained TeX distribution.</li>
<li>Fedora 9 features a 2.6.25 based kernel.</li>
<li>And definitely Fedora 9 is much more stable than Fedora 8.</li>
</ul>
</div>
<div class="itemizedlist"></div>
<div class="itemizedlist">To see the detailed release note, <a title="Fedora 9 Release notes" href="http://docs.fedoraproject.org/release-notes/f9/" target="_blank">click here</a>. To grab your Fedora 9, please visit <a title=" Navigation      * Home     * Get Fedora     * Join Fedora  Tools      * Docs Fedora documentation.     * Wiki Collaborative knowledge.     * Planet The voices of the Fedora community.     * Communicate Speak with Fedora.     * Events Meet the Fedora community.  Website Language Fedora, For You." href="http://fedoraproject.org/en/get-fedora" target="_blank">Get Fedora</a></div>
<div class="itemizedlist"></div>
<div class="itemizedlist">So start enjoying the new Sulphar&#8230;.</div>
<div class="itemizedlist"></div>
<div class="itemizedlist"><span style="color:#808080;"><em>Source: http://fedoraproject.org</em></span></div>
]]></content:encoded>
			<wfw:commentRss>http://askbahar.com/2008/05/15/fedora9-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

