<?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>nothingOS</title>
	<atom:link href="http://techgeek.mynothing.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://techgeek.mynothing.net</link>
	<description>opensource</description>
	<lastBuildDate>Wed, 04 Apr 2012 08:03:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Android : Couldn’t install on USB storage or SD card</title>
		<link>http://techgeek.mynothing.net/android-couldnt-install-on-usb-storage-or-sd-card/</link>
		<comments>http://techgeek.mynothing.net/android-couldnt-install-on-usb-storage-or-sd-card/#comments</comments>
		<pubDate>Wed, 04 Apr 2012 08:01:14 +0000</pubDate>
		<dc:creator>adq890</dc:creator>
				<category><![CDATA[android]]></category>

		<guid isPermaLink="false">http://techgeek.mynothing.net/?p=599</guid>
		<description><![CDATA[Error message : “Couldn’t install on USB storage or SD card” The solution is to connect your device to your PC and manually delete the “smdl2temp1” file. The file is likely to reside in 2 locations: 1. /sdcard/.android_secure: this is an invisible folder on your SD card, which you can access with any file manager, [...]]]></description>
		<wfw:commentRss>http://techgeek.mynothing.net/android-couldnt-install-on-usb-storage-or-sd-card/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install and configure Jail &#8211; FreeBSD</title>
		<link>http://techgeek.mynothing.net/install-jail-freebsd/</link>
		<comments>http://techgeek.mynothing.net/install-jail-freebsd/#comments</comments>
		<pubDate>Fri, 30 Mar 2012 15:31:12 +0000</pubDate>
		<dc:creator>adq890</dc:creator>
				<category><![CDATA[config]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[freebsd jail]]></category>
		<category><![CDATA[jail]]></category>

		<guid isPermaLink="false">http://techgeek.mynothing.net/?p=597</guid>
		<description><![CDATA[Once FreeBSD is installed start making the needed directories. #mkdir /jail/master #mkdir /jail/master/usr/ #cp -R /bin/ /jail/master/bin #cp -R /etc/ /jail/master/etc #cp -R /lib/ /jail/master/lib #cp -R /libexec/ /jail/master/libexec #cp -R /sbin/ /jail/master/sbin #cp -R /usr/share /jail/master/usr/share #cp -R /usr/bin /jail/master/usr/bin #cp -R /usr/sbin /jail/master/usr/sbin #cp -R /usr/lib /jail/master/usr/lib Once you have all the need [...]]]></description>
		<wfw:commentRss>http://techgeek.mynothing.net/install-jail-freebsd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>General guide &#8211; FreeBSD</title>
		<link>http://techgeek.mynothing.net/free-bsd/</link>
		<comments>http://techgeek.mynothing.net/free-bsd/#comments</comments>
		<pubDate>Tue, 13 Mar 2012 07:56:34 +0000</pubDate>
		<dc:creator>adq890</dc:creator>
				<category><![CDATA[freebsd]]></category>

		<guid isPermaLink="false">http://techgeek.mynothing.net/?p=592</guid>
		<description><![CDATA[http://www.cyberciti.biz/faq/freebsd-installing-webmin/ http://www.cyberciti.biz/faq/freebsd-install-nginx-webserver/ http://www.zytrax.com/books/dns/ch5/ http://www.freebsd.org/doc/handbook/jails-application.html http://www.cyberciti.biz/howto/cookbook/2006/03/install-mysql-server-using-binary.php http://www.cyberciti.biz/faq/star-stop-bsd-ftp-service/]]></description>
		<wfw:commentRss>http://techgeek.mynothing.net/free-bsd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Virtual Host in Tomcat</title>
		<link>http://techgeek.mynothing.net/virtual-host-in-tomcat/</link>
		<comments>http://techgeek.mynothing.net/virtual-host-in-tomcat/#comments</comments>
		<pubDate>Mon, 27 Feb 2012 04:09:36 +0000</pubDate>
		<dc:creator>adq890</dc:creator>
				<category><![CDATA[apache]]></category>
		<category><![CDATA[config]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[tomcat]]></category>

		<guid isPermaLink="false">http://techgeek.mynothing.net/?p=590</guid>
		<description><![CDATA[Edit server.xml ( /usr/tomcat/&#8230; )configuration file: # vim /usr/tomcat/conf/server.xml Add this line: &#60;Engine&#62; &#60;Service&#62; &#60;Server&#62; &#60;!-- This Host is the first "Virtual Host": www.example.com --&#62;  &#60;Host name="www.example.com" appBase="/home/example/webapp"&#62;  &#60;Context path="" docBase=""/&#62;  &#60;/Host&#62; &#60;Engine&#62; &#60;Service&#62; &#60;Server&#62; Sample : &#60;Host name="domain1.com" debug="0" appBase="webapps" unpackWARs="true"&#62; &#60;Alias&#62;www.domain1.com&#60;/Alias&#62; &#60;Logger className="org.apache.catalina.logger.FileLogger" directory="logs" prefix="virtual_log1." suffix=".log" timestamp="true"/&#62; &#60;Context path="" docBase="/var/tomcat4/webapps/domain1" debug="0" reloadable="true"/&#62; &#60;/Host&#62; &#60;Host name="domain2.com" [...]]]></description>
		<wfw:commentRss>http://techgeek.mynothing.net/virtual-host-in-tomcat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configure Static IP Address On Linux</title>
		<link>http://techgeek.mynothing.net/configure-static-ip-address-on-linux/</link>
		<comments>http://techgeek.mynothing.net/configure-static-ip-address-on-linux/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 04:07:28 +0000</pubDate>
		<dc:creator>adq890</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://techgeek.mynothing.net/?p=588</guid>
		<description><![CDATA[http://www.thewebmasterscafe.net/webhosting/how-to-configure-static-ip-address-on-centos-linux.html]]></description>
		<wfw:commentRss>http://techgeek.mynothing.net/configure-static-ip-address-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solaris &#8211;  How to Setup DNS Client configuration / name server</title>
		<link>http://techgeek.mynothing.net/solaris-how-to-setup-dns-client-configuration-name-server/</link>
		<comments>http://techgeek.mynothing.net/solaris-how-to-setup-dns-client-configuration-name-server/#comments</comments>
		<pubDate>Fri, 17 Feb 2012 08:45:47 +0000</pubDate>
		<dc:creator>adq890</dc:creator>
				<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://techgeek.mynothing.net/?p=582</guid>
		<description><![CDATA[http://www.cyberciti.biz/tips/solaris-dns-client-configuration.html]]></description>
		<wfw:commentRss>http://techgeek.mynothing.net/solaris-how-to-setup-dns-client-configuration-name-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clear OS &#8211; PPTP VPN Connects but can&#8217;t access PC&#8217;s inside LAN</title>
		<link>http://techgeek.mynothing.net/clear-os-pptp-vpn-connects-but-cant-access-pcs-inside-lan/</link>
		<comments>http://techgeek.mynothing.net/clear-os-pptp-vpn-connects-but-cant-access-pcs-inside-lan/#comments</comments>
		<pubDate>Thu, 16 Feb 2012 06:35:11 +0000</pubDate>
		<dc:creator>adq890</dc:creator>
				<category><![CDATA[firewall]]></category>
		<category><![CDATA[linux distro]]></category>
		<category><![CDATA[clearOS]]></category>
		<category><![CDATA[PPTP VPN]]></category>
		<category><![CDATA[VPN ClearOS]]></category>

		<guid isPermaLink="false">http://techgeek.mynothing.net/?p=574</guid>
		<description><![CDATA[Issue : Can&#8217;t access / ping client in same network when connected thru PPTP VPN from public only can ping firewall IP. Solved : On the XP machine (works on Vista and 7 also) go to the properties of the VPN connection. Click on the Networking tab and double click Internet Protocol Version 4 (TCP/IPv4). [...]]]></description>
		<wfw:commentRss>http://techgeek.mynothing.net/clear-os-pptp-vpn-connects-but-cant-access-pcs-inside-lan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tier 1 / Tier 2 / Tier 3 / Tier 4 Data Center</title>
		<link>http://techgeek.mynothing.net/tier-1-tier-2-tier-3-tier-4-data-center/</link>
		<comments>http://techgeek.mynothing.net/tier-1-tier-2-tier-3-tier-4-data-center/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 01:22:22 +0000</pubDate>
		<dc:creator>adq890</dc:creator>
				<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://techgeek.mynothing.net/?p=577</guid>
		<description><![CDATA[Q. What is data center tiers? What is tier 1 data center? Which tier / level is the best for maximum uptime? A. Tier 1 to 4 data center is nothing but a standardized methodology used to define uptime of data center. This is useful for measuring:a) Data center performance b) Investment c) ROI (return on investment)Tier [...]]]></description>
		<wfw:commentRss>http://techgeek.mynothing.net/tier-1-tier-2-tier-3-tier-4-data-center/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPV6 &#8211; Launch 6.6.2012</title>
		<link>http://techgeek.mynothing.net/572/</link>
		<comments>http://techgeek.mynothing.net/572/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 08:16:27 +0000</pubDate>
		<dc:creator>adq890</dc:creator>
				<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://techgeek.mynothing.net/?p=571</guid>
		<description><![CDATA[THE FUTURE IS FOREVER 6 JUNE 2012 Major Internet service providers (ISPs), home networking equipment manufacturers, and web companies around the world are coming together to permanently enable IPv6 for their products and services by 6 June 2012. Organized by the Internet Society, and building on the successful one-day World IPv6 Day event held on [...]]]></description>
		<wfw:commentRss>http://techgeek.mynothing.net/572/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mod_evasive &#8211; Prevent DDOS Attack</title>
		<link>http://techgeek.mynothing.net/mod_evasive-prevent-ddos-attack/</link>
		<comments>http://techgeek.mynothing.net/mod_evasive-prevent-ddos-attack/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 06:42:37 +0000</pubDate>
		<dc:creator>adq890</dc:creator>
				<category><![CDATA[apache]]></category>
		<category><![CDATA[centos | redhat | fedora]]></category>
		<category><![CDATA[config]]></category>

		<guid isPermaLink="false">http://techgeek.mynothing.net/?p=561</guid>
		<description><![CDATA[Installing Modevasive mod_evasive is an evasive maneuvers module for Apache to provide evasive action in the event of an HTTP DoS or DDoS attack or brute force attack. It is also designed to be a detection tool, and can be easily configured to talk to ipchains, firewalls, routers, and etcetera. -&#62; Execute the following commands [...]]]></description>
		<wfw:commentRss>http://techgeek.mynothing.net/mod_evasive-prevent-ddos-attack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

