<?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>Make Money Blogging Tips For Free &#187; SSH</title>
	<atom:link href="http://webmasterweblog.com/category/ssh/feed" rel="self" type="application/rss+xml" />
	<link>http://webmasterweblog.com</link>
	<description>Experiences of a Webmaster</description>
	<lastBuildDate>Mon, 01 Mar 2010 13:16:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Update GeoIP.dat automatically</title>
		<link>http://webmasterweblog.com/update-geoipdat-automatically.html</link>
		<comments>http://webmasterweblog.com/update-geoipdat-automatically.html#comments</comments>
		<pubDate>Tue, 09 Jun 2009 15:43:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://webmasterweblog.com/?p=174</guid>
		<description><![CDATA[Some of you will use GeoIP for geotargeting (a tutorial about this will follow). 
One of the few things you&#8217;d have to manually if there was no cronjob, is to update the GeoIP.dat regularly.
Put this little sh script into cron.daily and it will be updated automatically:

#!/bin/bash
&#160;
UNGZIPPED_FILE=GeoIP.dat
GZIP_FILE=GeoIP.dat.gz
REMOTE_PATH=http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/
LOCAL_PATH=/tmp/
LOCAL_FINAL_PATH=/www/vhtdocs/geo_ip/ #update this to your directory of choice
&#160;
cd $LOCAL_PATH
wget -N -q $REMOTE_PATH$GZIP_FILE
gunzip $GZIP_FILE
cp -f $UNGZIPPED_FILE $LOCAL_FINAL_PATH$UNGZIPPED_FILE
&#160;
exit

]]></description>
			<content:encoded><![CDATA[<p>Some of you will use GeoIP for geotargeting (a tutorial about this will follow). </p>
<p>One of the few things you&#8217;d have to manually if there was no cronjob, is to update the GeoIP.dat regularly.</p>
<p>Put this little sh script into cron.daily and it will be updated automatically:</p>

<div class="wp_syntax"><div class="code"><pre class="php php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/bash</span>
&nbsp;
UNGZIPPED_FILE<span style="color: #339933;">=</span>GeoIP<span style="color: #339933;">.</span>dat
GZIP_FILE<span style="color: #339933;">=</span>GeoIP<span style="color: #339933;">.</span>dat<span style="color: #339933;">.</span>gz
REMOTE_PATH<span style="color: #339933;">=</span>http<span style="color: #339933;">:</span><span style="color: #666666; font-style: italic;">//geolite.maxmind.com/download/geoip/database/GeoLiteCountry/</span>
LOCAL_PATH<span style="color: #339933;">=/</span>tmp<span style="color: #339933;">/</span>
LOCAL_FINAL_PATH<span style="color: #339933;">=/</span>www<span style="color: #339933;">/</span>vhtdocs<span style="color: #339933;">/</span>geo_ip<span style="color: #339933;">/</span> <span style="color: #666666; font-style: italic;">#update this to your directory of choice</span>
&nbsp;
cd <span style="color: #000088;">$LOCAL_PATH</span>
wget <span style="color: #339933;">-</span>N <span style="color: #339933;">-</span>q <span style="color: #000088;">$REMOTE_PATH</span><span style="color: #000088;">$GZIP_FILE</span>
gunzip <span style="color: #000088;">$GZIP_FILE</span>
cp <span style="color: #339933;">-</span>f <span style="color: #000088;">$UNGZIPPED_FILE</span> <span style="color: #000088;">$LOCAL_FINAL_PATH</span><span style="color: #000088;">$UNGZIPPED_FILE</span>
&nbsp;
<span style="color: #990000;">exit</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://webmasterweblog.com/update-geoipdat-automatically.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux dependencies hell</title>
		<link>http://webmasterweblog.com/linux-dependencies-hell.html</link>
		<comments>http://webmasterweblog.com/linux-dependencies-hell.html#comments</comments>
		<pubDate>Tue, 20 Jan 2009 17:19:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://webmasterweblog.com/?p=146</guid>
		<description><![CDATA[Interesting details about linux dependencies and how to figure out what you need to compile / build a new module e.g. Python :
http://www.comptechdoc.org/
]]></description>
			<content:encoded><![CDATA[<p>Interesting details about linux dependencies and how to figure out what you need to compile / build a new module e.g. Python :</p>
<p><a href="http://www.comptechdoc.org/os/linux/howtos/linux_htsysdep.html" >http://www.comptechdoc.org/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webmasterweblog.com/linux-dependencies-hell.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL-Python needs MySQL 4.0</title>
		<link>http://webmasterweblog.com/mysql-python-needs-mysql-40.html</link>
		<comments>http://webmasterweblog.com/mysql-python-needs-mysql-40.html#comments</comments>
		<pubDate>Mon, 19 Jan 2009 21:54:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://webmasterweblog.com/?p=140</guid>
		<description><![CDATA[If you have MySQL5 on your server, but you need MySQL-Python (like me), then you gotta install Python 2.6.1 (latest update) with a different prefix. If you simply install it via yum you might mess up your whole system! 
Good info about linux configure and make:
]]></description>
			<content:encoded><![CDATA[<p>If you have MySQL5 on your server, but you need MySQL-Python (like me), then you gotta install Python 2.6.1 (latest update) with a different prefix. If you simply install it via yum you might mess up your whole system! </p>
<p>Good info about linux configure and make:<br />
<a href="http://tldp.org/>http://tldp.org/LDP/LG/current/smith.html</a></p>
<p>General info:<br />
<a href="https://www.centos.org/modules/newbb/viewtopic.php?forum=45&#038;topic_id=8908&#038;viewmode=flat " >CentOS.org</a><br />
<a href="linuxforums.org/forum/linux-newbie/104658-updating-python-centos.html">linuxforums.org/</a></p>
<p>Most important info, if you have CentOS on your server you gotta install the tk-devel package first<br />
<a href="http://www.velocityreviews.com/forums/t636794-problems-compiling-on-centos-python-25.html" > velocityreviews.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://webmasterweblog.com/mysql-python-needs-mysql-40.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
