<?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>Blogulate &#187; Linux</title>
	<atom:link href="http://blogulate.com/content/category/software/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogulate.com</link>
	<description>Snippets from the web</description>
	<lastBuildDate>Sat, 31 Jul 2010 01:52:37 +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>Mounting USB drives on Red Hat / Fedora Core 2</title>
		<link>http://blogulate.com/content/mounting-usb-drives-on-red-hat-fedora-core-2/</link>
		<comments>http://blogulate.com/content/mounting-usb-drives-on-red-hat-fedora-core-2/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 18:24:07 +0000</pubDate>
		<dc:creator>thinkdj</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blogulate.com/content/mounting-usb-drives-on-red-hat-fedora-core-2/</guid>
		<description><![CDATA[Earlier distros of Linux does not have the automount daemon (autofs). Users would have to mount USB drives themselves. Mounting the &#8216;drive&#8217; actually means mounting the File System contained within the drive. Here&#8217;s how to go about : First, make a directory in /mnt/ where the USB drive can be mounted to. This can be [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblogulate.com%2Fcontent%2Fmounting-usb-drives-on-red-hat-fedora-core-2%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblogulate.com%2Fcontent%2Fmounting-usb-drives-on-red-hat-fedora-core-2%2F&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p> Earlier distros of Linux does not have the automount daemon (autofs). Users would have to mount USB drives themselves. Mounting the &#8216;drive&#8217; actually means mounting the File System contained within the drive. Here&#8217;s how to go about :</p>
<p>First, make a directory in /mnt/ where the USB drive can be mounted to. This can be done by</p>
<pre>mkdir /mnt/usb1</pre>
<p>Next, make sure the USB drive is plugged in and mount it using :</p>
<pre>mount /dev/sda1 /mnt/usb1</pre>
<p>PS : If the system throws a privilege error, perpend <strong>sudo</strong> to the above commands.  </p>
]]></content:encoded>
			<wfw:commentRss>http://blogulate.com/content/mounting-usb-drives-on-red-hat-fedora-core-2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Manually entering XP boot information onto Ubuntu GRUB</title>
		<link>http://blogulate.com/content/manually-entering-xp-boot-information-onto-ubuntu-grub/</link>
		<comments>http://blogulate.com/content/manually-entering-xp-boot-information-onto-ubuntu-grub/#comments</comments>
		<pubDate>Sun, 20 Apr 2008 14:48:23 +0000</pubDate>
		<dc:creator>thinkdj</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blogulate.com/content/manually-entering-xp-boot-information-onto-ubuntu-grub/</guid>
		<description><![CDATA[If you did not partition the existing windows hard drive for Ubuntu and disconnected the one with Windows installed during the installation and installed ubuntu on a separate hard disk, you will run into this boot problem of XP not showing up in the Linux boot loader (GRUB) and will have to add the Windows [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblogulate.com%2Fcontent%2Fmanually-entering-xp-boot-information-onto-ubuntu-grub%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblogulate.com%2Fcontent%2Fmanually-entering-xp-boot-information-onto-ubuntu-grub%2F&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>If you did not partition the existing windows hard drive for Ubuntu and disconnected the one with Windows installed during the installation and installed ubuntu on a <strong>separate hard disk</strong>, you will run into this boot problem of XP not showing up in the Linux boot loader (GRUB) and will have to add the Windows XP boot information manually. The solution is simply adding this to /boot/grub/menu.lst</p>
<pre>title           Windows XP Professional

root            (hd1,0)

savedefault

makeactive

chainloader     +1

map (hd0) (hd1)

map (hd1) (hd0)</pre>
<p>map <strong>(hd1,0)</strong>,<strong>(hd0) (hd1)</strong> and <strong>(hd1) (hd0)</strong> depends on where your Windows partition is, which can be found out by typing:</p>
<pre>sudo fdisk -l</pre>
<p>at the terminal. In the above example, Windows is assumed to be on <em>hd1</em> and Ubuntu on <em>hd0</em>. Please modify it accordingly using the fdisk command.</p>
<p>Source : <a href="http://help.ubuntu.com/community/" target="_blank">Ubuntu Documantation</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogulate.com/content/manually-entering-xp-boot-information-onto-ubuntu-grub/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>GNU Compiler collection for Windows</title>
		<link>http://blogulate.com/content/gnu-compiler-collection-for-windows/</link>
		<comments>http://blogulate.com/content/gnu-compiler-collection-for-windows/#comments</comments>
		<pubDate>Wed, 20 Feb 2008 05:43:15 +0000</pubDate>
		<dc:creator>thinkdj</dc:creator>
				<category><![CDATA[Developers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blogulate.com/content/gnu-compiler-collection-for-windows/</guid>
		<description><![CDATA[GCC stands for GNU compiler collection. There are precompiled versions / binaries of the GCC for windows available here. Gcc for Windows (gcw) is yet another attempt to port gcc to Win32 platform. The major difference from MinGw and Cygwin is maximum possible acceptance of Microsoft Visual C++ source code and intended binary compatibility with [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblogulate.com%2Fcontent%2Fgnu-compiler-collection-for-windows%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblogulate.com%2Fcontent%2Fgnu-compiler-collection-for-windows%2F&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>GCC stands for GNU compiler collection. There are precompiled versions / binaries of the GCC for windows available<a href="http://gcc.gnu.org/install/binaries.html" target="_blank"> here.</a></p>
<blockquote><p> Gcc for Windows (gcw) is yet another attempt to port gcc to Win32 platform. The major difference from MinGw and Cygwin is maximum possible acceptance of Microsoft Visual C++ source code and intended binary compatibility with Microsoft Visual C++.</p></blockquote>
<p><a href="http://sourceforge.net/project/showfiles.php?group_id=35866" target="_blank">Get GCC for Windows</a> [GCW] 16 KB</p>
<p>Also check out : <strong>GCC for Microsoft Windows</strong>:</p>
<ul>
<li>The <a href="http://sourceware.org/cygwin/" target="_blank">Cygwin</a> project;</li>
<li>The <a href="http://www.mingw.org/" target="_blank">MinGW</a> project.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blogulate.com/content/gnu-compiler-collection-for-windows/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Simple Vi text editor tutorial</title>
		<link>http://blogulate.com/content/simple-vi-text-editor-tutorial/</link>
		<comments>http://blogulate.com/content/simple-vi-text-editor-tutorial/#comments</comments>
		<pubDate>Sun, 03 Feb 2008 06:25:15 +0000</pubDate>
		<dc:creator>thinkdj</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blogulate.com/content/simple-vi-text-editor-tutorial/</guid>
		<description><![CDATA[Found this simple Vi tutorial for the Vim text editor [Ubuntu/Linux] quite useful.. It covers everything from the basics like inserting text for noobs to advanced file manipulations using vi and customizations. You could also check out the developer, Bram Moolenaar&#8217;s vim home page, where you can also find a lot of other vim sites [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblogulate.com%2Fcontent%2Fsimple-vi-text-editor-tutorial%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblogulate.com%2Fcontent%2Fsimple-vi-text-editor-tutorial%2F&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Found this simple Vi tutorial for the Vim text editor [Ubuntu/Linux] quite useful..</p>
<p>It covers everything from the basics like inserting text for noobs to advanced file manipulations using vi and customizations. You could also check out the developer, Bram Moolenaar&#8217;s <a href="http://www.vim.org/" target="_blank"><tt id="vim"><strong>vim</strong></tt> home page,</a> where you can also find a lot of other <tt id="vim"><strong>vim</strong></tt> sites and resources.</p>
<p><a href="http://www.apmaths.uwo.ca/~xli/vim/vim_tutorial.html" target="_blank">http://www.apmaths.uwo.ca/~xli/vim/vim_tutorial.html</a>  [ Vi tutorial ]</p>
]]></content:encoded>
			<wfw:commentRss>http://blogulate.com/content/simple-vi-text-editor-tutorial/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>GNOME 2.20</title>
		<link>http://blogulate.com/content/gnome-2-2-latest-desktop-open-source-stable/</link>
		<comments>http://blogulate.com/content/gnome-2-2-latest-desktop-open-source-stable/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 09:40:32 +0000</pubDate>
		<dc:creator>thinkdj</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blogulate.com/content/gnome-2-2-latest-desktop-open-source-stable/</guid>
		<description><![CDATA[GNOME 2.20 is the latest version of the GNOME Desktop: a popular, multi-platform desktop environment. GNOME&#8217;s focus is ease of use, stability, and first class internationalization and accessibility support. Based on Free and Open Source Software, GNOME provides all of the common tools computer users expect of a modern computing environment, as well as a [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblogulate.com%2Fcontent%2Fgnome-2-2-latest-desktop-open-source-stable%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblogulate.com%2Fcontent%2Fgnome-2-2-latest-desktop-open-source-stable%2F&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>GNOME 2.20 is the <strong>latest version of the GNOME </strong>Desktop: a popular, 				multi-platform desktop environment. GNOME&#8217;s focus is ease of use,  				stability, and first class internationalization and accessibility support.</p>
<p>Based on Free and Open Source Software, GNOME provides all of the common tools  				computer users expect of a modern computing environment, as well as a flexible and 				powerful platform for software developers.</p>
<p class="para block block-first"><a href="http://www.gnome.org/start/2.20/notes/en/figures/rnintroduction-screenshot.png" target="_blank"></p>
<p style="text-align: center"><img src="http://www.gnome.org/start/2.20/notes/en/figures/rnintroduction-screenshot.png" border="0" height="308" width="460" /></p>
<p></a><br />
The improvements in GNOME 2.20 include:</p>
<ul>
<li>Improved support for right-to-left languages;</li>
<li>Desktop search integrated into the file chooser dialog;</li>
<li>Convenient new features in the Evolution email  				and calendar client;</li>
<li>Enhanced browsing of image collections;</li>
<li>Simplified system preferences;</li>
<li>Efficient  				power management</li>
<li>Incredibly accurate laptop battery monitoring.</li>
</ul>
<p><a href="http://www.gnome.org/start/stable/" target="_blank">Download GNOME 2.20</a> now!   				The GNOME Desktop is released every six months with many new features, 				improvements, &#8220;bug&#8221; fixes and translations</p>
]]></content:encoded>
			<wfw:commentRss>http://blogulate.com/content/gnome-2-2-latest-desktop-open-source-stable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Conduit project &#8211; a synchronization solution for GNOME</title>
		<link>http://blogulate.com/content/conduit-project-a-synchronization-solution-for-gnome/</link>
		<comments>http://blogulate.com/content/conduit-project-a-synchronization-solution-for-gnome/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 09:34:20 +0000</pubDate>
		<dc:creator>thinkdj</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software Reviews]]></category>

		<guid isPermaLink="false">http://blogulate.com/content/conduit-project-a-synchronization-solution-for-gnome/</guid>
		<description><![CDATA[Conduit allows the user to take their emails, files, bookmarks, and any other type of personal information and synchronize that data with another computer, an online service, or even another electronic device. Conduit manages the synchronization and conversion of data into other formats. For example, conduit allows you to; Synchronize your tomboy notes to a [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblogulate.com%2Fcontent%2Fconduit-project-a-synchronization-solution-for-gnome%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblogulate.com%2Fcontent%2Fconduit-project-a-synchronization-solution-for-gnome%2F&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Conduit allows the user to take their emails, files, bookmarks, and any other type of personal information and synchronize that data with another computer, an online service, or even another electronic device.</p>
<p><a href="http://www.conduit-project.org/attachment/wiki/Screenshots/Screenshot-conduit0.3.4.png?format=raw" target="_blank"></a></p>
<p style="text-align: center"><a href="http://www.conduit-project.org/attachment/wiki/Screenshots/Screenshot-conduit0.3.4.png?format=raw" target="_blank"><img src="http://www.conduit-project.org/attachment/wiki/Screenshots/Screenshot-conduit0.3.4.png?format=raw" height="368" width="477" /></a></p>
<p> Conduit manages the synchronization and conversion of data into other formats. For example,  conduit allows you to;</p>
<ul>
<li>Synchronize your tomboy notes to a file on a remote computer</li>
<li>Synchronize your emails to your mobile phone</li>
<li>Synchronize your bookmarks to delicious, gmail, or even your own webserver</li>
</ul>
<p><a href="http://www.conduit-project.org/wiki/Releases" target="_blank">Download Conduit</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogulate.com/content/conduit-project-a-synchronization-solution-for-gnome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
