<?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>Suhas Tech &#187; linux</title>
	<atom:link href="http://suhastech.com/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://suhastech.com</link>
	<description>I has tech!</description>
	<lastBuildDate>Sun, 18 Dec 2011 05:48:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Get FTP server running on Ubuntu, quick and easy [vsftpd]</title>
		<link>http://suhastech.com/get-ftp-server-running-on-ubuntu-quick-and-easy-vsftpd/</link>
		<comments>http://suhastech.com/get-ftp-server-running-on-ubuntu-quick-and-easy-vsftpd/#comments</comments>
		<pubDate>Thu, 10 Nov 2011 13:59:57 +0000</pubDate>
		<dc:creator>Suhas</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://suhastech.com/?p=2002</guid>
		<description><![CDATA[If you are new to linux this might be a little difficult. Once you have some basics nailed, its super easy. Here&#8217;s how to get it working without worrying about usergroups etc etc. I just wanted to get it working with my WordPress setup (Apache). First, install vsftpd sudo apt-get install vsftpd Configure your installation. [...]]]></description>
			<content:encoded><![CDATA[<p>If you are new to linux this might be a little difficult. Once you have some basics nailed, its super easy. Here&#8217;s how to get it working without worrying about usergroups etc etc. I just wanted to get it working with my WordPress setup (Apache).</p>
<p>First, install vsftpd</p>
<p><code>sudo apt-get install vsftpd</code></p>
<p>Configure your installation.</p>
<p><code>sudo nano /etc/vsftpd.conf</code><br />
or<br />
<code>sudo vi /etc/vsftpd.conf</code></p>
<p>You need to have these to uncommented (Delete the initial &#8220;#&#8221;)<br />
<code>local_enable=YES<br />
write_enable=YES</code></p>
<p>Setup password for your ubuntu user name<br />
<code>sudo passwd ubuntu</code></p>
<p>Give the permissions.<br />
<code>chown -R ubuntu /var/www/</code><br />
Obviously, you can change the path with your requirement.</p>
<p>Restart the FTP service<br />
<code>sudo /etc/init.d/vsftpd restart</code></p>
<p>This enables the Uncomplicated Firewall built-in to Ubuntu on port 21. Don&#8217;t know about others.<br />
<code>sudo ufw allow 21</code></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>That&#8217;s it. Login to your FTP with &#8220;ubuntu&#8221; username and your password.</p>
]]></content:encoded>
			<wfw:commentRss>http://suhastech.com/get-ftp-server-running-on-ubuntu-quick-and-easy-vsftpd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[How to] Program on Linux using gcc</title>
		<link>http://suhastech.com/how-to-program-on-linux-using-gcc/</link>
		<comments>http://suhastech.com/how-to-program-on-linux-using-gcc/#comments</comments>
		<pubDate>Thu, 20 Jan 2011 14:24:53 +0000</pubDate>
		<dc:creator>Suraj</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://suhastech.com/?p=551</guid>
		<description><![CDATA[Hey! It took me a while to figure out that Linux is in fact the best OS for a non-gamer like me. And whenever I DO login Windows, even by mistake, I am greeted by a slew of viruses and a painfully slow speed. So I figured I should do even my C programming on [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="Tux keyboard" src="http://jaxov.com/wp-content/uploads/2009/07/Tux-Keyboard.jpg" alt="" width="323" height="258" /></p>
<p>Hey! It took me a while to figure out that Linux is in fact the best OS for a non-gamer like me. And whenever I DO login Windows, even by mistake, I am greeted by a slew of viruses and a painfully slow speed. <img src='http://suhastech.com/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> </p>
<p>So I figured I should do even my C programming on Linux. It was there in my coursework from college you know!</p>
<p>There are<strong> two ways </strong>in which you can program in C in Linux:</p>
<p>1) Use an IDE (Integrated Development Environment) like Netbeans or Codeblocks.</p>
<p>OR</p>
<p>2) Use the inbuilt gcc compiler, like I did. <img src='http://suhastech.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>GCC basically stands for GNU C Compiler. Its not actually an IDE, but it kinda works when you get used to it. Plus, its easier to setup. Many people (including me) were in a total state of confusion at first, but hey, turns out its pretty simple! Let me illustrate the steps you need to take to compile and build a program on a Linux machine.</p>
<p>1) Type out your code in a text file (on gedit) and give it a &#8220;.c&#8221; extension. It actually works. Atleast in Ubuntu 10.4, your pre-processor code will have a different colour than the rest, and so on, like a normal IDE.</p>
<p>2) Go to Applications -&gt; Accessories -&gt; Terminal. Use the command &#8220;cd&#8221; to navigate to the directory where your &#8220;.c&#8221; file is stored. Eg: If your file is stored in &#8220;Documents&#8221; under the root folder, the type &#8220;cd Documents&#8221; in the terminal.</p>
<p>3) If your filename is say, &#8220;code.c&#8221;, then type &#8220;gcc code.c -o code&#8221;. This compiles and builds your required file.</p>
<p>4) Type &#8220;./code&#8221; to run your program. And hey presto! Its all done!</p>
<p>And of course, if u need to use C++, just replace gcc by g++. And save the file as &#8220;.cpp&#8221;. The rest is all basically the same.</p>
<p>And, sometimes it can happen that <strong>gcc may not be installed </strong>in your OS. Not a problem. It will automatically prompt you to install it in a couple of simple steps, which require you just pressing &#8220;y/n&#8221;.  <img src='http://suhastech.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>At the end of the day, Linux programming may not give you a very distinct advantage, but hey, its different! Its a skill that you&#8217;ll need to learn eventually maybe, so why not learn it now? <img src='http://suhastech.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://suhastech.com/how-to-program-on-linux-using-gcc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to set root password in Ubuntu 10.04 su</title>
		<link>http://suhastech.com/how-to-set-root-password-in-ubuntu-10-04-su/</link>
		<comments>http://suhastech.com/how-to-set-root-password-in-ubuntu-10-04-su/#comments</comments>
		<pubDate>Fri, 10 Dec 2010 14:19:04 +0000</pubDate>
		<dc:creator>Suhas</dc:creator>
				<category><![CDATA[extra]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://suhastech.com/?p=502</guid>
		<description><![CDATA[By default, the root password is not set. You can set it easily. 1) Go to Applications &#8211;> Accessories &#8211;> Terminal. 2) And enter sudo passwd root 3) You&#8217;ll get a password prompt. Set the pasword.. To login as root. su]]></description>
			<content:encoded><![CDATA[<p>By default, the root password is not set. You can set it easily.</p>
<p>1) Go to Applications &#8211;> Accessories &#8211;> Terminal. </p>
<p>2) And enter </p>
<p>sudo passwd root</p>
<p>3) You&#8217;ll get a password prompt. Set the pasword..</p>
<p>To login as root. </p>
<p>su</p>
]]></content:encoded>
			<wfw:commentRss>http://suhastech.com/how-to-set-root-password-in-ubuntu-10-04-su/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cool Windows softwares now on Linux!</title>
		<link>http://suhastech.com/cool-windows-software-now-on-linux/</link>
		<comments>http://suhastech.com/cool-windows-software-now-on-linux/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 07:35:32 +0000</pubDate>
		<dc:creator>Prashanth</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[Adobe reader]]></category>
		<category><![CDATA[Audacity]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[picasa]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://suhastech.com/?p=274</guid>
		<description><![CDATA[In the post about running windows apps on Linux, my friend Suraj had told us about the software Wine and its ability to run Windows apps on linux. But wait, how would it be if those popular windows software have got their own Linux versions? Yes,they do! Many software developers like Google and Adobe, noticing the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>I</strong>n the post about running windows apps on Linux, my friend Suraj had told us about <a href="http://suhastech.com/linux/run-windows-applications-on-linux/">the software Wine</a> and its ability to <a href="http://suhastech.com/linux/run-windows-applications-on-linux/">run Windows apps on linux.</a></p>
<p>But wait, how would it be if those popular windows software have got their <strong>own</strong> Linux versions? Yes,they do! Many software developers like Google and Adobe, noticing the increase in number of Linux users, have released their products for Linux platform!<br />
And here&#8217;s a list of those Windows software which have been released for Linux:</p>
<p><span style="color: #0000ff"><span style="text-decoration: underline">Google Chrome</span></span>: A fast and safe web browser by Google.Inc. The name is derived from the graphical user interface frame,  or &#8220;chrome&#8221;, of web browsers.It combines a minimal design with sophisticated technology to make the web faster, safer, and easier. It&#8217;s Linux version is available <a href="http://www.google.com/chrome"><strong>here</strong></a>.</p>
<p><img src="http://www.google.com/chrome/intl/en-IN/images/dlpage_alt.jpg" alt="" /></p>
<p><span style="color: #0000ff"><span style="text-decoration: underline">Opera Web Browser</span></span>: Another fast and reliable web browser with awesome plug-ins and widgets. Its security features include built-in phishing and malwareprotection, strong encryption when browsing secure websites, and the ability to easily delete private data such as HTTP cookies. It&#8217;s Linux version is available <a href="http://www.opera.com/download/index.dml?platform=linux"><strong>here</strong></a>.</p>
<p><img src="http://www.opera.com/bitmaps/products/browser/overview/1060/scr-browser-cut.png" alt="Opera 10.5 Web browser" /></p>
<p><span style="color: #0000ff">Adobe Reader</span>: A cool PDF(<a href="http://en.wikipedia.org/wiki/Portable_Document_Format">Portable Document Format</a>) reader by Adobe.Inc. It is available as a no-charge download from Adobe&#8217;s website, and allows viewing and printing of PDF files. And here is it&#8217;s Linux version: <a href="http://ardownload.adobe.com/pub/adobe/reader/unix/9.x/9.3.3/enu/AdbeRdr9.3.3-1_i386linux_enu.deb"><strong>Click to Download</strong></a>.</p>
<p><img src="http://tabulorasa.info/uploads/posts/2010-04/1271199061_adobe-reader-9.3.2-update.jpg" alt="" /></p>
<p><span style="color: #0000ff"><span style="text-decoration: underline">Google Picasa</span></span>: An image organizer and image viewer for organizing and editing digital photos, plus an integrated photo-sharing website, originally created by Idealab and owned by Google since 2004. Originally developed for Windows, is now available for Linux. Here is it&#8217;s Linux version: <a href="http://dl.google.com/linux/deb/pool/non-free/p/picasa/picasa_3.0-current_i386.deb"><strong>Click to download</strong></a>.</p>
<p><img src="http://crenk.com/wp-content/uploads/2009/09/picasa.png" alt="" /></p>
<p><span style="color: #0000ff">Google Earth</span>: A virtual globe, map and geographic information program that was originally called EarthViewer 3D, and was created by Keyhole, Inc, a company acquired by Google in 2004. It maps the Earth by the superimposition of images obtained from satellite imagery, aerial photography and GIS 3D globe. It&#8217;s free Linux Version is available <a href="http://earth.google.com/download-earth.html"><strong>here</strong></a>.</p>
<p><img src="http://www.antweb.org/images/google_earth_1.jpg" alt="" /></p>
<p><span style="color: #0000ff"><span style="text-decoration: underline">Realplayer</span></span>: It is a closed source cross-platform media player by RealNetworks that plays a number of multimedia formats including MP3, MPEG-4, QuickTime, Windows Media, and multiple versions of proprietary RealAudio and RealVideo formats. And here is it&#8217;s basic Linux version:  <a href="http://forms.real.com/real/player/download.html?f=unix/RealPlayer11GOLD.deb"><strong>Click to Download</strong></a>.</p>
<p><img src="http://img688.imageshack.us/img688/6079/pinge.png" alt="" /></p>
<p><span style="color: #0000ff"><span style="text-decoration: underline">Audacity</span></span>: A cross-platform digital audio editor and recording application created by Dominic Mazzoni, a graduate of Carnegie Mellon University. It is available for Windows, Mac <em>and </em>Linux. And here is it&#8217;s Linux version: <a href="http://us.archive.ubuntu.com/ubuntu/pool/universe/a/audacity/audacity_1.3.9-6_i386.deb?hl=com&amp;nid=7964:592"><strong>Click to Download</strong></a>.</p>
<p><img src="http://www.iconarchive.com/icons/benjigarner/softdimension/256/Audacity-icon.png" alt="" /></p>
<p><span style="color: #0000ff"><span style="text-decoration: underline">Mozilla Firefox</span></span>: A  free and open source web browser developed by Mozilla Corp. Now, Mozilla Firefox, is a pre-installed app if u choose Ubuntu Linux. In others, you&#8217;ll have to download it&#8217;s &#8220;.BZ2&#8243; file from <strong><a href="http://www.mozilla.com/en-US/products/download.html?product=firefox-3.6.6&amp;os=linux&amp;lang=en-US">here</a><span style="font-weight: normal">, and install it.</span></strong></p>
<p><img src="http://genevanpsalter.redeemer.ca/genevan_psalter_files/mozilla-firefox.jpg" alt="" /></p>
<p><strong></strong><span style="color: #0000ff"><strong><span style="color: #000000"><span style="text-decoration: underline">To Install  a &#8216;.DEB&#8217; file:</span></span></strong></span></p>
<ul>
<li>Copy the &#8216;.deb&#8217; file to the <strong>home</strong> folder.</li>
<li>Open <strong>Terminal.</strong>[Applications-&gt;Accessories]</li>
<li>Type in &#8220;sudo dpkg -i <em>the exact name of your deb file&#8221;.</em></li>
<li>Then it prompts you for your root password. Type it in.</li>
<li>And leave the Terminal to do the rest. After its done, you&#8217;ll find the app in the <strong>Applications</strong> menu.</li>
</ul>
<p>You&#8217;ll notice that the similarity between these Linux versions and their Windows counterparts is remarkable. Awesome, isn&#8217;t it? Install these software as per the instructions provided and enjoy! <img src='http://suhastech.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://suhastech.com/cool-windows-software-now-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Run Windows applications on Linux</title>
		<link>http://suhastech.com/run-windows-applications-on-linux/</link>
		<comments>http://suhastech.com/run-windows-applications-on-linux/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 04:20:57 +0000</pubDate>
		<dc:creator>Suraj</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://suhastech.com/?p=158</guid>
		<description><![CDATA[There is only one reason why linux has not been able to replace windows entirely: the applications! Windows applications let you do things that you can do only on windows, not linux. To break out of that shell, a few Linux enthusiasts started the so-called &#8220;Wine&#8221; project. That&#8217;s a software that is supposed to be [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="float: left;" src="http://suhastech.com/wp-content/uploads/images/winehq_logo_glass.png" alt="Wine software" width="200" height="313" />There is only one reason why linux has not been able to replace windows entirely: the applications!</p>
<p>Windows applications let you do things that you can do only on windows, not linux. To break out of that shell, a few Linux enthusiasts started the so-called &#8220;Wine&#8221; project.</p>
<p>That&#8217;s a software that is supposed to be an attempt to do the same that is; run windows apps on Linux, Solaris, mac OS X,etc. But despite all its claims, don&#8217;t expect wine to run COD4 on linux. Its still in its beta stage and my guess is that even its last stage wont be able to. It can run small basic applications though. One of my favourites is <a href="http://www.utorrent.com/"><strong>uTorrent</strong></a>. Also, you wouldn&#8217;t want to miss out on <a href="http://www.solsuite.com/freeware.htm"><strong>solitaire</strong></a> when you&#8217;re on linux.</p>
<p>Yes, I do admit that for windows users, installing this wine thing will be a bit strange at first, but its actually really simple.</p>
<p><a title="Wine" href="http://www.winehq.org/download/" target="_blank"><strong>Click here</strong></a> to download wine software. Its available for almost all versions of Linux. The website includes step by step instructions on how to install it. Do all that with a bit a patience and voila, you&#8217;ll have wine installed!</p>
]]></content:encoded>
			<wfw:commentRss>http://suhastech.com/run-windows-applications-on-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Increase Typing Speed, Comfort with Dvorak Keyboard Layout</title>
		<link>http://suhastech.com/increase-typing-speed-comfort-with-dvorak-keyboard-layout/</link>
		<comments>http://suhastech.com/increase-typing-speed-comfort-with-dvorak-keyboard-layout/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 12:35:00 +0000</pubDate>
		<dc:creator>Suhas</dc:creator>
				<category><![CDATA[diy]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://suhastech.com//?p=66</guid>
		<description><![CDATA[QWERTY is the most used Keyboard layout in the world. It was designed to minimize typebar clashes in a typewriter. Now, in the computer age, we are still using the old design instead of the new and improved design – The Dvorak Simplified Keyboard. This layout has better ergonomics, reduces fatigue, increases typing speed etc [...]]]></description>
			<content:encoded><![CDATA[<p>QWERTY is the most used Keyboard layout in the world. It was designed to minimize typebar clashes in a typewriter. Now, in the computer age, we are still using the old design instead of the new and improved design – The Dvorak Simplified Keyboard. This layout has better ergonomics, reduces fatigue, increases typing speed etc (<a href="http://en.wikipedia.org/wiki/Dvorak_Simplified_Keyboard" target="_blank">More Info</a>). As a matter of fact, you can also type with one finger! But, sadly, it hasn&#8217;t been able to replace QWERTY.</p>
<p>Nowadays, almost all the Operating Systems are offering support for this Layout. So, you can take advantage of this layout. True, there is a learning curve, but you’ll thank me after sometime.</p>
<p><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/2/25/KB_United_States_Dvorak.svg/400px-KB_United_States_Dvorak.svg.png" alt="" width="425" height="164" /></p>
<p>You can always convert your QWERTY keyboard into a Dvorak Keyboard. This is very simple. And Don’t worry, you can switch between Layouts with a press of a Button.</p>
<p>First, Setup your operating System.</p>
<p>For</p>
<ol>
<li><a href="http://www.microsoft.com/enable/training/windowsxp/keyboardlayout.aspx" target="_blank">Windows</a>,</li>
<li>Linux:</li>
</ol>
<blockquote><p>loadkeys /usr/share/keymaps/i386/dvorak/dvorak.map.gz</p>
<p><strong>or</strong></p>
<p>loadkeys dvorak</p></blockquote>
<p>3. <a href="http://dvorak.mwbrooks.com/mac.html" target="_blank">Mac</a></p>
<p>Now, buy some  <a href="http://www.amazon.com/SIMPLIFIED-KEYBOARD-LETTERING-TRANSPARENT-BACKGROUND/dp/B0011FJ7WK/ref=sr_1_2?ie=UTF8&amp;s=miscellaneous&amp;qid=1256644062&amp;sr=8-2-catcorr" target="_blank">keyboard stickers</a> (They are cheap too ). Paste it and your done.</p>
<p>Very useful source of information. Include FAQs etc. &#8211; <a href="http://dvorak.mwbrooks.com/">http://dvorak.mwbrooks.com/</a></p>
<div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:fd02a503-1fed-4819-b73b-77da6a513406" class="wlWriterEditableSmartContent" style="display: inline; float: none; margin: 0px; padding: 0px;">Technorati Tags: <a rel="tag" href="http://technorati.com/tags/switch">switch</a>,<a rel="tag" href="http://technorati.com/tags/dvorak">dvorak</a>,<a rel="tag" href="http://technorati.com/tags/windows">windows</a>,<a rel="tag" href="http://technorati.com/tags/linux">linux</a>,<a rel="tag" href="http://technorati.com/tags/mac">mac</a>,<a rel="tag" href="http://technorati.com/tags/better">better</a>,<a rel="tag" href="http://technorati.com/tags/speed">speed</a></div>
]]></content:encoded>
			<wfw:commentRss>http://suhastech.com/increase-typing-speed-comfort-with-dvorak-keyboard-layout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Linux on your USB Flash Drive</title>
		<link>http://suhastech.com/install-linux-on-your-usb-flash-drive/</link>
		<comments>http://suhastech.com/install-linux-on-your-usb-flash-drive/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 05:47:00 +0000</pubDate>
		<dc:creator>Suhas</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://suhastech.com//?p=15</guid>
		<description><![CDATA[Yes! You can do this. I had my hard drive broken for some days. So, for the time being I used this to browse the Internet etc. VERY handy tool. 1) Download this file. 2) Extract the contents to your flash drive. 3) Double click on &#8216;makeboot.bat&#8217;. This make your flash drive bootable. 4) Restart [...]]]></description>
			<content:encoded><![CDATA[<p>Yes! You can do this. I had my hard drive broken for some days. So, for the time being I used this to browse the Internet etc. VERY handy tool.
<div></div>
<div>1) Download <a href="http://downloads.sourceforge.net/pendrivelinux/Pendrivelinux08.zip">this file.</a></div>
<div>2) Extract the contents to your flash drive.</div>
<div>3) Double click on &#8216;makeboot.bat&#8217;. This make your flash drive bootable.</div>
<p><img src="http://www.pendrivelinux.com/wp-content/uploads/pdl-structure.png" />
<div></div>
<div>4) Restart and you are good to go.</div>
<div></div>
<div><span class="Apple-style-span"   style="  line-height: 19px; font-family:'Lucida Grande';font-size:12px;">
<p><strong><span class="Apple-style-span"  style="font-size:medium;">Login and passwords:<br /></span></strong><span class="Apple-style-span"  style="font-size:medium;"><br /></span><strong><span class="Apple-style-span"  style="font-size:medium;">User: </span><span style="color: rgb(255, 0, 0); "><span class="Apple-style-span"  style="font-size:medium;">root</span></span><span class="Apple-style-span"  style="font-size:medium;"> password: </span><span style="color: rgb(255, 0, 0); "><span class="Apple-style-span"  style="font-size:medium;">root</span></span></strong></p>
<p><strong><span class="Apple-style-span"  style="font-size:medium;">User: </span><span style="color: rgb(0, 255, 255); "><span class="Apple-style-span"  style="font-size:medium;">guest</span></span><span class="Apple-style-span"  style="font-size:medium;"> password: </span><span style="color: rgb(0, 255, 255); "><span class="Apple-style-span"  style="font-size:medium;">guest</span></span></strong></p>
<p></span></div>
<div></div>
<div><b>Troubleshooting:</b></div>
<div></div>
<div>If you have Windows booting everytime but not linux.</div>
<div>1) Boot up your machine.</div>
<div>2) Keep pressing &#8216;Delete&#8217; for some time. (Boot into the BIOS setup)</div>
<div>3) Select Boot Priority.</div>
<div>4) Assign the first priority to your flash drive.</div>
<div></div>
<div>Sometimes you might have disabled &#8216;USB Boot&#8217;, enable it on the BIOS setup. Rarely, your motherboard might not suppot USB Boot.</div>
<div></div>
<div><a href="http://www.pendrivelinux.com/">Source</a></div>
]]></content:encoded>
			<wfw:commentRss>http://suhastech.com/install-linux-on-your-usb-flash-drive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

