<?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>Fusion Swift</title>
	<atom:link href="http://www.fusionswift.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fusionswift.com</link>
	<description>by tech163</description>
	<lastBuildDate>Thu, 25 Oct 2012 13:01:17 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
		<item>
		<title>Finding Apache Configuration File httpd.conf Location</title>
		<link>http://www.fusionswift.com/2012/08/finding-apache-configuration-file-httpd-conf-location/</link>
		<comments>http://www.fusionswift.com/2012/08/finding-apache-configuration-file-httpd-conf-location/#comments</comments>
		<pubDate>Sun, 19 Aug 2012 11:57:57 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Blog Posts]]></category>
		<category><![CDATA[Apache HTTP]]></category>

		<guid isPermaLink="false">http://www.fusionswift.com/?p=794</guid>
		<description><![CDATA[Finding the location on typical Linux/Unix servers is not very difficult. To do so, go into terminal/SSH and run the command: ps -ef &#124; grep httpd Your output may differ slightly based on your operating system, but it should look something like: 0 48 1 0 7:22AM ?? 0:00.44 /usr/sbin/httpd -D FOREGROUND -D WEBSHARING_ON 70 [...]]]></description>
				<content:encoded><![CDATA[<p>Finding the location on typical Linux/Unix servers is not very difficult. To do so, go into terminal/SSH and run the command:</p>
<pre>ps -ef | grep httpd</pre>
<p>Your output may differ slightly based on your operating system, but it should look something like:</p>
<pre>    0    48     1   0  7:22AM ??         0:00.44 /usr/sbin/httpd -D FOREGROUND -D WEBSHARING_ON
   70   165    48   0  7:22AM ??         0:00.01 /usr/sbin/httpd -D FOREGROUND -D WEBSHARING_ON
  501  1247  1219   0  7:50AM ttys001    0:00.00 grep httpd</pre>
<p>On certain operating systems, it may not return anything. In that case, try command:</p>
<pre>ps -ef | grep apache2</pre>
<p>If you don&#8217;t receive any results from both commands, you may not be running Apache/httpd. Nonetheless, you want to pay close attention to <code>/usr/sbin/httpd</code>. That is the location to your binary file. Run the following command to obtain the location to your configuration file:</p>
<pre>/usr/sbin/httpd -V | grep SERVER_CONFIG_FILE</pre>
<p>You&#8217;ll see something like the following, which will designate the location for your httpd.conf file.</p>
<pre> -D SERVER_CONFIG_FILE="/private/etc/apache2/httpd.conf"</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/2012/08/finding-apache-configuration-file-httpd-conf-location/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Loading IPTables Rules on Boot with CentOS/RHEL</title>
		<link>http://www.fusionswift.com/2012/08/loading-iptables-rules-on-boot-with-centosrhel/</link>
		<comments>http://www.fusionswift.com/2012/08/loading-iptables-rules-on-boot-with-centosrhel/#comments</comments>
		<pubDate>Sun, 19 Aug 2012 06:44:57 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Blog Posts]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[iptables]]></category>

		<guid isPermaLink="false">http://www.fusionswift.com/?p=764</guid>
		<description><![CDATA[Reloading iptables rules on boot for CentOS and RHEL is simpler than for most other Linux Distributions. RHEL and its clone CentOS write its &#8220;permanent&#8221; iptables rules to the  /etc/sysconfig/iptables file. Writing iptables rules is out of the scope of this article, so I won&#8217;t go over that today. After you have applied your respective iptables [...]]]></description>
				<content:encoded><![CDATA[<p>Reloading iptables rules on boot for CentOS and RHEL is simpler than for most other Linux Distributions. RHEL and its clone CentOS write its &#8220;permanent&#8221; iptables rules to the  /etc/sysconfig/iptables file. Writing iptables rules is out of the scope of this article, so I won&#8217;t go over that today.</p>
<p>After you have applied your respective iptables rules, you may wish to check on your iptables rules before you save them. Use the following command to list all the current rules:</p>
<pre>iptables -L</pre>
<p>Use this command to save the iptables rules (the following command is the actual command to save the rules so they are applied on boot)</p>
<pre>/sbin/service iptables save</pre>
<p>The following command would allow you to double check that your rules have been saved. It is similar to <code>iptables -L</code>, but also different. The previous command shows all the rules that are currently in effect, but many of those rules will not be applied after your system has been restarted. The following command will show all the rules that are currently in effect and have been written to disk, meaning they will apply even after a reboot.</p>
<pre>cat /etc/sysconfig/iptables</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/2012/08/loading-iptables-rules-on-boot-with-centosrhel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP &#8211; Import CSV to MySQL</title>
		<link>http://www.fusionswift.com/2012/07/php-import-csv-to-mysql/</link>
		<comments>http://www.fusionswift.com/2012/07/php-import-csv-to-mysql/#comments</comments>
		<pubDate>Fri, 13 Jul 2012 13:31:38 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Blog Posts]]></category>
		<category><![CDATA[CSV]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.fusionswift.com/?p=789</guid>
		<description><![CDATA[The following code snippet can be used to import CSV into MySQL using PHP. &#60;?php $delimiter = ','; $db = new mysqli('localhost', 'username', 'password', 'database'); if (($handle = fopen("import.csv", "r")) !== FALSE) { while (($data = fgetcsv($handle, 1000, $delimiter)) !== FALSE) { foreach($data as $i =&#62; $content) { $data[$i] = $db-&#62;real_escape_string($content); } $db-&#62;query("INSERT INTO mytable [...]]]></description>
				<content:encoded><![CDATA[<p>The following code snippet can be used to import CSV into MySQL using PHP.</p>
<pre>&lt;?php
$delimiter = ',';

$db = new mysqli('localhost', 'username', 'password', 'database');

if (($handle = fopen("import.csv", "r")) !== FALSE) {
	while (($data = fgetcsv($handle, 1000, $delimiter)) !== FALSE) {
		foreach($data as $i =&gt; $content) {
			$data[$i] = $db-&gt;real_escape_string($content);
		}
		$db-&gt;query("INSERT INTO mytable VALUES('" . implode("','", $data) . "');");
	}
	fclose($handle);
}

?&gt;</pre>
<p>A few things to keep in mind:</p>
<ul>
<li>Make sure you change the MySQL login information to your own login information</li>
<li>Make sure you change the table name, in this case, mytable, to your own table name.</li>
<li>For your CSV (comma separated values) file, the delimiter may not necessarily be a comma. Change the $delimiter variable to the one-character delimiter separating the different fields.</li>
<li>This does NOT automatically create a table. You have to manually do that.</li>
<li>Every row would be inserted, so you should manually remove the first row if it is just the column names.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/2012/07/php-import-csv-to-mysql/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Starting Services on Boot with ntsysv on CentOS/RHEL/Fedora</title>
		<link>http://www.fusionswift.com/2012/06/starting-services-on-boot-with-ntsysv/</link>
		<comments>http://www.fusionswift.com/2012/06/starting-services-on-boot-with-ntsysv/#comments</comments>
		<pubDate>Tue, 19 Jun 2012 07:00:51 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Blog Posts]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[RHEL]]></category>

		<guid isPermaLink="false">http://www.fusionswift.com/?p=779</guid>
		<description><![CDATA[ntsysv allows you to easily specify the scripts/services you want to automatically start on boot. For CentOS and RHEL users, you can easily install ntsysv using yum. This should work on Fedora too, as they are in the same boat as RHEL and CentOS. ntsysv is not available on Debian/Ubuntu natively, so this method of starting [...]]]></description>
				<content:encoded><![CDATA[<p>ntsysv allows you to easily specify the scripts/services you want to automatically start on boot. For CentOS and RHEL users, you can easily install ntsysv using yum. This should work on Fedora too, as they are in the same boat as RHEL and CentOS. ntsysv is not available on Debian/Ubuntu natively, so this method of starting services won&#8217;t work.</p>
<pre>yum install ntsysv</pre>
<p>After you have installed it, run the ntsysv command.</p>
<pre>ntsysv</pre>
<p>You&#8217;ll be presented with a window that has a combination of red, blue, and gray.</p>
<p><a href="//www.fusionswift.com/files/2012/06/Screen-Shot-2012-06-24-at-08.png"><img class="alignnone size-full wp-image-782" title="Screen Shot 2012-06-24 at 08" src="//www.fusionswift.com/files/2012/06/Screen-Shot-2012-06-24-at-08.png" alt="" width="550" height="393" /></a></p>
<p>Use the up/down arrow to navigate the list. Use the spacebar to check/uncheck a service. Use your tab to navigate to &#8216;Ok&#8217; and &#8216;Cancel&#8217;. This part is mostly self explanatory.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/2012/06/starting-services-on-boot-with-ntsysv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delete File with Dash/Hyphen in Name Within Linux/Unix</title>
		<link>http://www.fusionswift.com/2012/05/delete-file-with-dashhyphen-in-name-within-linuxunix/</link>
		<comments>http://www.fusionswift.com/2012/05/delete-file-with-dashhyphen-in-name-within-linuxunix/#comments</comments>
		<pubDate>Wed, 16 May 2012 12:01:26 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Blog Posts]]></category>
		<category><![CDATA[bash]]></category>

		<guid isPermaLink="false">http://www.fusionswift.com/?p=760</guid>
		<description><![CDATA[If you have a file named &#8220;-file&#8221; without the quotes, you would typically delete it using: rm -rf -file Except that doesn&#8217;t work. My CentOS complained to me with the following message (though not all operating systems may supply this, so this is mainly for those whose OS does not supply this tip): rm: invalid [...]]]></description>
				<content:encoded><![CDATA[<p>If you have a file named &#8220;-file&#8221; without the quotes, you would typically delete it using:</p>
<pre>rm -rf -file</pre>
<p>Except that doesn&#8217;t work. My CentOS complained to me with the following message (though not all operating systems may supply this, so this is mainly for those whose OS does not supply this tip):</p>
<pre>rm: invalid option -- 'l'
Try `rm ./-file' to remove the file `-file'.
Try `rm --help' for more information.</pre>
<p>The suggested tip here works well. Simply running the following command should delete the &#8220;-file&#8221; file.</p>
<pre>rm -rf ./-file</pre>
<p>Keep in mind this limitation does not apply only to the rm command, but a large number of commands including touch and others. It is the most annoying for the rm command, since you are trying to remove the file. For these other commands, you would also have to prepend the file name with a ./ in order for this to work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/2012/05/delete-file-with-dashhyphen-in-name-within-linuxunix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac Trick &#8211; Invert Screen Colors</title>
		<link>http://www.fusionswift.com/2012/05/mac-trick-invert-screen-colors/</link>
		<comments>http://www.fusionswift.com/2012/05/mac-trick-invert-screen-colors/#comments</comments>
		<pubDate>Fri, 11 May 2012 02:19:39 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Blog Posts]]></category>
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://www.fusionswift.com/?p=757</guid>
		<description><![CDATA[To invert the colors on your mac, use the shortcut ⌘ (command key) + option/alt + control + 8 (all at the same time). For those not confortable with shortcuts, you can do the same by going to  (Apple logo at upper-left hand corner_ -&#62; System Preferences, and clicking &#8220;Universal Access&#8221; under Personal. From [...]]]></description>
				<content:encoded><![CDATA[<p>To invert the colors on your mac, use the shortcut ⌘ (command key) + option/alt + control + 8 (all at the same time). For those not confortable with shortcuts, you can do the same by going to  (Apple logo at upper-left hand corner_ -&gt; System Preferences, and clicking &#8220;Universal Access&#8221; under Personal. From there, checking &#8216;White on Black&#8217; will have the same effect.</p>
<p><img class="alignnone size-full wp-image-763" title="Screen Shot 2012-05-10 at 22.16" src="//www.fusionswift.com/files/2012/05/Screen-Shot-2012-05-10-at-22.16.jpg" alt="" width="550" height="486" /></p>
<p>Take a look at the two images below of what my screen normally looks like, and what my screen looks like when the colors are inverted</p>
<p><img class="alignnone size-full wp-image-758" title="Screen Shot 2012-05-09 at 21.15.55" src="//www.fusionswift.com/files/2012/05/Screen-Shot-2012-05-09-at-21.15.55.jpg" alt="" width="550" height="309" /></p>
<p><img class="alignnone size-full wp-image-759" title="Screen Shot 2012-05-09 at 21.15.56" src="//www.fusionswift.com/files/2012/05/Screen-Shot-2012-05-09-at-21.15.56.jpg" alt="" width="550" height="309" /></p>
<p>Do keep in mind if you take any screenshots in the &#8216;inverted color&#8217; mode, the screenshot will not come out with inverted colors. If you would like to have inverted colored screenshots, you must manually invert the image in an image editing program.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/2012/05/mac-trick-invert-screen-colors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Recordmydesktop on CentOS and RHEL</title>
		<link>http://www.fusionswift.com/2012/04/installing-recordmydesktop-on-centos-and-rhel/</link>
		<comments>http://www.fusionswift.com/2012/04/installing-recordmydesktop-on-centos-and-rhel/#comments</comments>
		<pubDate>Sun, 29 Apr 2012 11:50:40 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Blog Posts]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[recordmydesktop]]></category>
		<category><![CDATA[RHEL]]></category>

		<guid isPermaLink="false">http://www.fusionswift.com/?p=690</guid>
		<description><![CDATA[Recordmydesktop is a command line (and GUI) program that can be used to record a video of the CentOS Desktop (among other distros as well). To install it on CentOS, begin by installing the required dependancies: yum install gcc make libXext-devel libSM-devel libICE-devel zlib-devel libXfixes-devel libXdamage-devel libvorbis-devel libtheora-devel Because CentOS does not official an RPM [...]]]></description>
				<content:encoded><![CDATA[<p>Recordmydesktop is a command line (and GUI) program that can be used to record a video of the CentOS Desktop (among other distros as well). To install it on CentOS, begin by installing the required dependancies:</p>
<pre>yum install gcc make libXext-devel libSM-devel libICE-devel zlib-devel libXfixes-devel libXdamage-devel libvorbis-devel libtheora-devel</pre>
<p>Because CentOS does not official an RPM for recordmydesktop, we will have to install it from source. We will download a tar of the source code, untar the source, and remove the tar file:</p>
<pre>wget http://downloads.sourceforge.net/project/recordmydesktop/recordmydesktop/0.3.8.1/recordmydesktop-0.3.8.1.tar.gz
tar xf recordmydesktop-0.3.8.1.tar.gz
rm -rf recordmydesktop-0.3.8.1.tar.gz</pre>
<p>Now, let&#8217;s go into the folder and install Recordmydesktop.</p>
<pre>cd recordmydesktop-0.3.8.1
./configure
make
make install</pre>
<p>If you did not set a custom prefix, running /usr/bin/recordmydesktop should begin recording your desktop! Use the following command (just as with most commands) to view the options available:</p>
<pre>recordmydesktop --help</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/2012/04/installing-recordmydesktop-on-centos-and-rhel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List of Google April Fools Pranks 2012</title>
		<link>http://www.fusionswift.com/2012/04/list-of-google-april-fools-pranks-2012/</link>
		<comments>http://www.fusionswift.com/2012/04/list-of-google-april-fools-pranks-2012/#comments</comments>
		<pubDate>Sun, 01 Apr 2012 12:51:44 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Blog Posts]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.fusionswift.com/?p=737</guid>
		<description><![CDATA[Here&#8217;s a quick list of Google&#8217;s April Fools pranks for this year, 2012! Google Racing &#8211; Google is collaborating with NASCAR, and their self driving car will be taking part of the NASCAR race. They even have a video on the official NASCAR website describing their involvement! Really Advanced Search &#8211; Allows you to be [...]]]></description>
				<content:encoded><![CDATA[<p>Here&#8217;s a quick list of Google&#8217;s April Fools pranks for this year, 2012!</p>
<p><a href="http://www.google.com/racing/" target="_blank">Google Racing</a> &#8211; Google is collaborating with NASCAR, and their self driving car will be taking part of the NASCAR race. They even have a video on the official NASCAR website describing their involvement!</p>
<p><img class="alignnone size-full wp-image-744" title="Screen Shot 2012-04-01 at 08.39.36" src="//www.fusionswift.com/files/2012/04/Screen-Shot-2012-04-01-at-08.39.36.jpg" alt="" width="550" height="373" /></p>
<p><a href="http://www.google.com/js/reallyadvanced.html" target="_blank">Really Advanced Search</a> &#8211; Allows you to be real specific about what you want to search for, right inside of Google.</p>
<p><img class="alignnone size-full wp-image-743" title="Screen Shot 2012-04-01 at 08.38.52" src="//www.fusionswift.com/files/2012/04/Screen-Shot-2012-04-01-at-08.38.52.jpg" alt="" width="550" height="409" /></p>
<p><a href="https://mail.google.com/mail/help/promos/tap/index.html" target="_blank">Gmail Tap</a> &#8211; Use just two fingers to discreetly type an entire message in binary. Not only that, the Double Black Diamond mode allows you to type up to EIGHT messages at once!</p>
<p><img class="alignnone size-full wp-image-739" title="Screen Shot 2012-04-01 at 08.29.39" src="//www.fusionswift.com/files/2012/04/Screen-Shot-2012-04-01-at-08.29.39.jpg" alt="" width="550" height="373" /></p>
<p><a href="http://www.google.com/apps/intl/en/business/jargon.html" target="_blank">Jargon-Bot for Google Apps</a> - Jargon-Bot for Google Apps instantly recognizes business terms and provides clear jargon translation. It works on all your devices, no matter where you are. The official page provides a few funny examples of Jargon-Bot twisting what folks are saying to their most probable intention.</p>
<p><img class="alignnone size-full wp-image-745" title="Screen Shot 2012-04-01 at 08.43.44" src="//www.fusionswift.com/files/2012/04/Screen-Shot-2012-04-01-at-08.43.44.jpg" alt="" width="550" height="268" /></p>
<p><a href="http://www.google.com/adwords/extensions/teleport.html" target="_blank">Click to Teleport</a> &#8211; Click-To-Teleport extensions allow potential customers to instantly teleport to your location through an AdWord ad. This brand new technology puts an end to inaccurate location targeting, and introduces a revolutionized way to bring in clients.</p>
<p><img class="alignnone size-full wp-image-750" title="Screen Shot 2012-04-01 at 08.56.02" src="//www.fusionswift.com/files/2012/04/Screen-Shot-2012-04-01-at-08.56.02.jpg" alt="" width="550" height="323" /></p>
<p><a href="https://www.google.com/intl/en/chrome/multitask.html" target="_blank">Chrome Multitask Mode</a> &#8211; Multitask mode allows you access to two mice instead of one. When a couple only has one mouse instead of two, you can both use it at the same time!</p>
<p><img class="alignnone size-full wp-image-742" title="Screen Shot 2012-04-01 at 08.36.02" src="//www.fusionswift.com/files/2012/04/Screen-Shot-2012-04-01-at-08.36.02.jpg" alt="" width="550" height="365" /></p>
<p><a href="http://www.google.com/search?q=weather+12345" target="_blank">Google Weather Control</a> &#8211; Don&#8217;t like the weather? Simply change it!</p>
<p><img class="alignnone size-full wp-image-740" title="Screen Shot 2012-04-01 at 08.31.48" src="//www.fusionswift.com/files/2012/04/Screen-Shot-2012-04-01-at-08.31.48.jpg" alt="" width="550" height="285" /></p>
<p><a href="http://www.howtogomo.com/goro/d/" target="_blank">Google RoGo</a> &#8211; Many folks using modern browsers have trouble accessing websites. However, Google&#8217;s studies have shown that 100% of folks using rotary phones have trouble accessing websites. Google RoGo aims to fix the problem folks using rotary phones experience when browsing the internet.</p>
<p><img class="alignnone size-full wp-image-749" title="Screen Shot 2012-04-01 at 08.52.08" src="//www.fusionswift.com/files/2012/04/Screen-Shot-2012-04-01-at-08.52.08.jpg" alt="" width="550" height="288" /></p>
<p><a href="http://www.google.com/fiber/kansascity/index.html" target="_blank">Google Fiber</a> (nutrition bar) &#8211; Google is now getting involved with the distribution of a whole new type of fiber. Their new nutrition bar will give you up to 100 times the energy and productivity than what you have experienced before.</p>
<p><img class="alignnone size-full wp-image-747" title="Screen Shot 2012-04-01 at 08.49.41" src="//www.fusionswift.com/files/2012/04/Screen-Shot-2012-04-01-at-08.49.41.jpg" alt="" width="550" height="300" /></p>
<p><a href="http://maps.google.com/?t=8" target="_blank">8 bit Google Maps</a> &#8211; view the entire world in 8 bit Nintendo Style</p>
<p><img class="alignnone size-full wp-image-741" title="Screen Shot 2012-04-01 at 08.34.07" src="//www.fusionswift.com/files/2012/04/Screen-Shot-2012-04-01-at-08.34.07.jpg" alt="" width="550" height="281" /></p>
<p>Google Voice for Pets &#8211; Google Voice for Pets will allow your cats and dog to text. Together. Google&#8217;s Special Voice Communication collars will allow dogs to communicate with cats and other dogs via Wifi. Google&#8217;s Voice Transcription software also recognizes pet lingo, so can transcribe their nonsense into plain English!</p>
<p><img class="alignnone size-full wp-image-746" title="kona_fullsize" src="//www.fusionswift.com/files/2012/04/kona_fullsize.jpg" alt="" width="550" height="291" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/2012/04/list-of-google-april-fools-pranks-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thunderbird and Firefox 10 in CentOS and RHEL</title>
		<link>http://www.fusionswift.com/2012/02/thunderbird-and-firefox-10-in-centos-and-rhel/</link>
		<comments>http://www.fusionswift.com/2012/02/thunderbird-and-firefox-10-in-centos-and-rhel/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 02:14:33 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Blog Posts]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[RHEL]]></category>
		<category><![CDATA[thunderbird]]></category>

		<guid isPermaLink="false">http://www.fusionswift.com/?p=716</guid>
		<description><![CDATA[CentOS 6&#8242;s default repository still only has Firefox/Thunderbird version 3.1, and a lot of newer and greater versions has been released since then. To begin with, make sure you have the older version of Firefox/Thunderbird installed. This is necessary, as we are going to use their launch scripts as a template to create the launch [...]]]></description>
				<content:encoded><![CDATA[<p>CentOS 6&#8242;s default repository still only has Firefox/Thunderbird version 3.1, and a lot of newer and greater versions has been released since then.</p>
<p>To begin with, make sure you have the older version of Firefox/Thunderbird installed. This is necessary, as we are going to use their launch scripts as a template to create the launch scripts for the newer version.</p>
<p>To shorten things up, I will refer to Thunderbird as TB, and Firefox as FF. For the most part, I will refer to TB instead of both TB and FF. All you have to do is change where I write &#8216;thunderbird&#8217; to &#8216;firefox&#8217; and it will most likely work. To begin with, you want to download the latest version of Thunderbird or Firefox.</p>
<ul>
<li>32 bit TB:
<pre>wget 'http://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/10.0-real/linux-i686/en-US/thunderbird-10.0.tar.bz2'</pre>
</li>
<li>64 bit TB:
<pre>wget 'http://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/10.0-real/linux-x86_64/en-US/thunderbird-10.0.tar.bz2'</pre>
</li>
<li>32 bit FF:
<pre>wget 'http://releases.mozilla.org/pub/mozilla.org/firefox/releases/10.0/linux-i686/en-US/firefox-10.0.tar.bz2'</pre>
</li>
<li>64 bit FF:
<pre>wget 'http://releases.mozilla.org/pub/mozilla.org/firefox/releases/10.0/linux-i686/en-US/firefox-10.0.tar.bz2'</pre>
</li>
</ul>
<p>Untar and unzip the file you just downloaded (as said before, name may vary with the product you are installing). Afterwards, delete the tar file, which is no longer necessary.</p>
<pre>tar xf thunderbird-10.0.tar.bz2
rm -rf thunderbird-10.0.tar.bz2</pre>
<p>The simplest way is to delete the current TB/FF install, and move the newly downloaded files to the old directory. This command will vary for 32 and 64 bit systems. IMPORTANT: For Firefox, change the number 3.1 to 3.6 for both architectures. As for the commands, for 32 bit:</p>
<pre>rm -rf /usr/lib/thunderbird-3.1/*
mv thunderbird/* /usr/lib/thunderbird-3.1/</pre>
<p>For 64 bit systems:</p>
<pre>rm -rf /usr/lib64/thunderbird-3.1/*
mv thunderbird/* /usr/lib64/thunderbird-3.1/</pre>
<p>Congratulations! You are more or less done. Now, you may want to get rid of the empty FF/TB folder by running the command:</p>
<pre>rm -rf thunderbird</pre>
<p>That&#8217;s pretty much all. Running command &#8216;thunderbird&#8217; or going to &#8216;Applications -&gt; Internet -&gt; Thunderbird Email&#8217; will launch the newly installed version!</p>
<p><img class="alignnone size-full wp-image-717" title="TB 10" src="//www.fusionswift.com/files/2012/02/TB-10.jpg" alt="" width="550" height="413" /></p>
<p><img class="alignnone size-full wp-image-718" title="FF 10" src="//www.fusionswift.com/files/2012/02/FF-10.jpg" alt="" width="550" height="413" /></p>
<p>Beyond TB/FF 10, the &#8216;automatic upgrade&#8217; feature should kick in. As you can see in the two screenshots above, TB and FF will automatically look for new versions, and will automatically upgrade when they exist. This way, you can run much newer versions than those found in the CentOS/RHEL repo.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/2012/02/thunderbird-and-firefox-10-in-centos-and-rhel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using SOCKS Proxy in Firefox</title>
		<link>http://www.fusionswift.com/2011/10/using-socks-proxy-in-firefox/</link>
		<comments>http://www.fusionswift.com/2011/10/using-socks-proxy-in-firefox/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 00:24:54 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Blog Posts]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[SOCKS Proxy]]></category>

		<guid isPermaLink="false">http://www.fusionswift.com/?p=692</guid>
		<description><![CDATA[Firefox can be configured to use various different types of proxies. To configure Firefox to use a SOCKS proxy, open the Firefox Preferences/Settings window. In Mac OS X, go to Firefox -&#62; Preferences. In the Windows version of Firefox, go to Tools -&#62; Options. Go under the Advanced tab, and under the Network tab. From [...]]]></description>
				<content:encoded><![CDATA[<p>Firefox can be configured to use various different types of proxies. To configure Firefox to use a SOCKS proxy, open the Firefox Preferences/Settings window. In Mac OS X, go to <strong>Firefox -&gt; Preferences</strong>. In the Windows version of Firefox, go to <strong>Tools -&gt; Options</strong>.</p>
<p>Go under the <strong>Advanced</strong> tab, and under the <strong>Network</strong> tab. From there, click on <strong>Settings</strong>.</p>
<p><img class="alignnone size-full wp-image-694" title="Screen Shot 2011-10-08 at 20.33" src="//www.fusionswift.com/files/2011/10/Screen-Shot-2011-10-08-at-20.33.jpg" alt="" width="550" height="524" /></p>
<p>Choose <strong>Manual proxy configuration</strong>. Leave everything empty except the <strong>SOCKS Host</strong> and <strong>Port</strong>. The SOCKS host and port should be the respective host and port.</p>
<p><img class="alignnone size-full wp-image-695" title="Screen Shot 2011-10-08 at 20.33b" src="//www.fusionswift.com/files/2011/10/Screen-Shot-2011-10-08-at-20.33b.jpg" alt="" width="550" height="524" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/2011/10/using-socks-proxy-in-firefox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
