<?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>Tech Remedy &#187; bash</title>
	<atom:link href="http://www.techremedy.net/blog/category/bash/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techremedy.net/blog</link>
	<description>Digital Taoists</description>
	<lastBuildDate>Sun, 29 Jan 2012 23:22:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Open Source Pumpkin &#8211; Tux o Lantern</title>
		<link>http://www.techremedy.net/blog/2010/10/open-source-pumpkin-tux-o-lantern/</link>
		<comments>http://www.techremedy.net/blog/2010/10/open-source-pumpkin-tux-o-lantern/#comments</comments>
		<pubDate>Fri, 22 Oct 2010 20:36:09 +0000</pubDate>
		<dc:creator>Tom Duffy</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[computer humor]]></category>
		<category><![CDATA[cool stuff]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.techremedy.net/blog/?p=674</guid>
		<description><![CDATA[Here&#8217;s my pumpkin from last year.  I want to do something similar this year, but it&#8217;s still in the planning stage.  I&#8217;ll let you guys know when my pumpkin goes Alpha! I should point out that I&#8217;m leaning towards a Gentoo or Ubuntu pumpkin this year.  You will certainly see the final result right here <a href='http://www.techremedy.net/blog/2010/10/open-source-pumpkin-tux-o-lantern/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s my pumpkin from last year.  I want to do something similar this year, but it&#8217;s still in the planning stage.  I&#8217;ll let you guys know when my pumpkin goes Alpha!</p>
<p><a href="http://www.techremedy.net/blog/wp-content/uploads/2010/10/tux-o-lantern.jpg"><img class="alignnone size-full wp-image-675" title="tux-o-lantern" src="http://www.techremedy.net/blog/wp-content/uploads/2010/10/tux-o-lantern.jpg" alt="" width="453" height="604" /></a></p>
<p>I should point out that I&#8217;m leaning towards a Gentoo or Ubuntu pumpkin this year.  You will certainly see the final result right here when it&#8217;s finished!</p>
<img src="http://www.techremedy.net/blog/?ak_action=api_record_view&id=674&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.techremedy.net/blog/2010/10/open-source-pumpkin-tux-o-lantern/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Detailed Breakdown of the Linux File System Structure</title>
		<link>http://www.techremedy.net/blog/2010/09/detailed-breakdown-of-the-linux-file-system-structure/</link>
		<comments>http://www.techremedy.net/blog/2010/09/detailed-breakdown-of-the-linux-file-system-structure/#comments</comments>
		<pubDate>Tue, 14 Sep 2010 20:30:14 +0000</pubDate>
		<dc:creator>Tom Duffy</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[tech remedy]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.techremedy.net/blog/?p=637</guid>
		<description><![CDATA[There seems to be a lot of confusion out there regarding the structure of the Linux File System. Why are certain programs located in /bin while others are in /sbin or /usr/bin?  Why can I save files in one directory and not another?  How can I tell where I should save my files and programs?  <a href='http://www.techremedy.net/blog/2010/09/detailed-breakdown-of-the-linux-file-system-structure/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>There seems to be a lot of confusion out there regarding the structure of the Linux File System.  Why are certain programs located in /bin while others are in /sbin or /usr/bin?  Why can I save files in one directory and not another?  How can I tell where I should save my files and programs?  Well, I hope to assist in clearing all of that up today!</p>
<p>First, let&#8217;s take a look at a graphical representation of the Linux File System:</p>
<p><a href="http://www.techremedy.net/blog/wp-content/uploads/2010/09/filesystem-structure.jpg"><img class="alignnone size-full wp-image-638" title="filesystem-structure" src="http://www.techremedy.net/blog/wp-content/uploads/2010/09/filesystem-structure.jpg" alt="" width="515" height="749" /></a></p>
<p>The first thing we need to talk about is the root directory (/).  It is the directory where all of the other directories in the file system are stored.  The root user is the only one who can write to this directory.  It is not to be confused with /root which is the root user&#8217;s home directory!</p>
<p>Within the root directory, you will find the following sub-directories.  I have included some descriptions of each:</p>
<p>1.  /bin</p>
<p>The /bin directory is for User Binaries.  It is where many of the most common Linux commands are stored.  Specifically, this is where the single user mode binaries are stored.</p>
<p>2.  /sbin</p>
<p>This directory is almost exactly like the /bin directory, with one exception.  The binaries here are primarily used by Administrators for system maintenance.</p>
<p>3.  /etc</p>
<p>The configuration files for your programs and operating system are stored in /etc.</p>
<p>4.  /dev</p>
<p>This is where all of the device files are located.  For example, this is the directory that you would call to in order to mount a drive with a command like: mount /dev/sda2 /mnt/backup</p>
<p>5.  /proc</p>
<p>The /proc directory is one of the most interesting in the whole Linux File System.  It is actually its own virtual file system with a massive amount of text information about system processes.</p>
<p>6.  /var</p>
<p>This is where all of the variable files are stored.  Most commonly, this is where log files and web server files are stored.</p>
<p>7.  /tmp</p>
<p>These are simply temporary files.</p>
<p>8.  /usr</p>
<p>Programs installed by single users get stored here.</p>
<p>9.  /home</p>
<p>This is where all of the user home directories are except for the root user&#8217;s home directory which is /root.</p>
<p>10.  /boot</p>
<p>The files that make up the boot loader go in /boot.  Everything from boot loader menus, to the actual kernel files are stored here.</p>
<p>11.  /lib</p>
<p>All of the binary files that are located in /bin and /sbin are supported by the library files located in /lib.</p>
<p>12.  /opt</p>
<p>/opt is short for &#8220;optional&#8221;.  It is the directory where individual vendors can install optional add-on software for the operating system.</p>
<p>13.  /mnt</p>
<p>The /mnt directory is the mount point that system administrators can use to mount file systems temporarily.</p>
<p>14.  /media</p>
<p>The /media directory serves the same purpose as the /mnt directory except it is specifically for removable devices and can be used by non administrators.</p>
<p>15.  /srv</p>
<p>The /srv directory contains server specific service files.</p>
<img src="http://www.techremedy.net/blog/?ak_action=api_record_view&id=637&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.techremedy.net/blog/2010/09/detailed-breakdown-of-the-linux-file-system-structure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>17 PLUS 1 Amazing Tutorials for Creating Bash Scripts</title>
		<link>http://www.techremedy.net/blog/2010/06/17-amazing-tutorials-for-creating-bash-scripts/</link>
		<comments>http://www.techremedy.net/blog/2010/06/17-amazing-tutorials-for-creating-bash-scripts/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 05:22:37 +0000</pubDate>
		<dc:creator>Tom Duffy</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Open Source Software]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.techremedy.net/blog/?p=192</guid>
		<description><![CDATA[Bash scripting is one of the best ways to fully unlock the power of a unix/linux computer. Bash scripting gives you the opportunity to combine many commands into one script and even allows for some programming. Below is a collection of the very best Bash Scripting Tutorials on the net. Enjoy! 1. LinuxConfig.org Bash Script <a href='http://www.techremedy.net/blog/2010/06/17-amazing-tutorials-for-creating-bash-scripts/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Bash scripting is one of the best ways to fully unlock the power of a unix/linux computer. Bash scripting gives you the opportunity to combine many commands into one script and even allows for some programming. Below is a collection of the very best Bash Scripting Tutorials on the net. Enjoy!</p>
<h2><a title="LinuxConfig" href="http://www.linuxconfig.org/Bash_scripting_Tutorial">1. LinuxConfig.org Bash Script Tutorial</a></h2>
<h2><a title="Cooper" href="http://tldp.org/LDP/abs/html/">2. Mendel Cooper&#8217;s Advanced Bash-Scripting Guide</a></h2>
<h2><a title="MikeG" href="http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO.html">3. Mike G&#8217;s Bash Programming Introduction</a></h2>
<h2><a title="SteveParker" href="http://steve-parker.org/sh/sh.shtml">4. Steve Parker&#8217;s Unix/Linux Shell Scripting Tutorial</a></h2>
<h2><a title="Vivek" href="http://bash.cyberciti.biz/guide/Main_Page">5. Vivek Gite LSST</a></h2>
<h2><a title="IBM" href="http://www.ibm.com/developerworks/library/l-bash.html">6. IBM&#8217;s Bash By Example</a></h2>
<h2><a title="GeekStuff" href="http://www.thegeekstuff.com/2010/03/introduction-to-bash-scripting/">7. The Geek Stuff &#8211; 5 Practical Examples</a></h2>
<h2><a title="GoingLinux" href="http://goinglinux.com/articles/Scripts.html">8. Going Linux &#8211; Shell Scripting Tutorials</a></h2>
<h2><a title="USALUG" href="http://usalug.org/phpBB2/viewtopic.php?t=2061">9. USALUG &#8211; Bash Script Beginner Tutorial</a></h2>
<h2><a title="bashscripts.org" href="http://www.bashscripts.org/forum/viewtopic.php?f=15&amp;t=40">10. jbsnake&#8217;s Intermediate Bash Script Tutorial</a></h2>
<h2><a title="http://www.linux.com/learn/tutorials/284789-writing-a-simple-bash-script-" href="http://www.linux.com/learn/tutorials/284789-writing-a-simple-bash-script-">11. Linux.com &#8211; Writing a Simple Bash Script</a></h2>
<h2><a title="hypexr" href="http://www.hypexr.org/bash_tutorial.php">12. HypeXR&#8217;s Getting Started With Bash</a></h2>
<h2><a title="siteground" href="http://www.siteground.com/tutorials/ssh/ssh_bash_loops.htm">13. SiteGround &#8211; Advanced Bash Loops</a></h2>
<h2><a title="Conditions" href="http://www.linuxtutorialblog.com/post/tutorial-conditions-in-bash-scripting-if-statements">14. Conditions in Bash Scripting</a></h2>
<h2><a title="lutus" href="http://www.arachnoid.com/linux/shell_programming.html">15. Lutus&#8217; Bash Shell Programming in Linux</a></h2>
<h2><a title="envirovariables" href="http://www.siteground.com/tutorials/ssh/ssh_bash_variables.htm">16. Advanced Bash Environment Variables</a></h2>
<h2><a title="GNU" href="http://www.gnu.org/software/bash/manual/bashref.html">17. GNU Universal Bash Reference Guide</a></h2>
<h2><a title="nobash" href="http://mywiki.wooledge.org/BashPitfalls">+1: Bash Pitfalls&#8230;How NOT to write Bash Scripts</a></h2>
<div id="attachment_1328" class="wp-caption aligncenter" style="width: 385px"><a href="http://www.techremedy.net/blog/wp-content/uploads/2010/06/bash_script_10-15-07.jpg"><img class="size-full wp-image-1328" title="bash_script_10-15-07" src="http://www.techremedy.net/blog/wp-content/uploads/2010/06/bash_script_10-15-07.jpg" alt="Bash Script" width="375" height="264" /></a><p class="wp-caption-text">Bash Script</p></div>
<img src="http://www.techremedy.net/blog/?ak_action=api_record_view&id=192&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.techremedy.net/blog/2010/06/17-amazing-tutorials-for-creating-bash-scripts/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

