<?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>Fauxzen.com &#187; Linux</title>
	<atom:link href="http://www.fauxzen.com/category/technology/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fauxzen.com</link>
	<description>Incoherent Ramblings in basic form</description>
	<lastBuildDate>Thu, 02 Feb 2012 17:36:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Resetting MySQL root password from the CLI</title>
		<link>http://www.fauxzen.com/2012/resetting-mysql-root-password-from-the-cli/</link>
		<comments>http://www.fauxzen.com/2012/resetting-mysql-root-password-from-the-cli/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 04:41:35 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.fauxzen.com/?p=3460</guid>
		<description><![CDATA[Seems like I always end up searching for this so I thought I would add it to my site for easy reference. Stop MySQL sudo /etc/init.d/mysql stop Start MySQL with the following command sudo mysqld --skip-grant-tables &#38; Login to MySQL as root with out a password mysql -u root mysql Replace PASSWORD with the new [...]]]></description>
			<content:encoded><![CDATA[<p>Seems like I always end up searching for this so I thought I would add it to my site for easy reference.</p>
<ol>
<li>Stop MySQL
<pre class="brush: bash; gutter: true">sudo /etc/init.d/mysql stop</pre>
</li>
<li>Start MySQL with the following command
<pre class="brush: bash; gutter: true">sudo mysqld --skip-grant-tables &amp;</pre>
</li>
<li>Login to MySQL as root with out a password
<pre class="brush: bash; gutter: true">mysql -u root mysql</pre>
</li>
<li>Replace PASSWORD with the new password of your choice.
<pre class="brush: bash; gutter: true">UPDATE user SET Password=PASSWORD(&#039;PASSWORD&#039;) WHERE User=&#039;root&#039;; FLUSH PRIVILEGES; exit;</pre>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2012/resetting-mysql-root-password-from-the-cli/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Centralized XBMC library</title>
		<link>http://www.fauxzen.com/2012/centralized-xbmc-library/</link>
		<comments>http://www.fauxzen.com/2012/centralized-xbmc-library/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 23:06:19 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[xbmc]]></category>

		<guid isPermaLink="false">http://www.fauxzen.com/?p=3445</guid>
		<description><![CDATA[Problem: I have multiple AppleTV&#8217;s running XBMC on them all reading from the same central server.  The issue was that the thumbnails might be on one and not the other, also watching TV series its hard to keep track of which episode I am on since I watch from multiple locations. Solution: Doing some reading [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Problem:</strong> I have multiple AppleTV&#8217;s running XBMC on them all reading from the same central server.  The issue was that the thumbnails might be on one and not the other, also watching TV series its hard to keep track of which episode I am on since I watch from multiple locations.</p>
<p><strong>Solution:</strong> Doing some reading you can actually make all of the XBMC instances store data to a central server running MySQL.  Why would you want to do that? Well there are a few reasons, besides having everything in sync across the board it also gives you the ability to resume playback from where you left off in another room.</p>
<p><span id="more-3445"></span>Since I already had a server on my LAN which is providing the media via Samba and already has MySQL running for a development environment it was a pretty simple setup.  I followed the tutorial <a href="http://wiki.xbmc.org/index.php?title=HOW-TO:Synchronize_multiple_XBMC_libraries">here</a>, which pretty much calls for making a MySQL user for XBMC and then I took it a step further and have all of the actor/movie thumbnails being stored on a network share too.  I have included my advancedsettings.xml file which you need to create and add to each XBMC instance.</p>
<pre class="brush: xml; gutter: true">&lt;advancedsettings&gt;
    &lt;videodatabase&gt;
        &lt;type&gt;mysql&lt;/type&gt;
        &lt;host&gt;10.0.1.100&lt;/host&gt;
        &lt;port&gt;3306&lt;/port&gt;
        &lt;user&gt;xbmc&lt;/user&gt;
        &lt;pass&gt;xbmc&lt;/pass&gt;
        &lt;name&gt;xbmc_video&lt;/name&gt;
    &lt;/videodatabase&gt; 

    &lt;musicdatabase&gt;
        &lt;type&gt;mysql&lt;/type&gt;
        &lt;host&gt;10.0.1.100&lt;/host&gt;
        &lt;port&gt;3306&lt;/port&gt;
        &lt;user&gt;xbmc&lt;/user&gt;
        &lt;pass&gt;xbmc&lt;/pass&gt;
        &lt;name&gt;xbmc_music&lt;/name&gt;
    &lt;/musicdatabase&gt;

	&lt;pathsubstitution&gt;
  		&lt;substitute&gt;
			&lt;from&gt;special://masterprofile/Thumbnails/&lt;/from&gt;
			&lt;to&gt;smb://10.0.1.100/XBMC/Thumbnails/&lt;/to&gt;
		&lt;/substitute&gt;
	&lt;/pathsubstitution&gt;
&lt;/advancedsettings&gt;</pre>
<p>I decided to rebuild my whole library, which takes a little but but all said and done its a pretty nice setup and being able to resume playback from room to room is nice too.  If you have a dedicated machine, and multiple XBMC instances I would recommend this type of setup.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2012/centralized-xbmc-library/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Site performance and moving to the Cloud&#8230;.</title>
		<link>http://www.fauxzen.com/2011/site-performance-and-moving-to-the-cloud/</link>
		<comments>http://www.fauxzen.com/2011/site-performance-and-moving-to-the-cloud/#comments</comments>
		<pubDate>Mon, 19 Sep 2011 01:49:04 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[cdn]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[cloudflare]]></category>
		<category><![CDATA[rackspace]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.fauxzen.com/?p=2581</guid>
		<description><![CDATA[This is a topic that I revisit quite often, sometimes out of boredom and sometimes just out of a need to well revisit things. Over the years I have worked as a system admin for a few hosting companies and have noticed that not all sites fit well on a shared platform, or if they fit just [...]]]></description>
			<content:encoded><![CDATA[<p>This is a <a title="Cut back WordPres CPU load on your server" href="http://www.fauxzen.com/cut-back-wordpress-cpu-load-on-your-server/">topic</a> that I revisit quite often, sometimes out of boredom and sometimes just out of a need to well revisit things. Over the years I have worked as a system admin for a few hosting companies and have noticed that not all sites fit well on a shared platform, or if they fit just don&#8217;t work as well as they could.  My goal has always been to try to get a premium setup with out paying an arm and a leg for it.</p>
<p>Below I am going to cover a few things that I have researched(Don&#8217;t expect any hard numbers you will simply have to take my word on this of search Google for articles showing full comparisons/numbers), tested and implemented for Fauxzen.com.<span id="more-2581"></span></p>
<p><strong>Server Setup:</strong>  After shopping around I found that <a title="RackSpace Cloud Servers" href="http://www.rackspace.com/cloud/cloud_hosting_products/servers/">RackSpace</a> seemed to offer the cheapest cloud server weighing in at about $11 a month. Originally I chose to go with <a title="CentOS" href="http://centos.org/">CentOS</a>, but after create an exact <a title="Ubuntu Server" href="http://www.ubuntu.com/">Ubuntu Server</a> install and comparing the CPU/Memory usage I found that <a title="Ubuntu Server" href="http://www.ubuntu.com/">Ubuntu Server</a> had far less overhead than <a title="CentOS" href="http://centos.org/">CentOS</a>. Keeping with the memory/cpu usage as well as reading many articles about performance from a web server I chose to go with <a title="NGinx" href="http://nginx.org/">NGinx</a> <img class="alignleft size-full wp-image-2585" title="NGinx" src="http://cdn.fauxzen.com/wp-content/uploads/2011/09/nginx-logo.png" alt="NGinx" width="168" height="43" />instead of <a title="Apache" href="http://apache.org/">Apache</a>.  While the initial install and setup was a little more complex than <a title="Apache" href="http://apache.org/">Apache</a> once up and running I haven&#8217;t had to look back.  I should clear up that I have been using Apache for the past 10yrs to <a title="NGinx" href="http://nginx.org/">NGinx</a> seemed a little foreign to me until I did some reading.  Of course the server has <a title="MySQL" href="http://dev.mysql.com/">MySQL</a> and the only thing I have really customized with it at this point was to enable <a title="Enable query-cache" href="http://www.cyberciti.biz/tips/enable-the-query-cache-in-mysql-to-improve-performance.html">query-cache</a>. Of course there is a ton more that can be done with <a title="MySQL" href="http://dev.mysql.com/">MySQL</a>&#8230; but thats for another article.  Ohh and for php I am using <a title="Enabled php-fpm" href="http://interfacelab.com/nginx-php-fpm-apc-awesome/">php-fpm</a> with <a title="Enable APC with PHP-FPM" href="http://interfacelab.com/nginx-php-fpm-apc-awesome/">APC</a> enabled.</p>
<p><strong>DNS:</strong> I first debated about using <a title="Route53" href="http://aws.amazon.com/route53/">Route53</a> for my DNS since its cloud based.  After doing some research there were a few things that made me decide to look elsewhere.  First off  keeping with the cheap budget it does cost $1 and if you are looking to go as cheap as possible &#8230; well thats another $1 per month for each domain.  Second thing which was not really a deal breaker, but could be for some is that there is no interface for it.  Everything you wish to manage with your DNS with <a title="Route53" href="http://aws.amazon.com/route53/">Route53</a> has to be done via their API or you can use some of the 3rd party services people have created to manage your DNS, just seemed like a bit of a small hassle.<br />
The other option that I found, which I am a big fan of is <a title="CloudFlare" href="https://www.cloudflare.com/">CloudFlare</a>.  <a title="CloudFlare" href="https://www.cloudflare.com/">CloudFlare</a> is <img class="alignright size-full wp-image-2584" title="CloudFlare" src="http://cdn.fauxzen.com/wp-content/uploads/2011/09/cloudflare-logo.png" alt="CloudFlare" width="185" height="31" />a cloud based DNS host and then some&#8230; ohh and Free.  They help prevent spammers/bots from accessing your site, which in the end saves you X page views over the course of the month as well as X bandwidth which is a huge plus.  They also cache parts of your site to make so that it is always online, this feature is awesome I have actually tested by turning my server off and trying to load my site and it loads a static version.  They also give you a nice run down of stats that are updated every 24hrs, the pro version updates stats every 15mins.</p>
<p><strong>Statistics:</strong> Some people will argue thatusing <a title="Google Analytics" href="http://www.google.com/analytics/">Google Analytics</a> is not as accurate as using something like <a title="AWstats" href="http://awstats.sourceforge.net/">AWstats</a>, <a title="Webalizer" href="http://www.webalizer.org/">Webalizer</a> or even writing your own which reads the server log files in realtime. This option works good enough for me since I am not running in click tracking ads etc etc.</p>
<p><strong>Email:</strong> <a title="Google Apps" href="http://www.google.com/apps/intl/en/business/index.html">Google Apps</a> for your domain is an awesome free product and allows you NOT to have a mail server running on you setup.  Besides the performance gain from NOT running this on your server, you also get the benefit of letting Google handle your Spam&#8230; which if you have ever done admin work mail can be a total pain.</p>
<p><strong>CDN:</strong>  While this kind of goes away from the whole aiming to be as cheap as possible, its a nice feature to have.  The cost involved with using a CDN can vary on who you go with, and the traffic that your site is generating. I chose to go with <a title="Amazon S3" href="http://aws.amazon.com/s3/">Amazon S3</a>/<a title="Cloudfront" href="http://aws.amazon.com/cloudfront/">CloudFront</a>, the cost is pretty much next to nothing once you get all setup and there seems to be a bit of a noticable</p>
<p><strong>Frontend/Backend:</strong>  <a title="WordPress" href="http://wordpress.org/">WordPress</a> is used through the site, with minimal plugins as well as a child theme running on <a title="Genesis" href="http://www.studiopress.com/themes/genesis">Genesis</a>.  I tested out a few theme frameworks and found that <a title="Genesis" href="http://www.studiopress.com/themes/genesis">Genesis</a> gives you more bang for your buck as well as seems to be fast when compared to other frameworks on the market, and has a great customer base to help support it&#8230;. and yeah I know this is not Free either.  I am using a total of <em>13 plugins</em>, I could honestly probably disable a few others as I don&#8217;t use them often. Speaking of plugins since I didn&#8217;t configure a local mail server of any sorts on this install I had to install <a title="WP-Mail-SMTP" href="http://wordpress.org/extend/plugins/wp-mail-smtp/">WP-Mail-SMTP</a> plugin which allowed me to use a POP mail account for <a title="WordPress" href="http://wordpress.org/">WordPress</a> mailing. I am also using Disqus for my commenting, this works great with <a title="CloudFlare" href="https://www.cloudflare.com/">CloudFlare</a> when your server is not reachable.</p>
<p>So far the site/setup seem great especially when you look at the total price being under <strong>$15 a month</strong> for a cloud based setup which doesn&#8217;t place all your eggs in one basket and gives you an almost true 100% uptime for all of your services.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2011/site-performance-and-moving-to-the-cloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AirVideo server on Ubuntu</title>
		<link>http://www.fauxzen.com/2011/airvideo-server-on-ubuntu/</link>
		<comments>http://www.fauxzen.com/2011/airvideo-server-on-ubuntu/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 22:29:22 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.fauxzen.com/?p=1369</guid>
		<description><![CDATA[In the past installing AirVideo server on an Ubuntu system was somewhat of a pain, and an all around hack.  Upon my recent purchase of an iPad I really wanted to get AirVideo working again.  So after a little search and thinking that it was going to be a hack job again, I came across a [...]]]></description>
			<content:encoded><![CDATA[<p>In the past installing <a title="AirVideo" href="http://www.inmethod.com/air-video/index.html">AirVideo</a> server on an <a title="Ubuntu" href="http://www.ubuntu.com">Ubuntu</a> system was somewhat of a pain, and an all around hack.  Upon my recent purchase of an iPad I really wanted to get <a title="AirVideo" href="http://www.inmethod.com/air-video/index.html">AirVideo</a> working again.  So after a little search and thinking that it was going to be a hack job again, I came across a package that someone had created to get this installed.</p>
<p>You can find the PPA information needed to install <a title="AirVideo" href="http://www.inmethod.com/air-video/index.html">AirVideo</a> <a title="https://launchpad.net/~rubiojr/+archive/airvideo" href="https://launchpad.net/~rubiojr/+archive/airvideo">here</a>. Using the PPA installing was a breeze and I now have <a title="AirVideo" href="http://www.inmethod.com/air-video/index.html">AirVideo</a> setup and streaming to my iPad, iPhone and soon to Kats iTouch.</p>
<p>You can find the startup script <a title="https://gist.github.com/905291" href="https://gist.github.com/905291">here</a> and there is also some other great information covered little more in depth <a title="http://irrationale.com/2011/03/31/airvideo-on-ubuntu-the-even-easier%C2%A0way/" href="http://irrationale.com/2011/03/31/airvideo-on-ubuntu-the-even-easier%C2%A0way/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2011/airvideo-server-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>APC on a WHM/CPanel Server</title>
		<link>http://www.fauxzen.com/2011/apc-on-a-whmcpanel-server/</link>
		<comments>http://www.fauxzen.com/2011/apc-on-a-whmcpanel-server/#comments</comments>
		<pubDate>Mon, 21 Feb 2011 23:17:29 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.fauxzen.com/?p=1067</guid>
		<description><![CDATA[One of my clients needed APC installed for their application, so I initially tried to install it via WHM module installer &#8230;. this failed.   Here are the steps that I took to get it working via CLI First download the newest stable release of APC and then run the following commands. wget http://pecl.php.net/get/APC-3.1.6.tgz tar -xzf APC-3.1.6.tgz [...]]]></description>
			<content:encoded><![CDATA[<p>One of my clients needed APC installed for their application, so I initially tried to install it via WHM module installer &#8230;. this failed.   Here are the steps that I took to get it working via CLI<br />
First download the newest stable release of APC and then run the following commands.</p>
<blockquote><p>wget http://pecl.php.net/get/APC-3.1.6.tgz<br />
tar -xzf APC-3.1.6.tgz<br />
cd APC-3.1.6<br />
which php<br />
phpize</p></blockquote>
<p>If you do not have pcre installed the make install will fail.  So make <span id="more-1067"></span>sure to run the following yum command to install it with the development packages for safe measure.</p>
<blockquote><p>yum install pcre.i386 pcre-devel.i386</p></blockquote>
<p>This is the configure line that I used, your php-config location MIGHT be different so make sure to double check that</p>
<blockquote><p>./configure &#8211;enable-apc &#8211;enable-apc-mmap &#8211;with-apxs &#8211;with-php-config=/usr/bin/php-config<br />
make<br />
make install</p></blockquote>
<p>Lastly find the correct php.ini that your system is using and then edit that ini and add the following config settings near the end of your php.ini.</p>
<blockquote><p>php -i | grep php.ini<br />
vi /usr/local/lib/php.ini</p></blockquote>
<p>Config to add before the &#8220;zend&#8221; section.</p>
<blockquote><p>extension=&#8221;apc.so&#8221;<br />
apc.enabled=&#8221;1&#8243;<br />
apc.shm_segments=&#8221;5&#8243;<br />
apc.shm_size=&#8221;16&#8243;<br />
apc.ttl=&#8221;7200&#8243;<br />
apc.rfc1867=&#8221;on&#8221;<br />
apc.mmap_file_mask=&#8221;/tmp/apc.XXXXXX&#8221;<br />
apc.user_ttl=&#8221;7200&#8243;<br />
apc.num_files_hint=&#8221;2048&#8243;<br />
apc.enable_cli=&#8221;1&#8243;<br />
apc.max_file_size=&#8221;10M&#8221;</p></blockquote>
<p>I also ran into an issue that when the apc.so was compiled it was not placed in the proper extension_dir, I had to manually copy it to the correct folder.  Once you have done all that stop and then start Apache and walla you should be all set.  check your php.ini to make sure APC shows up.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2011/apc-on-a-whmcpanel-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TransNotifo</title>
		<link>http://www.fauxzen.com/2011/transnotifo/</link>
		<comments>http://www.fauxzen.com/2011/transnotifo/#comments</comments>
		<pubDate>Sat, 05 Feb 2011 00:58:11 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[notifo]]></category>
		<category><![CDATA[torrent]]></category>

		<guid isPermaLink="false">http://www.fauxzen.com/?p=1055</guid>
		<description><![CDATA[I use Transmission to download torrents on my headless Linux box.  I was tired of always having to remote into the machine via FreeNX, SSH or web interface to see if downloads had completed. I have been using Notifo for sometime to monitor the lighting on my snakes aquarium and decided that this would be [...]]]></description>
			<content:encoded><![CDATA[<p>I use <a title="Transmission" href="http://www.transmissionbt.com">Transmission</a> to download torrents on my headless Linux box.  I was tired of always having to remote into the machine via FreeNX, SSH or web interface to see if downloads had completed. I have been using <a title="Notifo" href="http://www.notifo.com">Notifo</a> for sometime to monitor the lighting on my snakes aquarium and decided that this would be a good use of <a title="Notifo" href="http://www.notifo.com">Notifo</a> once again.  So after a bit of research I came across a bash script example that allowed <a title="Transmission" href="http://www.transmissionbt.com">Transmission</a> to log to a file upon completion of downloads. I then came across a script that would let you send alerts to <a title="Notifo" href="http://www.notifo.com">Notifo</a> from the command line &#8230;. So I combined them and was left with the following.<span id="more-1055"></span></p>
<pre class="brush: bash; gutter: true">#!/bin/bash
# Version 020411
# Variables
CURL=&quot;/usr/bin/curl&quot;
NAME=&quot;NOTIFO_USERNAME&quot;
APISECRET=&quot;NOTIFO_API_SECRET&quot;
URL=&quot;https://api.notifo.com/v1/send_notification&quot;
TITLE=&quot;Finished&quot;
LABEL=&quot;Transmission&quot;
# Construct and Send
messageMSG=&quot;title=$TITLE&amp;amp;label=$LABEL&amp;amp;msg=+$TR_TORRENT_NAME&quot;$CURL -k -u $NAME:$APISECRET -d $MSG $URL &amp;gt; /dev/null</pre>
<p>I have pushed this to <a title="GitHub" href="https://github.com/sdenike/TransNotifo">GitHub</a> and that is where any updates will be made when/if there are any that are made in the near future</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2011/transnotifo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wget on OS X 10.6</title>
		<link>http://www.fauxzen.com/2010/wget-on-os-x-10-6/</link>
		<comments>http://www.fauxzen.com/2010/wget-on-os-x-10-6/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 16:12:07 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://www.fauxzen.com/?p=1031</guid>
		<description><![CDATA[If you need to install wget on OS X 10.6 you can follow these steps to install the latest and greatest version of it. If you dont want to compile from source you can always use Darwin Ports, or Fink. The following steps are performed from the Terminal.app once you have the file downloaded. Download [...]]]></description>
			<content:encoded><![CDATA[<p>If you need to install wget on OS X 10.6 you can follow these steps to install the latest and greatest version of it. If you dont want to compile from source you can always use Darwin Ports, or Fink.  The following steps are performed from the Terminal.app once you have the file downloaded.</p>
<ol>
<li>Download the <a href="http://ftp.gnu.org/gnu/wget/wget-latest.tar.gz">wget</a> source</li>
<li>tar -xvzf wget-latest.tar.gz</li>
<li>cd wget-latest</li>
<li>./configure</li>
<li>make</li>
<li>sudo make install</li>
<li>wget should now be in /usr/local/bin</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2010/wget-on-os-x-10-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Raid Solution</title>
		<link>http://www.fauxzen.com/2010/raid-solution/</link>
		<comments>http://www.fauxzen.com/2010/raid-solution/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 21:22:33 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[raid]]></category>

		<guid isPermaLink="false">http://fauxzen.com/?p=925</guid>
		<description><![CDATA[I am in search of a raid solution. I have been pretty interested in the Drobo but due to the cost of what you get I am not sure its the best method, though the idea is cool. I am thinking instead of maybe getting a few 1tb+ drives and a cheap RAID card and [...]]]></description>
			<content:encoded><![CDATA[<p>I am in search of a raid solution.  I have been pretty interested in the <a href="http://www.drobo.com/">Drobo</a> but due to the cost of what you get I am not sure its the best method, though the idea is cool.  I am thinking instead of maybe getting a few 1tb+ drives and a cheap RAID card and tossing it all into my Linux box as it would provide a lot more than just a storage device, not to mention the cost would be much less.  What does everyone think?</p>
<p style="text-align: center;">[poll id="2"]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2010/raid-solution/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>htop</title>
		<link>http://www.fauxzen.com/2008/htop/</link>
		<comments>http://www.fauxzen.com/2008/htop/#comments</comments>
		<pubDate>Fri, 26 Dec 2008 21:21:49 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://fauxzen.com/?p=676</guid>
		<description><![CDATA[I have been meaning to post about htop for sometime now.. but for some reason me being lazy has stopped the posting process.  Anyways Htop is a really nice program to get the information that top would normally show you, but it looks a lot nicer.  I highly suggest taking a look at it.  I [...]]]></description>
			<content:encoded><![CDATA[<p>I have been meaning to post about <a href="http://htop.sourceforge.net/">htop </a>for sometime now.. but for some reason me being lazy has stopped the posting process.  Anyways <a href="http://htop.sourceforge.net/">Htop </a>is a really nice program to get the information that top would normally show you, but it looks a lot nicer.  I highly suggest taking a <a href="http://htop.sourceforge.net/">look at it</a>.  I know Ubuntu has a package for it as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2008/htop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SATA vs IDE w/hdparm</title>
		<link>http://www.fauxzen.com/2008/sata-vs-ide-whdparm/</link>
		<comments>http://www.fauxzen.com/2008/sata-vs-ide-whdparm/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 20:42:36 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[hdparm]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[sata]]></category>

		<guid isPermaLink="false">http://fauxzen.com/?p=742</guid>
		<description><![CDATA[Can you spot the IDE drive in the mix Drive One /dev/sda: Timing cached reads:   422 MB in  2.00 seconds = 210.72 MB/sec Timing buffered disk reads:  220 MB in  3.03 seconds =  72.72 MB/sec Drive Two /dev/sdb: Timing cached reads:   412 MB in  2.00 seconds = 205.55 MB/sec Timing buffered disk reads:  224 MB [...]]]></description>
			<content:encoded><![CDATA[<p>Can you spot the IDE drive in the mix</p>
<p><strong>Drive One</strong></p>
<blockquote><p>/dev/sda:<br />
Timing cached reads:   422 MB in  2.00 seconds = 210.72 MB/sec<br />
Timing buffered disk reads:  220 MB in  3.03 seconds =  72.72 MB/sec</p></blockquote>
<p><strong>Drive Two</strong></p>
<blockquote><p>/dev/sdb:<br />
Timing cached reads:   412 MB in  2.00 seconds = 205.55 MB/sec<br />
Timing buffered disk reads:  224 MB in  3.01 seconds =  74.37 MB/sec
</p></blockquote>
<p><strong>Drive Three</strong></p>
<blockquote><p>/dev/sdc:<br />
Timing cached reads:   420 MB in  2.00 seconds = 209.78 MB/sec<br />
Timing buffered disk reads:  240 MB in  3.01 seconds =  79.66 MB/sec
</p></blockquote>
<p><strong>Drive Four</strong></p>
<blockquote><p>/dev/sdd:<br />
Timing cached reads:   442 MB in  2.00 seconds = 220.48 MB/sec<br />
Timing buffered disk reads:   76 MB in  3.06 seconds =  24.81 MB/sec</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2008/sata-vs-ide-whdparm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Block ads on OS X Leopard</title>
		<link>http://www.fauxzen.com/2008/block-ads-on-os-x-leopard/</link>
		<comments>http://www.fauxzen.com/2008/block-ads-on-os-x-leopard/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 17:59:39 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[adblock]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[os-x]]></category>

		<guid isPermaLink="false">http://fauxzen.com/?p=733</guid>
		<description><![CDATA[I got on a fix today about ads on websites, I already use Adblock Plus as well as the Adblock Filterset.G Updater in Firefox.  But I wanted to take it a step further.  I adid so with the following steps. Opened up terminal and added the following list to my /etc/hosts file. http://www.mvps.org/winhelp2002/hosts.txt After this [...]]]></description>
			<content:encoded><![CDATA[<p>I got on a fix today about ads on websites, I already use <a title="AdBlock Plus" href="https://addons.mozilla.org/en-US/firefox/addon/1865">Adblock Plus</a> as well as the Adblock Filterset.G Updater in <a title="Firefox" href="http://mozilla.org">Firefox</a>.  But I wanted to take it a step further.  I adid so with the following steps.</p>
<p>Opened up terminal and added the following list to my /etc/hosts file.</p>
<p>http://www.mvps.org/winhelp2002/hosts.txt</p>
<p>After this you need to flush the DNS cache</p>
<blockquote><p>sudo dscacheutil -flushcache</p></blockquote>
<p>All set.  You can of course use this on Windows/Linux and other versions of OS X.  For older versions of OS X the dscacheutil command is not the same.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2008/block-ads-on-os-x-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Damn you DD-WRT!</title>
		<link>http://www.fauxzen.com/2008/damn-you-dd-wrt/</link>
		<comments>http://www.fauxzen.com/2008/damn-you-dd-wrt/#comments</comments>
		<pubDate>Thu, 14 Aug 2008 16:59:03 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[dd-wrt]]></category>
		<category><![CDATA[linksys]]></category>

		<guid isPermaLink="false">http://fauxzen.com/?p=719</guid>
		<description><![CDATA[So the last couple of days my internet connection has been acting pretty strange.  Pinging my fileserver was taking about 4000-6000ms &#8230; which is not normal.  When pinging the LinkSys WRT54G running DD-WRT v24 it was taking about 30ms which is pretty high.  All of a sudden my wireless dropped and all the settings were [...]]]></description>
			<content:encoded><![CDATA[<p>So the last couple of days my internet connection has been acting pretty strange.  Pinging my fileserver was taking about 4000-6000ms &#8230; which is not normal.  When pinging the LinkSys WRT54G running DD-WRT v24 it was taking about 30ms which is pretty high.  All of a sudden my wireless dropped and all the settings were reset to DD-WRT default &#8230;.  Spent about an hour setting it all back up, while doing so I decided to upgrade to the newest version of v24.  All seems well now and much quicker to boot.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2008/damn-you-dd-wrt/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>File server = Epic Fail</title>
		<link>http://www.fauxzen.com/2008/file-server-epic-fail/</link>
		<comments>http://www.fauxzen.com/2008/file-server-epic-fail/#comments</comments>
		<pubDate>Sun, 06 Jul 2008 18:30:13 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://fauxzen.com/?p=713</guid>
		<description><![CDATA[So I spent a few hours redoing the File server setup, switching out the mother board drives etc&#8230; Only to recall why I never used the dual 1ghz machine in the first place.  When placing an IDE or SATA PCI card into the motherboard everything slows to a crawl.  Its some issue with the motherboard [...]]]></description>
			<content:encoded><![CDATA[<p>So I spent a few hours redoing the File server setup, switching out the mother board drives etc&#8230; Only to recall why I never used the dual 1ghz machine in the first place.  When placing an IDE or SATA PCI card into the motherboard everything slows to a crawl.  Its some issue with the motherboard and is stated on the TYAN site.  So I wasted away a few hours of my life for nothing.  I did however reinstall the File server with the old hardware and a copy of Ubuntu Server.  The new install is much more optimized than the later which is the only plus from the experience.  Damn you TYAN and your Dual p3 motherboard issues.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2008/file-server-epic-fail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vegas Heat, Steak and Computers</title>
		<link>http://www.fauxzen.com/2008/vegas-heat-steak-and-computers/</link>
		<comments>http://www.fauxzen.com/2008/vegas-heat-steak-and-computers/#comments</comments>
		<pubDate>Thu, 03 Jul 2008 23:31:18 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[ryan]]></category>
		<category><![CDATA[steak]]></category>
		<category><![CDATA[vegas]]></category>

		<guid isPermaLink="false">http://fauxzen.com/?p=712</guid>
		<description><![CDATA[Over the past couple of weeks Vegas sure has gotten hot.  I had forgotten how hot it gets during the summers here.  Ohh well once I get a job I think it will be time to fix the AC unit in my car since it doesn&#8217;t seem to work anymore. Ryan was here over the [...]]]></description>
			<content:encoded><![CDATA[<p>Over the past couple of weeks Vegas sure has gotten hot.  I had forgotten how hot it gets during the summers here.  Ohh well once I get a job I think it will be time to fix the AC unit in my car since it doesn&#8217;t seem to work anymore.<br />
Ryan was here over the last week and I wish my luck was as god as his.  Seems that he had a lucky streak as he was up around $1000 during the time he was here. Even though I haven&#8217;t won like that in a long time, he still treated us to nice steak dinner at <a href="http://www.claimjumper.com/">Claim Jumpers</a>.<br />
I have started to plan out my new fileserver setup.  Mainly I have a dual 1ghz machine with 4gig of ram that I am going t put in pace as the fie server, and then take the d fileserver and make it a MythTv frontend for my bedroom&#8230;  Lets see how well this ends up working out.<br />
 </p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2008/vegas-heat-steak-and-computers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>phpSysInfo 3.0-rc3</title>
		<link>http://www.fauxzen.com/2008/phpsysinfo-30-rc3/</link>
		<comments>http://www.fauxzen.com/2008/phpsysinfo-30-rc3/#comments</comments>
		<pubDate>Wed, 14 May 2008 17:34:07 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://fauxzen.com/?p=705</guid>
		<description><![CDATA[I have been a long time user of phpSysInfomebeli, but I must say the newest version that I installed takes the cake. I am digging the new layout, and yes mainly because of the fade effects put in place and the colors etc. It seems to display the information a bit better than prior versions, [...]]]></description>
			<content:encoded><![CDATA[<p>I have been a long time user of <a href="http://phpsysinfo.sourceforge.net/">phpSysInfo</a><font style="position: absolute;overflow: hidden;height: 0;width: 0"><a href="http://www.videnov.com/">mebeli</a></font>, but I must say the newest version that I installed takes the cake.  I am digging the new layout, and yes mainly because of the fade effects put in place and the colors etc.  It seems to display the information a bit better than prior versions, and the layout is much easier on the eyes than that of older versions.  You should upgrade to this if you haven&#8217;t already.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2008/phpsysinfo-30-rc3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Back in the mix.</title>
		<link>http://www.fauxzen.com/2008/back-in-the-mix/</link>
		<comments>http://www.fauxzen.com/2008/back-in-the-mix/#comments</comments>
		<pubDate>Sat, 10 May 2008 20:21:50 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://fauxzen.com/?p=703</guid>
		<description><![CDATA[After abruptly being woken up today nice and early I figured that I would put some work into my linux box. It was almost foreign to me, since I haven&#8217;t been doing anything linux since I moved. My Mediacenter has mainly just been sitting online running as a Transparent Squid proxy, Caching DNS server, Fileserver [...]]]></description>
			<content:encoded><![CDATA[<p>After abruptly being woken up today nice and early I figured that I would put some work into my linux box.  It was almost foreign to me, since I haven&#8217;t been doing anything linux since I moved.  My Mediacenter has mainly just been sitting online running as a <a href="http://www.ubuntugeek.com/how-to-setup-transparent-squid-proxy-server-in-ubuntu.html">Transparent Squid proxy</a>, Caching DNS server, Fileserver to my <a href="http://xbmc.org/">XBMC</a>.  The specs of the machine are as follows:</p>
<blockquote><p>1.25ghz AMD XP<br />
512 PC2700<br />
784gb of Random SATA Drives.</p></blockquote>
<p>As you can see its not anything that special, but houses a decent amount of drive space and handles everything just fine for my needs.   That being said I wanted to squeeze a as much juice out of it as possible.  I figured the best way to do this would be to remove any unused services that start, really no need in running cups when there is no printer connected to it.  I also removed bluetooth, pcmcia, and a bunch of laptop services.<br />
I really need to find my extra ram that I have laying around and spruce it up to 1gb of ram, as well as purchase another SATA card so I can add a few more drives that I have laying around.  Adding the SATA card should boost me up to around 1tb of storage.  More than enough space to start downloading the internets.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2008/back-in-the-mix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSHMenu FTW</title>
		<link>http://www.fauxzen.com/2008/sshmenu-ftw/</link>
		<comments>http://www.fauxzen.com/2008/sshmenu-ftw/#comments</comments>
		<pubDate>Mon, 04 Feb 2008 15:40:38 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://fauxzen.com/2008/02/04/sshmenu-ftw/</guid>
		<description><![CDATA[I came across SSHMenu, and its is very handy if you have multiple machines that you connect into on a regular basis.  Here is a screenshot of the program to give you an idea. You can get more information on it over at their Official Site.]]></description>
			<content:encoded><![CDATA[<p>I came across SSHMenu, and its is very handy if you have multiple machines that you connect into on a regular basis.  Here is a screenshot of the program to give you an idea.</p>
<p style="text-align: center"><img src="http://cdn.fauxzen.com/wp-content/uploads/2008/02/sshmenu_screenshot.png" alt="SSHMenu" /></p>
<p>You can get more information on it over at their <a href="http://sshmenu.sourceforge.net/" title="SSHMenu">Official Site</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2008/sshmenu-ftw/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Horde Mail SQL SessionHandler issue</title>
		<link>http://www.fauxzen.com/2008/horde-mail-sql-sessionhandler-issue/</link>
		<comments>http://www.fauxzen.com/2008/horde-mail-sql-sessionhandler-issue/#comments</comments>
		<pubDate>Sat, 02 Feb 2008 16:20:46 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[horde]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[squirrelmail]]></category>
		<category><![CDATA[webmail]]></category>

		<guid isPermaLink="false">http://fauxzen.com/2008/02/02/horde-mail-sql-sessionhandler-issue/</guid>
		<description><![CDATA[If you have problems with Horde but SquirrelMail gives you the following message. &#8220;A fatal error has occurred Could not connect to database for SQL SessionHandler. Details have been logged for the administrator.&#8221; Here is what will fix the issue. cd /tmp ls &#124;grep mysql If you see nothing after that then type the following [...]]]></description>
			<content:encoded><![CDATA[<p>If you have problems with Horde but SquirrelMail gives you the following message.</p>
<blockquote><p>&#8220;A fatal error has occurred Could not connect to database for SQL SessionHandler. Details have been logged for the administrator.&#8221;</p></blockquote>
<p>Here is what will fix the issue.</p>
<blockquote><p>cd /tmp<br />
ls |grep mysql</p></blockquote>
<p>If you see nothing after that then type the following</p>
<blockquote><p>ln -s /var/lib/mysql/mysql.sock</p></blockquote>
<p>You will probably want to run /scripts/upcp after this to make sure that it updates everything else.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2008/horde-mail-sql-sessionhandler-issue/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>ktorrent ipfilter issues</title>
		<link>http://www.fauxzen.com/2008/ktorrent-ipfilter-issues/</link>
		<comments>http://www.fauxzen.com/2008/ktorrent-ipfilter-issues/#comments</comments>
		<pubDate>Fri, 01 Feb 2008 20:31:57 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[ipfilter]]></category>
		<category><![CDATA[ktorrent]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://fauxzen.com/2008/02/01/ktorrent-ipfilter-issues/</guid>
		<description><![CDATA[I have been having problems with kTorrent not unzipping the ipfilter list that it downloads and finally came across the solution.  I run gnome on my system and since kTorrent relies on a lot of kde libs and such it is only logical that it might have some issues.  For anyone having problems with the [...]]]></description>
			<content:encoded><![CDATA[<p>I have been having problems with kTorrent not unzipping the ipfilter list that it downloads and finally came across the solution.  I run gnome on my system and since kTorrent relies on a lot of kde libs and such it is only logical that it might have some issues.  For anyone having problems with the ipfilter not converting make sure you have the run the following command on your machine.  In my case I run Ubuntu.</p>
<blockquote><p>sudo apt-get install kdebase-kio-plugins</p></blockquote>
<p>If it still doesn&#8217;t work with this &#8230; umm well I dont have a fix for that.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2008/ktorrent-ipfilter-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Auto reconnect to Screen session</title>
		<link>http://www.fauxzen.com/2008/auto-reconnect-to-screen-session/</link>
		<comments>http://www.fauxzen.com/2008/auto-reconnect-to-screen-session/#comments</comments>
		<pubDate>Thu, 10 Jan 2008 03:39:33 +0000</pubDate>
		<dc:creator>Shelby</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[screen]]></category>

		<guid isPermaLink="false">http://fauxzen.com/2008/01/09/auto-reconnect-to-screen-session/</guid>
		<description><![CDATA[I came across this bit of info which makes life easier. Just add this to your .bash_profile and when you SSH to the server it will auto attach to your screen session if you have one running. if [[ $TERM != &#039;screen&#039; ]] ; then if [[ `screen -list &#124; grep -v &#34;No&#34; &#124; awk [...]]]></description>
			<content:encoded><![CDATA[<p>I came across this bit of info which makes life easier. Just add this to your .bash_profile and when you SSH to the server it will auto attach to your screen session if you have one running.</p>
<pre class="brush: bash; gutter: true">if [[ $TERM != &#039;screen&#039; ]] ; then
if [[ `screen -list | grep -v &quot;No&quot; | awk &#039; { print }&#039; | wc -l` == 0 ]] ; then
screen
else
screen -dr
fi
fi</pre>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fauxzen.com/2008/auto-reconnect-to-screen-session/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using apc
Database Caching 2/88 queries in 0.109 seconds using memcached
Object Caching 1115/1338 objects using apc
Content Delivery Network via Amazon Web Services: CloudFront: cdn.fauxzen.com

Served from: fauxzen.com @ 2012-02-08 00:47:57 -->
