<?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>Techthrob.com &#187; Lists</title>
	<atom:link href="http://techthrob.com/category/lists/feed/" rel="self" type="application/rss+xml" />
	<link>http://techthrob.com</link>
	<description>Words of Wisdom for Technologists</description>
	<lastBuildDate>Tue, 17 Aug 2010 12:00:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>5 Things New Linux Converts Should Know</title>
		<link>http://techthrob.com/2010/06/12/5-things-new-linux-converts-should-know/</link>
		<comments>http://techthrob.com/2010/06/12/5-things-new-linux-converts-should-know/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 15:41:52 +0000</pubDate>
		<dc:creator>Jonathan DePrizio</dc:creator>
				<category><![CDATA[Lists]]></category>
		<category><![CDATA[end-user]]></category>

		<guid isPermaLink="false">http://techthrob.com/?p=310</guid>
		<description><![CDATA[If you&#8217;ve recently converted to Linux from Windows, or if you&#8217;re just giving Linux a shot, there are a few things you need to know right off the bat about how Linux works and where the major differences are when compared to Windows. Some of the fundamental components are different between the two operating systems, [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve recently <a href="http://techthrob.com/2009/03/02/10-steps-to-convert-a-windows-user-to-linux/">converted to Linux from Windows</a>, or if you&#8217;re just giving Linux a shot, there are a few things you need to know right off the bat about how Linux works and where the major differences are when compared to Windows.  Some of the fundamental components are different between the two operating systems, and the way things are done can be drastically different; you need to learn these differences to be able to use Linux effectively, and to avoid trying to force Windows metaphors onto a Linux system that doesn&#8217;t accept them.</p>
<p>Here is a list of five tips that beginner Linux users should know:</p>
<ol>
<li class="sectionHeader"><strong>Drives don&#8217;t have letters, they have mountpoints</strong></li>
<p>The first thing that usually trips up people who come from Windows to Linux is that filesystems aren&#8217;t assigned letters the way they are in Windows.  Instead, there is a single root filesystem whose path is &#8220;/&#8221;.  If you must use the Windows analogy to help you conceptualize it, you can think of this as the C:\ drive; it&#8217;s the top of the filesystem.<br />
<div id="attachment_325" class="wp-caption aligncenter" style="width: 310px"><a href="http://techthrob.com/wp-content/uploads/2010/06/Screenshot-Disk-Usage-Analyzer.png"><img src="http://techthrob.com/wp-content/uploads/2010/06/Screenshot-Disk-Usage-Analyzer-300x226.png" alt="Screenshot-Disk Usage Analyzer" title="Screenshot-Disk Usage Analyzer" width="300" height="226" class="size-medium wp-image-325" /></a><p class="wp-caption-text">The Disk Analyzer Shows your Filesystem Usage and Layout</p></div><br />
Linux mounts new drives in folders inside the root filesystem.  You&#8217;ll notice that if you plug in a USB key, it will be mounted to a path like &#8220;/media/partition-name&#8221;.  <strong>This makes more sense</strong> because in Linux, there is a single filesystem layout, starting at root (&#8220;/&#8221; or &#8220;slash&#8221;) and everything is located beneath it; for example, user files go in /home (&#8220;slash home&#8221;).  If you want to keep your user files on a separate disk or partition, you don&#8217;t have an E: drive; instead you simply mount your separate disk as /home.</p>
<li class="sectionHeader"><strong>There is no registry</strong></li>
<p>Linux doesn&#8217;t use a single database of configuration options, the way Windows does with its registry.  Instead, there are many individual configuration files, typically in a simple text format (but increasingly in XML), that can be edited by hand using a text editor if need-be.  You&#8217;ll find the system-wide configuration files in the /etc directory; your user-specific configuration files will typically be located in hidden directories in your home folder.</p>
<p><strong>This is better than Windows</strong> because it means that there is no single point of failure for system configuration.  If one configuration file becomes corrupt, only that function breaks and everything else works fine.  It also makes it easy to backup configuration files &#8212; it&#8217;s the same as copying all other files &#8212; and to troubleshoot problems: often if you <a href="http://techthrob.com/2009/03/02/8-ways-to-get-help-with-ubuntu-linu/">ask for help on the internet</a>, the first thing people will ask for is a copy of your configuration files.</p>
<li class="sectionHeader"><strong>Software comes from the repos, not CDs or websites</strong></li>
<p>In the Windows world, if you need to find a program to perform a task you&#8217;ll typically have to Google for it and install it using its own installer.  Or, you can go to the store and browse the CDs in the software aisle.  You wind up hoping that it uninstalls correctly later, and that you don&#8217;t pick up viruses from some unknown program you found on an obscure website.  Popular Linux distributions, by contrast, have <strong>done away with this &#8220;hunt and peck&#8221; style of software installation</strong>, and replaced it with the concept of &#8220;software repositories.&#8221;  These are centralized locations where any maintained software package is kept, and it allows you (by way of the operating system) to maintain tighter control over what exactly is present on your system by giving you a single place to manage all the programs on your machine.<br />
<div id="attachment_323" class="wp-caption aligncenter" style="width: 310px"><a href="http://techthrob.com/wp-content/uploads/2010/06/Screenshot-Add-Remove-Software.png"><img src="http://techthrob.com/wp-content/uploads/2010/06/Screenshot-Add-Remove-Software-300x140.png" alt="Screenshot-Add-Remove Software" title="Screenshot-Add-Remove Software" width="300" height="140" class="size-medium wp-image-323" /></a><p class="wp-caption-text">Add/Remove Programs in Fedora</p></div><br />
When you want to install a program, you simply fire up the add/remove programs utility, search for the program you need, and install it.  The package manager will figure out all the requirements and do the work for you &#8212; and the same goes for when you want to uninstall the program, too.  This keeps your computer clean of unnecessary programs, and helps to make sure you don&#8217;t wind up installing some program that is going to steal all your personal data.</p>
<li class="sectionHeader"><strong>Don&#8217;t login as root</strong></li>
<p>It&#8217;s common practice for Windows users to login as the system administrator all the time.  This is one of the major reasons why Windows computers are so easily infected with viruses and malware; you are always playing God, and any program can do anything it wants.  In Linux, the administrator is called &#8220;root&#8221;, and you should use root access only when you absolutely need it.  Modern distributions and interfaces will prompt you for the root password when it&#8217;s required, such as when you try to install programs or modify system settings.  Aside from this, you should always log in as a regular user.  You&#8217;ll find that you don&#8217;t need to be an administrator user all the time, and that your system survives much longer because of it!</p>
<li class="sectionHeader"><strong>Help is available &#8212; and it&#8217;s free!</strong></li>
<p>Changing to Linux can be fun and educational &#8212; but it can also be frustrating when you find something that doesn&#8217;t work quite right, or when you can&#8217;t figure out how to do something you need to get done.  One of the best parts about switching to Linux is that there are plenty of people who have done it before, and who were once in the same place you are now, and they are more than happy to help you out.  Don&#8217;t hesistate to ask for help &#8212; see my article on <a href="http://techthrob.com/2009/03/02/8-ways-to-get-help-with-ubuntu-linu/">eight ways to get help with linux</a> for tips on where to ask and how to get your questions answered.</p>
<div class="sectionHeader">What do you think?</div>
<p>What were some of the biggest challenges you had when switching to Linux?  What are some things you know now that you wish you&#8217;d known then?  Put your words of wisdom in the comments below!</p>
]]></content:encoded>
			<wfw:commentRss>http://techthrob.com/2010/06/12/5-things-new-linux-converts-should-know/feed/</wfw:commentRss>
		<slash:comments>30</slash:comments>
		</item>
		<item>
		<title>Ubuntu as Mom&#8217;s Operating System</title>
		<link>http://techthrob.com/2010/03/29/ubuntu-as-moms-operating-system/</link>
		<comments>http://techthrob.com/2010/03/29/ubuntu-as-moms-operating-system/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 01:30:38 +0000</pubDate>
		<dc:creator>Jonathan DePrizio</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Lists]]></category>
		<category><![CDATA[end-user]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://techthrob.com/?p=241</guid>
		<description><![CDATA[A lot of tech-savvy indivuals face the same dilema: their parents, who aren&#8217;t so tech-savvy, count on them to provide constant technical support for their Mom &#38; Dad PC.  This can become an incredible burden in a Windows world, where the dangers of spyware, viruses, and total system meltdown loom large.  I&#8217;ve found that the [...]]]></description>
			<content:encoded><![CDATA[<p>A lot of tech-savvy indivuals face the same dilema: their parents, who aren&#8217;t so tech-savvy, count on them to provide constant technical support for their Mom &amp; Dad PC.  This can become an incredible burden in a Windows world, where the dangers of spyware, viruses, and total system meltdown loom large.  I&#8217;ve found that the best solution to the problem is not to load up the parents&#8217; PC with antivirus or malware protection, but to ditch Windows altogether and go with a clean Ubuntu approach.</p>
<p>Here are seven reasons why an Ubuntu-based machine makes the best Mom &amp; Dad PC:</p>
<div class="sectionHeader">1. The software is free</div>
<p>Instead of having to pay for an additional copy of Windows, Ubuntu is a free download.  Additionally, Ubuntu&#8217;s software center has lots of free applications that are of a high enough quality to meet the needs of mom and dad.  Using an Ubuntu solution with Open Office easily saves several hundred dollars worth of software licenses when compared to an equivelant Microsoft solution.</p>
<div class="sectionHeader">2. The hardware is low-cost</div>
<p>On top of the free software, the system requirements for Ubuntu are minimal.  I setup my parents on a low-cost Atom-based nettop which cost about $300 to build, complete with a solid 1.6GHz processor, 2GB of RAM, and a 300GB hard disk.  Obviously this system is going to win any gaming competitions, but for the solitare that mom likes to play, and the news sites that dad likes to surf, it&#8217;s got plenty of power.  </p>
<div class="sectionHeader">3. It&#8217;s low maintenance</div>
<p>A Windows-based machine would require monthly patching and rebooting, virus protection, malware scanners, and a host of other meta-applications, just to keep the system running smoothly.  With Ubuntu, I simply setup automatic updates to run once a week, and I&#8217;ve completely forgotten about it since then.  Every once and a while I&#8217;ll login to the system and run a quick &#8220;apt-get dist-upgrade&#8221; just to make sure I haven&#8217;t missed anything important.  And I don&#8217;t have to worry about viruses or malware at all.</p>
<div class="sectionHeader">4. Remote Assistance</div>
<p>In the case that something does go wrong, it&#8217;s a lot easier to troubleshoot the problem when I can just <a href="http://techthrob.com/2009/03/02/ssh-101-secure-shell-basics/">SSH in remotely (using X11 forwarding if necessary)</a>, find the problem, and fix it; no talking Mom through how to readjust the screen resolution when I can do it myself in a fraction of the time.  And SSH means that I can solve any technical problems from anywhere.</p>
<div class="sectionHeader">5. They can&#8217;t mess anything up &#8212; too badly</div>
<p>Although it is possible for me to fix things remotely, I almost never have to.  That&#8217;s because Mom and Dad have their own, non-privilaged user account.  It is an easy way to rest assured that they can&#8217;t mess anything up too badly &#8212; even if they somehow manage to destroy their individual account, the reset switch is as easy as creating a new user (I&#8217;ve never had to do this).  Compare this to Windows, where the norm is to run as Administrator, and the reset swith is a format and clean install.</p>
<div class="sectionHeader">6. It gets the job done</div>
<p>If you have a mother that plays WOW or does CAD, maybe an Ubuntu-based PC isn&#8217;t right for them.  But if that&#8217;s the case, they probably know enough about computers that you don&#8217;t need to hold their hand through all their minor technology troubles.  But, if your parents, like mine, simply want to check their email, play card games, and surf the net, then Ubuntu will get the job done without getting in the way.  Whereas any Windows machine is guaranteed to become loaded up with all sorts of extensions, additional programs, and malware just by the act of putting Dad on the internet, you can be sure this won&#8217;t happen with Ubuntu.</p>
<div class="sectionHeader">7. It&#8217;s easier for YOU!</div>
<p>And ultimately, that&#8217;s why Ubuntu makes for the best parent PC.  Because the parents don&#8217;t really care what their OS is, as long as they can do the things they want to do with it, whether it be Linux, Windows, or Mac.  But by chosing Ubuntu, you&#8217;ve simplified your own life by removing the need to provide constant technical support.  And, if something eventually does happen, you know it will be less of a headache to resolve the problem than if you had gone with an alternative solution.</p>
<div class="sectionHeader">What do you think?</div>
<p>Do you provide tech support for your parents?  What OS are they running, and how often do they need to you to solve their technical problems?  Leave your responses in the comments below!</p>
]]></content:encoded>
			<wfw:commentRss>http://techthrob.com/2010/03/29/ubuntu-as-moms-operating-system/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>10 Steps to Convert a Windows User to Linux</title>
		<link>http://techthrob.com/2009/03/02/10-steps-to-convert-a-windows-user-to-linux/</link>
		<comments>http://techthrob.com/2009/03/02/10-steps-to-convert-a-windows-user-to-linux/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 21:24:21 +0000</pubDate>
		<dc:creator>Jonathan DePrizio</dc:creator>
				<category><![CDATA[Lists]]></category>
		<category><![CDATA[end-user]]></category>

		<guid isPermaLink="false">http://www.techthrob.com/wp/wordpress/?p=83</guid>
		<description><![CDATA[Introduction With Linux becoming more popular and easier to use, more and more people are adopting it as their primary operating system. But the transformation from Windows user to Linux user can be a tough road to take. Most new users become long-term users because they have friends that introduce Linux to them, and help [...]]]></description>
			<content:encoded><![CDATA[<div class="sectionHeader">Introduction</div>
<p>With Linux becoming more popular and easier to use, more and more people are adopting it as their primary operating system.  But the transformation from Windows user to Linux user can be a tough road to take.  Most new users become long-term users because they have friends that introduce Linux to them, and help them through the first few weeks of rough-patches.  Here are ten steps to help you introduce Linux to a would-be convert.</p>
<p></p>
<div class="sectionHeader">1.  Select your mark</div>
<p>Let&#8217;s face it &#8211; Linux isn&#8217;t for everyone.  Your grandmas, your uber-gamers, your technophobes; all of these are bad candidates for Linux conversion.  You want someone that&#8217;s interested in computing, and someone that is decently tech-literate.  The ideal candidate is one that has heard of Linux, but for whatever reason believes it would be too complex for him or her to use.  Another important quality in a mark is someone who&#8217;s willing to take some time and work through the initial phase of changing to a new operating system.  If a candidate doesn&#8217;t have these qualities, it might be best to look somewhere else.</p>
<p></p>
<div class="sectionHeader">2.  Introduce the mark to free software on Windows</div>
<p>Once you&#8217;ve selected your potential convert, introduce him or her to free software on the Windows platform.  It&#8217;s likely that he or she is already using Firefox (if it&#8217;s an IE user, you might want to pick someone else to convert), but there&#8217;s a chance that he or she doesn&#8217;t realize that it&#8217;s free software.  Drop a hint about how Firefox was written the same way Linux is written; by a community of developers, rather than by a giant corporation.  Explain why you think this is better: more eyeballs equals fewer bugs, more features, and more developers.  For a full list of free software that runs on Windows, check out <a href="http://www.opensourcewindows.org/">this page</a>.</p>
<p></p>
<div class="sectionHeader">3.  Show off your Linux desktop</div>
<p>One of the reasons that people get the &#8220;gotta have it&#8221; syndrome over Linux is the eye-candy of the Compiz-enabled desktop.  Sure, it&#8217;s superficial, and we all know that there&#8217;s more to Linux than just a rotating cube and windows that minimize in a ball of fire, but it&#8217;s a great way to quickly grab someone&#8217;s attention and get them asking questions.  &#8220;What is that?&#8221;  &#8220;How did you do that?&#8221;  &#8220;<em>How can I get that?</em>&#8221;  Your answers for all of these questions will be points towards Linux.</p>
<p></p>
<div class="sectionHeader">4.  Give your mark a LiveCD</div>
<p>You don&#8217;t want your to-be-convert to rush into things and get frustrated.  This is a quick and easy way for them to go running back to Windows.  Instead, give them a LiveCD; it&#8217;s a great way for them to become familiar with the Linux desktop, the interface, and the features included in the installation.  Think of it as a toy that they can play with in their spare time.  Don&#8217;t push it on them, just say &#8220;if you want to check it out, you can boot off this CD without making any modifications to your hard drive.&#8221;  It&#8217;s a great way for the mark to get their feet wet.</p>
<p></p>
<div class="sectionHeader">5.  The initial install</div>
<p>Hopefully, your mark has been impressed with what he&#8217;s seen on the LiveCD, and is ready to take the initial plunge.  Great for him!  Encourage him that it&#8217;s really no big deal.  Walk him through the installation, and explain that he can keep his Windows partition and duel-boot with Linux, picking whichever he prefers to use at the moment.  This is a great way for people to slowly become accustomed a new operating system.  <strong>It&#8217;s imperative that you be around to help out the new user.</strong>  The most important thing about Linux is that it has great community support &#8211; by sticking around and being a helpful hand, you&#8217;re encouraging your mark to use community channels to find solutions to problems.</p>
<p></p>
<div class="sectionHeader">6.  The first boot</div>
<p>Again, you must, must, <strong>must</strong> remain helpful even after the operating system is installed, but let the new-convert try to figure things out on her own.  Let her find her way around the desktop, check out the included programs, browse the web, and do the things she wants to do with her computer.  Your job now is to sit back and just <strong>remain available</strong> when she has questions.  Show her how to add and remove software; recommend programs when she asks, &#8220;what program do I use to do ?&#8221;  But throughout all of this, let the new user do her own thing.</p>
<p></p>
<div class="sectionHeader">7.  The first few days</div>
<p>If all goes well, the newly-converted user will be enjoying her first Linux experience.  But of course, there will be problems.  Remain available to help work her through the tough times and the initial shock of a completely new desktop experience, but don&#8217;t force your advice when you aren&#8217;t asked.</p>
<p></p>
<div class="sectionHeader">8.  Week two</div>
<p>This is a good time to start explaining <a href="/tech/ubuntuhelp.php">other ways of getting help with Linux</a>.  The idea here is to make the user self-sufficient in trouble-shooting and problem solving, but still try to be the most valuable resource you can possibly be.</p>
<p></p>
<div class="sectionHeader">9. The first month and beyond</div>
<p>If your convert is still using her new Linux desktop at this point, it&#8217;s probably safe to declare success!  Congratulations! You&#8217;ve turned someone on to a free-software operating system.  By this time, her desktop should probably be well-configured, and all the programs she needs should be installed and working properly.  By this time, you&#8217;ll probably be starting to get more advanced questions than before; things like, &#8220;How do I customize function [x]?&#8221; or &#8220;What does it mean when the update manager does [something]?&#8221; If you&#8217;re lucky, you&#8217;ll know all the answers; otherwise, use <a href="/tech/ubuntuhelp.php">these valuable resources</a> to find out some solutions!  It&#8217;s always important to learn more yourself, so that you can proceed to step 10:</p>
<p></p>
<div class="sectionHeader">10. Repeat step 1 through 9</div>
<p>If you&#8217;ve been lucky enough to successfully convert a Windows user to Linux, you should definitely try it again with someone else!  Use what you&#8217;ve learned with your previous experience and adapt it to fit your style and your mark.  If all goes well, you should have your own personal army of Linux converts in no time at all!</p>
]]></content:encoded>
			<wfw:commentRss>http://techthrob.com/2009/03/02/10-steps-to-convert-a-windows-user-to-linux/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>8 Ways to Get Help with Ubuntu Linux</title>
		<link>http://techthrob.com/2009/03/02/8-ways-to-get-help-with-ubuntu-linu/</link>
		<comments>http://techthrob.com/2009/03/02/8-ways-to-get-help-with-ubuntu-linu/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 19:51:10 +0000</pubDate>
		<dc:creator>Jonathan DePrizio</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Lists]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[troubleshooting]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.techthrob.com/wp/wordpress/?p=25</guid>
		<description><![CDATA[No matter what operating system you use, be it Windows, Mac OS, or Linux, you&#8217;re inevitably going to run into some problems. But, especially with Ubuntu Linux, there&#8217;s a wealth of information to help get you through your crisis. Below are eight ways to get help when you have a problem with Ubuntu. 1. Google [...]]]></description>
			<content:encoded><![CDATA[<p>No matter what operating system you use, be it Windows, Mac OS, or Linux, you&#8217;re inevitably going to run into some problems.  But, especially with Ubuntu Linux, there&#8217;s a wealth of information to help get you through your crisis.  Below are eight ways to get help when you have a problem with Ubuntu.</p>
<p>
<strong>1.  Google</strong><br />
	By far the easiest, most common method of fixing any problem.  Google will search most of the items listed below, including user guides, wikis, forums, and newsgroups.  But it&#8217;s not always the easiest way to find the solution to an obscure problem, so here are some alternatives:</p>
<p><strong>2.  Ubuntuguide.org &#8211; The Ubuntu User Manual</strong> <br />
	This <a href="http://ubuntuguide.org">User Guide</a> covers all the major aspects of Ubuntu, from installation to video driver support.  It&#8217;s a must-read for those new to Ubuntu, and especially for those just beginning in Linux.  Roughly equivalent to the printed manual you&#8217;d get in a shrink-wrapped product, the guide comes in the form of a Wiki that can answer most of your basic questions.</p>
<p><strong>3.  Ubuntuforums.org &#8211; Help in 60 Seconds</strong><br />
	The <a href="http://www.ubuntuforums.org">Ubuntu Forums</a> are a great place to go when you have a question not listed in the User Guide.  But follow rule #1 and always Google first &#8211; chances are, someone has already answered your question and google has indexed it.  People here are friendly, and help is quick; you&#8217;ll usually get a response within a few minutes.  You will have to register, though, as with all forums.</p>
<p><strong>4.  IRC Channels &#8211; Help in 60 Seconds, Redux</strong><br />
	If you don&#8217;t feel like registering on Ubuntuforums, or if you just have a quick question and want some live-feedback, consider the Ubuntu IRC channel.  Like the forums, people are friendly, knowledgeable, and courteous, and will do their best to answer your question.  The easiest way to do this under Ubuntu is to install X-chat, and connect to the Ubuntu Servers (<a href="irc://irc.ubuntu.com">irc://irc.ubuntu.com</a>); it will automatically take you into the #ubuntu channel, where you can get help quick.  Most questions are answered here in just a few minutes time.  Don&#8217;t forget to thank the people that help you!</p>
<p><strong>5.  Linux User Groups</strong><br />
	Linux User Groups, or LUGs, have been an important part of Linux support for a long time.  A LUG is where users meet to discuss various topics, help each other out with problems, and eat pizza, coffee, and/or donuts.  You can find a LUG near you on Google; lots of universities have them, also.</p>
<p><strong>6.  Application Documentation, Wikis, and Forums</strong><br />
	Most individual applications have their own documentation, including FAQ lists, troubleshooting sections, user manuals, and sometimes Wikis.  This is always a good place to look if you&#8217;re having a specific problem with a specific application.</p>
<p><strong>7.  Ask the developer</strong><br />
	If you&#8217;re using a smaller, lesser-known application, there might not be very extensive documentation available; or worse, there might not be any documentation available at all.  But most of the time, developers will put their email addresses, or some other way to contact them, on their project page &#8211; <strong>use it but don&#8217;t abuse it!</strong>  Small open source developers want to know that their programs are being used and enjoyed by others, and they want to help out when they can; but don&#8217;t deluge them with an onslaught of questions that could have been solved by step number one &#8211; Google.</p>
<p><strong>8.  If all else fails &#8211; submit a bug report</strong><br />
	Not exactly an instant solution, but if you&#8217;re having a problem that doesn&#8217;t seem to have an answer, it won&#8217;t be fixed unless you let the developers know about it!</p>
]]></content:encoded>
			<wfw:commentRss>http://techthrob.com/2009/03/02/8-ways-to-get-help-with-ubuntu-linu/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
