<?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>FergyTech &#187; yum</title>
	<atom:link href="http://www.fergytech.com/tag/yum/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fergytech.com</link>
	<description>The lovechild of technology and mayhem!</description>
	<lastBuildDate>Sun, 29 Jan 2012 09:34:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Setup Android SDK Starter Package on Fedora 16</title>
		<link>http://www.fergytech.com/2011/11/setup-android-sdk-starter-package-on-fedora-16/</link>
		<comments>http://www.fergytech.com/2011/11/setup-android-sdk-starter-package-on-fedora-16/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 03:02:31 +0000</pubDate>
		<dc:creator>Marc Ferguson</dc:creator>
				<category><![CDATA[Rant]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[command line interface]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[software development kit]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://www.fergytech.com/?p=1559</guid>
		<description><![CDATA[Can a man&#8217;s love for the command line blossom like a rose or age like good wine? I do believe the answer to my rhetorical question is a resounding YES! Recently I&#8217;ve found myself choosing gnome-terminal to execute things rather than clicking in a series of menus on my desktop. Don&#8217;t get me wrong; a]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1567" title="Fedora 16 logo and the Android logo" src="http://www.fergytech.com/wp-content/uploads/lead-fedora-16-android.png" alt="" width="460" height="115" /></p>
<p>Can a man&#8217;s love for the <em>command line</em> blossom like a rose or age like good wine? I do believe the answer to my rhetorical question is a resounding YES! Recently I&#8217;ve found myself choosing <em>gnome-terminal</em> to execute things rather than clicking in a series of menus on my desktop. Don&#8217;t get me wrong; a GUI is nice thing to have, but the efficency of the CLI is unmatched. Through a series of unfortunate events I&#8217;ve setup my Linux environment for Android development (aka how trying to fix a bricked phone). I&#8217;m working with a fresh install from <a href="http://get.fedoraproject.org" target="_blank">Fedora 16 Live</a>. What that means is A LOT of packages/libraries are not installed. Just the bare minimum to get me going.<br />
<span id="more-1559"></span><br />
Here&#8217;s a general overview of the process I took:</p>
<ol>
<li>Download and extracted the <a href="http://developer.android.com/sdk/index.html" target="_blank">Android Software Development Kit</a>.</li>
<li>Installed the Eclipse IDE (roughly 68 packages).</li>
<li>Installed ADT plugins for Eclipse.</li>
<li>Ran ./android command from SDK &#8220;tools&#8221; directory.</li>
<li>It started the &#8220;Android SDK Manager&#8221;. I then installed:
<ol>
<li>Android SDK Platform-tools</li>
<li>The covented &#8220;Android 4.0&#8243; platform</li>
<li>3.2, 2.3.3, and 2.2 platforms (just to show that I can be verstile)</li>
</ol>
</li>
</ol>
<h3>WGET the Android SDK</h3>
<p>I&#8217;m really enjoy the simplicity of the WGET command. While viewing the SDK page in Firefox I simply copied the link for the SDK file and pasted it into the terminal:</p>
<blockquote class="code"><p>$ wget http://dl.google.com/android/android-sdk_r15-linux.tgz</p></blockquote>
<h3>Yummy, Eclipse</h3>
<p>I then used YUM to grab the Eclipse IDE and all its relevant components. Again; since this OS installation was pretty light I ended up installing 68 packages, such as: Eclipse, Java, etc.</p>
<blockquote class="code"><p># yum install eclipse</p></blockquote>
<p>Once that was done I then installed the ADT plugin.</p>
<ol>
<li>I opened the Eclipse IDE.</li>
<li>Clicked on Help &gt; Install Software.</li>
<li>Added the following repository: <a href="https://dl-ssl.google.com/android/eclipse/" target="_blank">https://dl-ssl.google.com/android/eclipse/</a></li>
<li>Clicked &#8220;Select All&#8221; and went to town! It was odd, but I noticed I had to try a couple times. It was claiming to have dependency issues. So; I started clicking one-by-one. Eventually I was able to get all 4 packages installed.</li>
</ol>
<h3>Running Android</h3>
<p><em>This following set is unnecessary since you can access the Android SDK Manager from within Eclipse (thanks to the ADT plugin). Originally;  skipped the ADT plugin step.</em></p>
<p>Now that Java is installed I can run the &#8220;android&#8221; command. It&#8217;s located in the &#8220;tools&#8221; directory of your freshly extracted tarball file &#8220;android-sdk_r15-linux.tgz&#8221;.</p>
<blockquote class="code"><p>$ ./android</p></blockquote>
<h3>SDK Managment</h3>
<p><a href="http://www.fergytech.com/wp-content/uploads/android-sdk-manager.png"><img class="alignright size-medium wp-image-1565" title="android sdk manager" src="http://www.fergytech.com/wp-content/uploads/android-sdk-manager-300x176.png" alt="" width="300" height="176" /></a></p>
<p>The Android SDK Manager popped up with some packages to install. I chose what I thought were appropriate and wrote this blog post while I waited for the files to be downloaded and installed.</p>
<p>So; that&#8217;s pretty much it. At this point you&#8217;re ready to jump into the wonderment, which is Android development. Enjoy!</p>
<h3>References</h3>
<ol>
<li><a href="http://wiki.cyanogenmod.com/wiki/Howto:_Install_the_Android_SDK" target="_blank">http://wiki.cyanogenmod.com/wiki/Howto:_Install_the_Android_SDK</a></li>
<li><a href="http://developer.android.com/sdk/installing.html" target="_blank">http://developer.android.com/sdk/installing.html</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.fergytech.com/2011/11/setup-android-sdk-starter-package-on-fedora-16/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ATI Ain&#8217;t Got Nothin&#8217; on Me!</title>
		<link>http://www.fergytech.com/2009/12/ati-aint-got-nothin-on-me/</link>
		<comments>http://www.fergytech.com/2009/12/ati-aint-got-nothin-on-me/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 14:59:57 +0000</pubDate>
		<dc:creator>Marc Ferguson</dc:creator>
				<category><![CDATA[Linuxapade]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[motherboard]]></category>
		<category><![CDATA[nvidia]]></category>
		<category><![CDATA[radeon]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[xserver]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://www.fergytech.com/?p=745</guid>
		<description><![CDATA[About two plus weeks ago my nVidia GeForce 8600 GT video card died on me. It was a sad sad day in Fergyville. The mayor of town gave a heart-filled eulogy and instructed all residences to put their flags at half mast. I found a spare video card and saw it had a VGA port.]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-760" title="ATI Radeon logo and a Fedora background" src="http://www.fergytech.com/wp-content/uploads/lead_ati_fedora12-e1262393797485.jpg" alt="" width="460" height="115" /></p>
<p>About two plus weeks ago my <em>nVidia GeForce 8600 GT</em> video card died on me. It was a sad sad day in Fergyville. The mayor of town gave a heart-filled eulogy and instructed all residences to put their flags at half mast. I found a spare video card and saw it had a VGA port. So; I then ordered a <a href="http://www.cablesforless.com/p-436-dvi-i-female-to-vga-male-adapter.aspx?v=444" target="_blank">DVI (f) to VGA (m) adapter</a> from Cables for Less and waited another couple days for it to arrive. When it finally arrived, low and behold my spare video card was actually an AGP card and my motherboard only has PCI Express slots. I went spiraling down into a very deep depression (for about 2 minutes). I&#8217;ve been without my Linux partition for roughly two weeks and it was driving me insane.</p>
<p><span id="more-745"></span>When all hope was lost, I accidentally realized that my motherboard has an on-board video port. How could I have missed that!? I&#8217;ve disregarded on-board video for so long that I no longer see them when working on my computer. I was happy to see it, but when I loaded my Linux partition, I didn&#8217;t get nice, clear graphics. Instead I got fuzzy and impossible to work with X session.</p>
<h3>It Works on&#8230; Windows!?</h3>
<p>It&#8217;s kind of hard for me to admit this, but the on-board video DOES work in my Vista partition. I installed the drivers from the motherboard CD and to my surprise I was able to play Battlefield 2 (low specs though). How can this be&#8230; Windows should NEVER trump Linux&#8230; that&#8217;s just LAW!</p>
<h3>Fedora 12, My Hero!</h3>
<p>I spent the next couple of days on IRC and countless search results on how to fix this matter. Most of the responses were to try out Fedora 12 and see if it works then. I was very reluctant to do that. I finally got Fedora 11 all tweaked out the way I wanted and Linux distros really aren&#8217;t the best thing to do an upgrade on. It&#8217;s always best to do a clean install. I wasn&#8217;t ready to do that again. Someone suggested I at least try the <a href="http://download.fedoraproject.org/pub/fedora/linux/releases/12/Live/i686/Fedora-12-i686-Live.iso" target="_blank">Fedora 12 LiveCD</a>. I thought, &#8220;yeah, that should be too difficult to do.&#8221;</p>
<p>I downloaded the 600+MB file within a matter of minutes and loaded it onto a USB drive. To my surprise, X worked. I immediately installed <a href="http://www.xchat.org" target="_blank">XChat</a> and told my friends on #fedora-social. So; I then backed up my home directory and preceded to install a fresh copy of Fedora 12.</p>
<h3>Always Learning</h3>
<p>One of the greatest benefits to running Linux full-time is the learning aspect of it. I&#8217;m so used to doing a full DVD install of the distro that I take for granted what&#8217;s NOT installed if I was to scale back a bit. For example, I did a LiveCD install. It went fairly quick, but then I realized that some of the apps I&#8217;m used to having weren&#8217;t installed. No worries, just YUM the mess out of the terminal and I&#8217;m back in business. What I&#8217;ve learned this go around are the names of these vital GUI applications I&#8217;ve become dependent on. Damn I love Linux!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fergytech.com/2009/12/ati-aint-got-nothin-on-me/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Workaround: Gnome-Do Docky in Fedora 12</title>
		<link>http://www.fergytech.com/2009/12/workaround-gnome-do-docky-in-fedora-12/</link>
		<comments>http://www.fergytech.com/2009/12/workaround-gnome-do-docky-in-fedora-12/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 02:38:17 +0000</pubDate>
		<dc:creator>Marc Ferguson</dc:creator>
				<category><![CDATA[Linuxapade]]></category>
		<category><![CDATA[compiz]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[gnome-do]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://www.fergytech.com/?p=748</guid>
		<description><![CDATA[To my dismay, after installing Fedora 12, I soon realized that the famous &#8220;Docky&#8221; theme for Gnome-Do did not come stock. After some poking around their forums I saw that there was some legal issue between Gnome-Do and Apple. Blah blah blah, I have no time for Apple&#8217;s whining and pouting. They&#8217;re interfering with my FOSS-time. One]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-750" title="Gnome-Do Docky theme on Fedora 12" src="http://www.fergytech.com/wp-content/uploads/lead_gnomedo_docky_fedora12.jpg" alt="Gnome-Do Docky theme on Fedora 12" width="520" height="130" /></p>
<p>To my dismay, after installing <a href="http://fedoraproject.org/en/get-fedora" target="_blank">Fedora 12</a>, I soon realized that the famous &#8220;Docky&#8221; theme for Gnome-Do did not come stock. After some poking around their forums I saw that there was some legal issue between Gnome-Do and Apple. Blah blah blah, I have no time for Apple&#8217;s whining and pouting. They&#8217;re interfering with my FOSS-time. One person made it clear that even though this feature has been removed from the Fedora repos, you can always install Gnome-Do from source. Ha! What a noble idea, I thought to myself. I&#8217;ve gotten so used to repos and RPMs that I haven&#8217;t had to install anything from source in quite some time. Well- that alternative install method works and I jotted it down for ya&#8217;.<br />
<span id="more-748"></span></p>
<h3>Where to Start</h3>
<p>The first thing you should do is get your &#8220;development&#8221; environment ready to compile things from source. It&#8217;s pretty easy to do, just install some tools and libraries. In my case, I installed Fedora 12 from a LiveCD. That means it didn&#8217;t come with EVERYTHING pre-installed. No worries, just YUM-it-up!</p>
<p>The first thing I did was install a lot of tools and libraries via the &#8220;groupinstall&#8221; option:</p>
<pre class="code"># yum groupinstall "development tools" "development libraries"</pre>
<p>That roughly installed about 149 packages. I then went to Gnome-Do&#8217;s web site and they suggested the following packages:</p>
<pre class="code"># yum install gtk2-devel gnome-sharp-devel gnome-desktop-sharp-devel gnome-keyring-sharp-devel mono-addins-devel ndesk-dbus-devel ndesk-dbus-glib-devel notify-sharp-devel GConf2-devel</pre>
<p>This command yielded about 34 packages to be installed.</p>
<h3>Up Next: Grab the Source File</h3>
<p>Now go to Gnome-Do&#8217;s web site and try and find the source file! I say that jokingly, of course, they actually do a good job of pointing you to the right file. But for your convience, I have a direct link to <a href="http://edge.launchpad.net/do/0.8/0.8.2/+download/gnome-do-0.8.2.tar.gz" target="_blank">gnome-do-0.8.2.tar.gz</a>. Here&#8217;s the link to their launchpad site: <a href="https://edge.launchpad.net/do" target="_blank">https://edge.launchpad.net/do</a>.</p>
<h3>Last: Compilation</h3>
<p>Once you&#8217;ve acquired the tarball- it&#8217;s time to unpackage the package and start the compilation process (sounds exciting, eh!?). Run these commands one at a time:</p>
<pre class="code">$ tar -xvzf gnome-do-0.8.2.tar.gz
$ cd gnome-do-0.8.2
$ ./configure
$ make
# make install</pre>
<p>The first time I ran Gnome-Do and tried to go into the &#8220;Preferences&#8221; section, it crashed on me. Simply try again. Find the &#8220;Appearance&#8221; tab and choose &#8220;Docky&#8221;. Oh the joy of seeing it load. I could be incorrect, but if it doesn&#8217;t load, you&#8217;ll need to run Compiz first. God speed my fellow FOSSventurers. Let me know if you had a good experience with getting Docky to work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fergytech.com/2009/12/workaround-gnome-do-docky-in-fedora-12/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>A Chromium RPM on Fedora 11</title>
		<link>http://www.fergytech.com/2009/07/a-chromium-rpm-on-fedora-11/</link>
		<comments>http://www.fergytech.com/2009/07/a-chromium-rpm-on-fedora-11/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 06:01:16 +0000</pubDate>
		<dc:creator>Marc Ferguson</dc:creator>
				<category><![CDATA[Linuxapade]]></category>
		<category><![CDATA[chromium]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[repository]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://www.fergytech.com/?p=602</guid>
		<description><![CDATA[I was trolling the Fedora forums when I saw a post by mariuszs on &#8220;Google Chrome in FC11&#8220;. A bit of excitement rushed through my body and I checked it out. Sure enough it lead me to the http://spot.fedorapeople.org/chromium/ site and it left me very confused. I didn&#8217;t know what I was looking at.  Lucky for me it]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-605" title="Google Chromium Web Browser" src="http://www.fergytech.com/wp-content/uploads/lead_chromium.png" alt="Google Chromium Web Browser" width="520" height="130" /></p>
<p>I was trolling the Fedora forums when I saw a post by mariuszs on &#8220;<a href="http://forums.fedoraforum.org/showthread.php?t=224737" target="_blank">Google Chrome in FC11</a>&#8220;. A bit of excitement rushed through my body and I checked it out. Sure enough it lead me to the <a href="http://spot.fedorapeople.org/chromium/" target="_blank">http://spot.fedorapeople.org/chromium/</a> site and it left me very confused. I didn&#8217;t know what I was looking at.  Lucky for me it was explained in the thread how easy it was to add this test repository for me to eventually do a:</p>
<pre class="code"># yum install chromium</pre>
<p>So; i&#8217;m reposting the instructions to give it more traction.</p>
<h3><span id="more-602"></span>Add the Chromium Test Repository</h3>
<p>I&#8217;ve been using RPMs to add repositories to my system. I didn&#8217;t know what actually went behind adding a repo.  It&#8217;s very easy: open a text editor, add in some code, save it and you&#8217;re finished.</p>
<pre class="code">gedit /etc/yum.repos.d/chromium.repo</pre>
<p>Now add the following content:</p>
<pre class="code">[chromium]
name=Chromium Test Packages
baseurl=http://spot.fedorapeople.org/chromium/F$releasever/
enabled=1
gpgcheck=0</pre>
<p>Save the file. It&#8217;ll create the &#8220;chromium.repo&#8221; in the &#8220;/etc/yum.repos.d&#8221; folder. Wow that was enlightening.</p>
<h3>Install Chromium</h3>
<p>Just run the yum install command and you&#8217;re good to go. The coolest part is, since it&#8217;s a repository, when the developer udpates it, you&#8217;ll get updated too.</p>
<pre class="code"># yum install chromium</pre>
<h3>Flash Support</h3>
<p>mariuszs continues the thread by telling us about how to get Flash working in this version of Chromium on an x86_64 system. The guy&#8217;s a saint! There are three packages (flash-plugin, libcanberra-gtk2, and PackageKit-gtk), if you don&#8217;t already have them installed.</p>
<pre class="code"># yum install flash-plugin-10.0.22.87-release.i386
libcanberra-gtk2-0.12-1.fc11.i586
PackageKit-gtk-module-0.4.8-1.fc11.i586</pre>
<p>Then link the &#8220;libflashplayer.so&#8221; file to the Chromium plugins folder, just like Firefox:</p>
<pre class="code">cd /usr/lib/chromium-browser/plugins/
sudo ln -s /usr/lib/flash-plugin/libflashplayer.so</pre>
<p>When you&#8217;re ready to finally jump right into Chromium, run this command: &#8220;chromium-browser&#8221;.  To enable Flash support append it with &#8220;&#8211;enable-plugins&#8221;. That option will activate Flash and cause other plugins (if you have any) to load with the browser. So; in the end, your final command will be</p>
<pre class="code">$ chromium-browser --enable-plugins</pre>
<p>Thanks <a href="http://forums.fedoraforum.org/member.php?u=152324" target="_blank">mariuszs</a> for the detailed post and Tom &#8220;spot&#8221; Callaway for the repo and Chromium build. You guys are my heroium!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fergytech.com/2009/07/a-chromium-rpm-on-fedora-11/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Silence</title>
		<link>http://www.fergytech.com/2008/06/silence/</link>
		<comments>http://www.fergytech.com/2008/06/silence/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 03:40:00 +0000</pubDate>
		<dc:creator>Marc Ferguson</dc:creator>
				<category><![CDATA[Linuxapade]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[banshee]]></category>
		<category><![CDATA[dependency]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[ibm]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[lug]]></category>
		<category><![CDATA[soundcard]]></category>
		<category><![CDATA[thinkpad]]></category>
		<category><![CDATA[yum]]></category>

		<guid isPermaLink="false">http://www.fergytech.com/?p=86</guid>
		<description><![CDATA[I am experiencing a deafening silience when it comes to the audio on my Fedora box.  As of this article being published I can not hear audio playing on my computer.  Such as: MP3s, Oggs YouTube, Hulu, and Flash-based player Ironically when I do a &#8220;Soundcard Detection&#8221; it does find it, I hear the test]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-87" title="lead_female_nosound" src="http://www.fergytech.com/wp-content/uploads/lead_female_nosound.png" alt="" /></p>
<p>I am experiencing a deafening silience when it comes to the audio on my Fedora box.  As of this article being published I can not hear audio playing on my computer.  Such as:</p>
<ul>
<li>MP3s, Oggs</li>
<li>YouTube, Hulu, and Flash-based player</li>
</ul>
<p>Ironically when I do a &#8220;Soundcard Detection&#8221; it does find it, I hear the test audio.  I can even hear my recording that I just created in Audacity.  I am at a lotal lost.</p>
<p><span id="more-86"></span></p>
<h2>Banshee 1.0</h2>
<p>I think it started when I tried to install the lastest rave of audio players, Banshee 1.0.  I&#8217;m running Fedora 8, I&#8217;m a linux noob, so I checked my respositories and it had a version 0.13.  YUM search, YUM install all produced a non-1.0 version.  So; I downloaded the source file and tried to ./configure, make, make install.  Not to my surprise I had a dependency issue.  I did a search in my program manager and then google.com for any direction.  I&#8217;d find the library file and install THAT from source.  For the next hour or so it was rince and repeat.  Evey time I executed ./configure, I kept falling into a depenency issue.</p>
<p>For some of them I installed by source, but Fedora still didn&#8217;t recognize that it was installed.</p>
<p style="padding-left: 30px;"><span style="color: #808080;">Over the past couple of months &#8211; I&#8217;ve picked up that any library or program that comes stock with the distro you will find in /usr folder.  Anything you install afterwards should go into the /usr/local folder.  In there it has a &#8220;src&#8221;, &#8220;share&#8221;, and a &#8220;lib&#8221; folder.  So I could move my source files to /usr/local/src and compile them from there.  I would also install precomipled programs, such as Fire fox into the /usr/local/share/applications folder.</span></p>
<p>Well basically the system wouldn&#8217;t look into the /usr/local/lib folder to see that library I just install resides there.  I ended up on my LUG&#8217;s mailing list for some answers.  They pointed me into the right direction, but I STILL had other dependency issues.  It was not a pretty site.  Ironically; my older IBM Thinkpad R40 laptop is running Fedora 9 and I did &#8220;YUM install banshee&#8221; and it installed version 1.0 without any issues.  Hmmm, I might need to upgrade my desktop.</p>
<p>Overall; YUM seems to be a better route of installing programs, I just need to understand how to work it.  I still haven&#8217;t figured out the problem &#8211; I don&#8217;t know where to start.  This sucks! <img src='http://www.fergytech.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.fergytech.com/2008/06/silence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

