<?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>spechal.com &#187; Operating Systems</title>
	<atom:link href="http://spechal.com/category/operating-systems/feed/" rel="self" type="application/rss+xml" />
	<link>http://spechal.com</link>
	<description>[spesh-uhl]</description>
	<lastBuildDate>Sat, 24 Dec 2011 03:41:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Use HackIt and Revolution ROM to sexify your HTC Inspire</title>
		<link>http://spechal.com/2011/05/15/use-hackit-and-revolution-rom-to-sexify-your-htc-inspire/</link>
		<comments>http://spechal.com/2011/05/15/use-hackit-and-revolution-rom-to-sexify-your-htc-inspire/#comments</comments>
		<pubDate>Sun, 15 May 2011 07:21:19 +0000</pubDate>
		<dc:creator>Spechal</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[HTC]]></category>
		<category><![CDATA[root]]></category>

		<guid isPermaLink="false">http://spechal.com/?p=282</guid>
		<description><![CDATA[Got an HTC Inspire 4G? Tired of all the bloatware and running apps. Tired of have to kill those apps over and over? Root your phone (root is the superuser account in Linux, which Android runs on)! This voids all &#8230; <a href="http://spechal.com/2011/05/15/use-hackit-and-revolution-rom-to-sexify-your-htc-inspire/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Got an HTC Inspire 4G?  Tired of all the bloatware and running apps.  Tired of have to kill those apps over and over?  Root your phone (root is the superuser account in Linux, which Android runs on)!  This voids all warranties, but it is worth it.  Use HackIt to permanently root your HTC, then download the HTC Revolution ROM and flash your phone with it.  Then install Terminal Emulator to access your phones root shell.  You&#8217;ll also want Gemini App Manager (Free), hit Menu to go into Expert Mode and you can uninstall ANYTHING, even your keyboard (which you should NOT do).</p>
<p>All you need to know is located at this web site: http://www.addictivetips.com/mobile/install-android-revolution-4g-rom-on-htc-inspire-4g/</p>
]]></content:encoded>
			<wfw:commentRss>http://spechal.com/2011/05/15/use-hackit-and-revolution-rom-to-sexify-your-htc-inspire/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Set static IP address in Ubuntu</title>
		<link>http://spechal.com/2011/03/20/set-static-ip-address-in-ubuntu/</link>
		<comments>http://spechal.com/2011/03/20/set-static-ip-address-in-ubuntu/#comments</comments>
		<pubDate>Sun, 20 Mar 2011 06:05:42 +0000</pubDate>
		<dc:creator>Spechal</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[ip]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://spechal.com/?p=238</guid>
		<description><![CDATA[You will need to edit your /etc/network/interfaces file sudo nano /etc/network/interfaces auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 192.168.1.10 netmask 255.255.255.0 gateway 192.168.1.1 network 192.168.1.0 broadcast 192.168.1.255 Restart networking via sudo /etc/init.d/networking restart]]></description>
			<content:encoded><![CDATA[<p>You will need to edit your /etc/network/interfaces file</p>
<pre>sudo nano /etc/network/interfaces</pre>
<pre>auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
address 192.168.1.10
netmask 255.255.255.0
gateway 192.168.1.1
network 192.168.1.0
broadcast 192.168.1.255</pre>
<p>Restart networking via</p>
<pre>sudo /etc/init.d/networking restart</pre>
]]></content:encoded>
			<wfw:commentRss>http://spechal.com/2011/03/20/set-static-ip-address-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Node.js and Socket.io on Ubuntu</title>
		<link>http://spechal.com/2011/03/19/installing-node-js-and-socket-io-on-ubuntu/</link>
		<comments>http://spechal.com/2011/03/19/installing-node-js-and-socket-io-on-ubuntu/#comments</comments>
		<pubDate>Sat, 19 Mar 2011 13:15:42 +0000</pubDate>
		<dc:creator>Spechal</dc:creator>
				<category><![CDATA[Commands]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Node.js / Socket.io]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[nodejs]]></category>
		<category><![CDATA[socketio]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://spechal.com/?p=235</guid>
		<description><![CDATA[Issue the following on the command line: cd ~ sudo apt-get install libv8-2.0.3 libv8-dev libv8-dbg libssl-dev curl wget http://nodejs.org/dist/node-v0.4.3.tar.gz tar zxvf node-v0.4.3.tar.gz cd node-v0.4.3 ./configure &#038;&#038; make &#038;&#038; make install sudo curl http://npmjs.org/install.sh &#124; sudo sh sudo npm install socket.io &#8230; <a href="http://spechal.com/2011/03/19/installing-node-js-and-socket-io-on-ubuntu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Issue the following on the command line:</p>
<pre>cd ~
sudo apt-get install libv8-2.0.3 libv8-dev libv8-dbg libssl-dev curl
wget http://nodejs.org/dist/node-v0.4.3.tar.gz
tar zxvf node-v0.4.3.tar.gz
cd node-v0.4.3
./configure &#038;&#038; make &#038;&#038; make install
sudo curl http://npmjs.org/install.sh | sudo sh
sudo npm install socket.io
</pre>
<p>First we change to our home directory via cd ~ &#8230; even though the tilda in the code above looks like a hyphen.  Then we install Google V8, SSL development files and cURL.  Next we grab Node.js, configure and install it.  Nearly last, we download and install npm.  Finally, we tell npm to install socket.io for us.</p>
<p>fin.</p>
]]></content:encoded>
			<wfw:commentRss>http://spechal.com/2011/03/19/installing-node-js-and-socket-io-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

