<?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>iGeek &#187; Linux</title>
	<atom:link href="http://www.igeek.co.za/category/technology/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.igeek.co.za</link>
	<description>A Capetonian geek living the life</description>
	<lastBuildDate>Wed, 08 Sep 2010 08:00:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>How to mirror Wikipedia</title>
		<link>http://www.igeek.co.za/2009/10/16/how-to-mirror-wikipedia/</link>
		<comments>http://www.igeek.co.za/2009/10/16/how-to-mirror-wikipedia/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 10:15:22 +0000</pubDate>
		<dc:creator>Gerhard</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Apache Mysql]]></category>
		<category><![CDATA[Basic Knowledge]]></category>
		<category><![CDATA[Database Dump]]></category>
		<category><![CDATA[Extensive Research]]></category>
		<category><![CDATA[Internet Connection]]></category>
		<category><![CDATA[Local Network]]></category>
		<category><![CDATA[Localhost]]></category>
		<category><![CDATA[Lookout]]></category>
		<category><![CDATA[Mediawiki]]></category>
		<category><![CDATA[Mirror]]></category>
		<category><![CDATA[Mirror Wikipedia]]></category>
		<category><![CDATA[Mv]]></category>
		<category><![CDATA[Mysql Server]]></category>
		<category><![CDATA[Mysql Set]]></category>
		<category><![CDATA[Network Speeds]]></category>
		<category><![CDATA[Privileges]]></category>
		<category><![CDATA[Root Password]]></category>
		<category><![CDATA[Running]]></category>
		<category><![CDATA[Server Mysql]]></category>
		<category><![CDATA[Tar Xf]]></category>
		<category><![CDATA[Wikipedia]]></category>

		<guid isPermaLink="false">http://www.igeek.co.za/?p=476</guid>
		<description><![CDATA[Being part of CTWUG we are alway on the lookout for new services to run on our network that could prove usefull to the users of the CTWUG network. The latest idea we got was to provide users with a local copy of the Wikipedia website, this would enable CTWUG users to view wikipedia content [...]]]></description>
			<content:encoded><![CDATA[<p>Being part of <a title="CTWUG Cape Town Wireless User Group" href="http://www.ctwug.za.net/" target="_blank">CTWUG</a> we are alway on the lookout for new services to run on our network that could prove usefull to the users of the CTWUG network.</p>
<p>The latest idea we got was to provide users with a local copy of the <a title="Wikipedia - The Free encyclopedia anyone can edit" href="http://www.wikipedia.org" target="_blank">Wikipedia</a> website, this would enable CTWUG users to view wikipedia content at local network speeds without having an internet connection.</p>
<p>After extensive research I came across <a title="How to mirror wikipedia" href="http://modzer0.cs.uaf.edu/~dev2c/wiki/How_to_mirror_Wikipedia" target="_blank">this nice tutorial</a> on how to run your own copy of Wikipedia from a database dump of the real Wikipedia website. Who whould have thought that Wikipedia would offer a montly database dump of their Website for users to download, good news is that they do.</p>
<p>I&#8217;ll provide the steps for you to follow to set up your own Wikipedia mirror, please note basic knowledge of linux, bash, apache and mysql is required. The steps is for installing the mirror on a <strong>Ubuntu</strong> machine.</p>
<p>So here is the steps for setting up your own Wikipedia mirror from their database dump.</p>
<ol>
<li>Install LAMP: Linux Apache MySQL PHP
<pre>apt-get update
apt-get install apache2 php5 libapache2-mod-php5 mysql-server mysql-client php5-mysql phpmyadmin</pre>
</li>
<li>Setup MySQL: You need to set your mysql root password
<pre>$ mysql
mysql&gt; USE mysql;
mysql&gt; UPDATE user SET Password=PASSWORD(’new-password’) WHERE user=’root’;
mysql&gt; FLUSH PRIVILEGES;</pre>
<p>You also need to create a database for your incoming Wikipedia. Go to <a title="http://localhost/" rel="nofollow" href="http://localhost/">http://localhost/</a> and click on phpmyadmin. Log in using your new root password. Under <em>Create new database</em>, enter <code>wikidb</code> and click Create. On the new page, click on Privileges, add the new user <code>wikiuser</code> and click <code>check all</code>, then <code>Go</code>.</li>
<li>Download the MediaWiki software: This is the software wikipedia is running on. Go to the <a title="http://www.mediawiki.org/wiki/Download" rel="nofollow" href="http://www.mediawiki.org/wiki/Download">MediaWiki download page</a>. On the right, download the .tar.gz file.
<pre>wget http://download.wikimedia.org/mediawiki/1.15/mediawiki-1.15.1.tar.gz</pre>
<p>Decompress it and move it to /var/www/</p>
<pre>tar xf mediawiki-1.15.1.tar.gz
mv mediawiki-1.15.1.tar.gz wikipedia
sudo mv wikipedia /var/www/</pre>
<p>I am installing it under the directory wikipedia.<br />
Change the file permissions of the config directory</p>
<pre>cd /var/www/wikipedia/
chmod a+x config/</pre>
<p>Now navigate to http://localhost/wikipedia/ From here, the only things you need to put in are</p>
<ul>
<li>Site name (I chose WikiMirror)</li>
<li>WikiSysop&#8217;s password (The administrator password)</li>
<li>DB password</li>
</ul>
<p>Now you need to move LocalSettings.php out of config.</p>
<pre>mv config/LocalSettings.php</pre>
<p>Now you can go to http://localhost/wikipedia/ and you should see your virgin MediaWiki install!</li>
<li> Get Wikipedia&#8217;s database dumpYou can get the latest version of Wikipedia&#8217;s database dump by subscribing to http://download.wikimedia.org/enwiki/latest/enwiki-latest-pages-articles.xml.bz2-rss.xml the latest file I got was http://download.wikimedia.org/enwiki/20091009/enwiki-20091009-pages-articles.xml.bz2
<pre>wget http://download.wikimedia.org/enwiki/20091009/enwiki-20091009-pages-articles.xml.bz2</pre>
<p>The file is 5.2GB so it should take a while to download.<br />
After downloading decompress the file</p>
<pre>tar xf enwiki-20091009-pages-articles.xml.bz2</pre>
<p>The uncompressed size is almost 20 GB so be sure you have enough disk space available.<br />
Now for the lenghty part of the process, you need to import the file into your mysql database.<br />
Download <a href="http://meta.wikimedia.org/wiki/Data_dumps/mwimport">mwimport.sh</a> and save it and run it like this</p>
<pre>cat enwiki-&lt;date&gt;.xml | mwimport | mysql -f -u &lt;admin name&gt; -p &lt;database name&gt;</pre>
<p>This process should take a few hours to complete, from 7-12 hours depending on your HDD speed and processor.</li>
</ol>
<p>That should be all, if all went well your will have a complete working copy of wikipedia on your local machine. CTWUG members can look forward to this service very soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.igeek.co.za/2009/10/16/how-to-mirror-wikipedia/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CentOS&#8217; lead developer disappeared</title>
		<link>http://www.igeek.co.za/2009/07/31/centos-lead-developer-disappeared/</link>
		<comments>http://www.igeek.co.za/2009/07/31/centos-lead-developer-disappeared/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 05:36:14 +0000</pubDate>
		<dc:creator>Gerhard</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[disappeared]]></category>
		<category><![CDATA[Lance Davis]]></category>
		<category><![CDATA[open letter]]></category>
		<category><![CDATA[redhat]]></category>

		<guid isPermaLink="false">http://www.igeek.co.za/?p=234</guid>
		<description><![CDATA[CentOS the RedHat based Linux operating is in jeapardy after the lead CentOS developer Lance Davis dissapeared into thin air. Normally this would not affect a project by that big a margain but in CentOS&#8217; case it does because Lance Davis has sole control over the CentOS domain, IRC channel and I believe the Banking [...]]]></description>
			<content:encoded><![CDATA[<p>CentOS the RedHat based Linux operating is in jeapardy after the lead CentOS developer Lance Davis dissapeared into thin air. Normally this would not affect a project by that big a margain but in CentOS&#8217; case it does because Lance Davis has sole control over the CentOS domain, IRC channel and I believe the Banking accounts aswell.</p>
<p>Fellow project Devlopers has written a open letter to Lance Davis and posted this on the <a title="CentOS open letter to Lance Davis" href="http://www.centos.org/" target="_blank">CentOS website</a>.</p>
<blockquote><p>July 30, 2009 04:39 UTC</p>
<p>This is an Open Letter to Lance Davis from fellow CentOS Developers</p>
<p>It is regrettable that we are forced to send this letter but we are left with no other options. For some time now we have been attempting to resolve these problems:</p>
<p>You seem to have crawled into a hole &#8230; and this is not acceptable.</p>
<p>You have long promised a statement of CentOS project funds; to this date this has not appeared.</p>
<p>You hold sole control of the centos.org domain with no deputy; this is not proper.</p>
<p>You have, it seems, sole &#8216;Founders&#8217; rights in the IRC channels with no deputy ; this is not proper.</p>
<p>When I (Russ) try to call the phone numbers for UK Linux, and for you individually, I get a telco intercept &#8216;Lines are temporarily busy&#8217; for the last two weeks. Finally yesterday, a voicemail in your voice picked up, and I left a message urgently requesting a reply. Karanbir also reports calling and leaving messages without your reply.</p>
<p>Please do not kill CentOS through your fear of shared management of the project.</p>
<p>Clearly the project dies if all the developers walk away.</p>
<p>Please contact me, or any other signer of this letter at once, to arrange for the required information to keep the project alive at the &#8216;centos.org&#8217; domain.</p>
<p>Sincerely,</p>
<p>Russ Herrold<br />
Ralph Angenendt<br />
Karanbir Singh<br />
Jim Perrin<br />
Donavan Nelson<br />
Tim Verhoeven<br />
Tru Huynh<br />
Johnny Hughes</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.igeek.co.za/2009/07/31/centos-lead-developer-disappeared/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing Google Chrome OS</title>
		<link>http://www.igeek.co.za/2009/07/08/introducing-google-chrome-os/</link>
		<comments>http://www.igeek.co.za/2009/07/08/introducing-google-chrome-os/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 06:09:54 +0000</pubDate>
		<dc:creator>Gerhard</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Netbook]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[OS]]></category>

		<guid isPermaLink="false">http://www.igeek.co.za/?p=134</guid>
		<description><![CDATA[First Google took on the browser arena with their Chrome Browser and now they are ready to take on the Operating System arena with their new OS called Google Chrome OS. Google Chrome OS is an open source, lightweight operating system that will initially be targeted at netbooks. Later this year Google will open-source its [...]]]></description>
			<content:encoded><![CDATA[<p>First <a title="Google Search Engine" href="http://www.google.com/" target="_blank">Google</a> took on the browser arena with their <a title="Google Chrome Browser" href="http://www.google.com/chrome/" target="_blank">Chrome Browser</a> and now they are ready to take on the <a title="Operating System" href="http://en.wikipedia.org/wiki/Operating_system" target="_blank">Operating System</a> arena with their new OS called Google Chrome OS.</p>
<p>Google Chrome OS is an open source, lightweight operating system that will initially be targeted at netbooks. Later this year Google will open-source its code, and netbooks running Google Chrome OS will be available for consumers in the second half of 2010. Because Google is already talking to partners about the project, and they&#8217;ll soon be working with the open source community, Google wanted to share their vision now so everyone understands what they are trying to achieve.</p>
<p>Speed, simplicity and security are the key aspects of Google Chrome OS. Google is designing the OS to be fast and lightweight, to start up and get you onto the web in a few seconds. As Google did  for the Google Chrome browser, they are going back to the basics and completely redesigning the underlying security architecture of the OS so that users don&#8217;t have to deal with viruses, malware and security updates. It should just work.</p>
<p>Google Chrome OS will run on both x86 as well as ARM chips and we are working with multiple OEMs to bring a number of netbooks to market next year.</p>
<p>Google Chrome OS is a new project, separate from Android. Android was designed from the beginning to work across a variety of devices from phones to set-top boxes to netbooks. Google Chrome OS is being created for people who spend most of their time on the web, and is being designed to power computers ranging from small netbooks to full-size desktop systems.</p>
<p>Google still have a lot of work to do, and they&#8217;re definitely going to need a lot of help from the open source community to accomplish this vision.</p>
<p>Google Chrome OS seems to me like another entrant specificly for the netbook arena and I for one would like to see a better lightweight operating system than the current popular Limpus Lite. Not only do I think it will perform well but with a name like Chrome it should probably have the nice look of the Chrome browser.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.igeek.co.za/2009/07/08/introducing-google-chrome-os/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
