<?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>Tweaked for your Pleasure &#187; Linux</title>
	<atom:link href="http://snat.co.uk/category/linux/feed" rel="self" type="application/rss+xml" />
	<link>http://snat.co.uk</link>
	<description>A web blog about a few people in this fucked up world.</description>
	<lastBuildDate>Mon, 06 Sep 2010 13:47:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Installing WordPress &#8211; SSH Style</title>
		<link>http://snat.co.uk/2008/installing-wordpress-ssh-style.html</link>
		<comments>http://snat.co.uk/2008/installing-wordpress-ssh-style.html#comments</comments>
		<pubDate>Wed, 31 Dec 2008 22:29:27 +0000</pubDate>
		<dc:creator>Snat</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Alot]]></category>
		<category><![CDATA[Crap]]></category>
		<category><![CDATA[Database Details]]></category>
		<category><![CDATA[Footer]]></category>
		<category><![CDATA[Host Localhost]]></category>
		<category><![CDATA[Hostname]]></category>
		<category><![CDATA[Html Step]]></category>
		<category><![CDATA[Mirror]]></category>
		<category><![CDATA[Mv]]></category>
		<category><![CDATA[Mysql Database]]></category>
		<category><![CDATA[Open Ssh]]></category>
		<category><![CDATA[Putty]]></category>
		<category><![CDATA[Ssh Client]]></category>
		<category><![CDATA[Step 3]]></category>
		<category><![CDATA[Step 6]]></category>
		<category><![CDATA[Support Forums]]></category>
		<category><![CDATA[Svn]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[Unix Geeks]]></category>
		<category><![CDATA[Webhost]]></category>

		<guid isPermaLink="false">http://snat.co.uk/?p=1071</guid>
		<description><![CDATA[Today&#8217;s post is all about installing WordPress by using something known as svn. For this, you will need SSH access on your webhost (or your own system will do fine). If your webhost don&#8217;t offer, SSH tell them to look at what they are offering again as SSH is a much needed service if you [...]]]></description>
			<content:encoded><![CDATA[<div class='embaArticle' style='display:inline'><p><!--:en-->Today&#8217;s post is all about installing WordPress by using something known as svn. For this, you will need SSH access on your webhost (or your own system will do fine). If your webhost don&#8217;t offer, SSH tell them to look at what they are offering again as SSH is a much needed service if you do this crap alot.<br />
<!--:--><span id="more-1071"></span><!--:en--><br />
As with my other tutorials, $ means something that need to be done in command line, in this case your SSH client (or terminal if doing locally).  This tutorial will also install WordPress directly into your root footer for your website.</p>
<p><strong>You will need</strong></p>
<ul>
<li>SSH</li>
<li>SVN</li>
<li>SSH click (Click <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/">here</a> for puTTY for Windows)</li>
</ul>
<p><strong>Step 1</strong></p>
<p>Open your SSH client and log into your account. Your hostname tends to be your domain.</p>
<p><strong>Step 2</strong></p>
<p>Use the CD command to change to the folder in which your files need to be placed to view over the internet. Typically, public_html</p>
<blockquote><p>$ cd public_html</p></blockquote>
<p><strong>Step 3</strong></p>
<p>Now, we just give the command to SVN to download WordPress (this will download WordPress 2.7)</p>
<blockquote><p> $ svn co http://svn.automattic.com/wordpress/tags/2.7 .</p></blockquote>
<p><strong>Step 4</strong></p>
<p>Now, we need to rename the config file.</p>
<blockquote><p> $ mv wp-config-sample.php wp-config.php</p></blockquote>
<p><strong>Step 5</strong></p>
<p>Now, lets edit the config file to add our database to it. Now, most people should use nano as vi tends to be for pure unix geeks (Looks in mirror <img src='http://snat.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
<p>Also, Nano is just simple and doesn&#8217;t need many keys just to add one letter.</p>
<blockquote><p>$nano wp-config.php</p></blockquote>
<p>Fill in the blanks with your database details. The parts you should be editing are as follow.</p>
<p>define(ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢DB_NAMEÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢, ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œyour_db_nameÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œ);</p>
<p>/** MySQL database username */<br />
define(ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢DB_USERÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢, ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œyour_db_user_nameÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œ);</p>
<p>/** MySQL database password */<br />
define(ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢DB_PASSWORDÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢, ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œPassW0rdÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œ);</p>
<p>/** MySQL hostname */<br />
define(ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢DB_HOSTÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢, ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œlocalhostÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œ);</p>
<p><strong>Step 6</strong></p>
<p>In your web browser, go to http://yourdomain.com. If you are doing it locally, http://localhost. </p>
<p><strong>Step 7</strong></p>
<p>Thats it. Any problems, go to WordPress support forums.<br />
<!--:--></p>
<hr /><small>
<br />This was written by Snat<br />
Copyright &copy; 2002 - 2010 to <a href="http://snat.co.uk">Matthew Ellis</a><br />
This article is from <a href="http://snat.co.uk">Tweaked for your Pleasure</a> - www.snat.co.uk
(digitalfingerprint: 1c59e01a9b1bcd1182fd86089c6330a7 (38.107.191.114) )</small></div>]]></content:encoded>
			<wfw:commentRss>http://snat.co.uk/2008/installing-wordpress-ssh-style.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Simple Installation of Apache, PHP and MySQL</title>
		<link>http://snat.co.uk/2008/simple-installation-of-apache-php-and-mysql.html</link>
		<comments>http://snat.co.uk/2008/simple-installation-of-apache-php-and-mysql.html#comments</comments>
		<pubDate>Wed, 17 Dec 2008 19:43:59 +0000</pubDate>
		<dc:creator>Snat</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Apache Php]]></category>
		<category><![CDATA[Apachefriends]]></category>
		<category><![CDATA[Config Files]]></category>
		<category><![CDATA[Download Linux]]></category>
		<category><![CDATA[Error Message]]></category>
		<category><![CDATA[Internet Connection]]></category>
		<category><![CDATA[Mysql Apache]]></category>
		<category><![CDATA[Php Apache]]></category>
		<category><![CDATA[Php Mysql]]></category>
		<category><![CDATA[Production Server]]></category>
		<category><![CDATA[Security Tips]]></category>
		<category><![CDATA[Step 2]]></category>
		<category><![CDATA[Step 3]]></category>
		<category><![CDATA[Tar Gz]]></category>
		<category><![CDATA[Tiny Bit]]></category>
		<category><![CDATA[Web Address]]></category>
		<category><![CDATA[Web Browser]]></category>
		<category><![CDATA[Web Server]]></category>
		<category><![CDATA[Xampp]]></category>

		<guid isPermaLink="false">http://snat.co.uk/?p=1052</guid>
		<description><![CDATA[Today, this is a short and sweet tutorial on how to install a little webserver with PHP, MySQL and Apache so that you can do local web development. I would not advice to use this on a production server as it is unsecured. Apache is the world mostly used web server and honestly, can be [...]]]></description>
			<content:encoded><![CDATA[<div class='embaArticle' style='display:inline'><p><!--:en-->Today, this is a short and sweet tutorial on how to install a little webserver with PHP, MySQL and Apache so that you can do local web development. I would not advice to use this on a production server as it is unsecured. </p>
<p>Apache is the world mostly used web server and honestly, can be annoying to setup. Luckly, what we are going to be usiing is known as XAMPP for Linux (Used to be called LAMPP) and this is a little tutorial on how to install it, run it, secure it up a bit, where the config files and then, uninstalling.<br />
<!--:--><span id="more-1052"></span><!--:en--></p>
<p>In this tutorial, commands to type with be labeled with &#8220;$&#8221;.</p>
<p><strong>You will need</strong><br />
Computer with Linux installed<br />
Active internet connection</p>
<p><strong>Step One</strong></p>
<p>Open up terminal as root. </p>
<p>To do this, do either<br />
<code><br />
$su<br />
OR<br />
$sudo xterminal</code></p>
<p><strong>Step 2</strong></p>
<p>$cd /root<br />
$wget http://www.apachefriends.org/download.php?xampp-linux-1.6.8a.tar.gz<br />
$tar xvfz xampp-linux-1.6.8a.tar.gz -C /opt</p>
<p>Done. All installed <img src='http://snat.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Step 3</strong></p>
<p>Now it is installed but it ain&#8217;t no fun if it ain&#8217;t running, so lets start it up.</p>
<p>$/opt/lampp/lampp start</p>
<p>Now, it will start and if it fails, drop me a message on the comments with the error message.</p>
<p><strong>Step 4</strong></p>
<p>Now, we need to make sure it works so open up your web browser and in the address bar type &#8211; http://127.0.0.1</p>
<p><strong>Step 5</strong></p>
<p>The default setting sucks if you want to use it live. To secure it a tiny bit, do the following but make sure that you remember it shouldn&#8217;t still be used live.</p>
<p>$/opt/lampp/lampp security</p>
<p>Tips and securing it up much, coming next week.<!--:--></p>
<hr /><small>
<br />This was written by Snat<br />
Copyright &copy; 2002 - 2010 to <a href="http://snat.co.uk">Matthew Ellis</a><br />
This article is from <a href="http://snat.co.uk">Tweaked for your Pleasure</a> - www.snat.co.uk
(digitalfingerprint: 1c59e01a9b1bcd1182fd86089c6330a7 (38.107.191.114) )</small></div>]]></content:encoded>
			<wfw:commentRss>http://snat.co.uk/2008/simple-installation-of-apache-php-and-mysql.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Zivios Server On Ubuntu</title>
		<link>http://snat.co.uk/2008/installing-zivios-server-on-ubuntu.html</link>
		<comments>http://snat.co.uk/2008/installing-zivios-server-on-ubuntu.html#comments</comments>
		<pubDate>Fri, 19 Sep 2008 21:27:14 +0000</pubDate>
		<dc:creator>Snat</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Application Integration]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[Remote Management]]></category>
		<category><![CDATA[Service Version]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[User Group]]></category>

		<guid isPermaLink="false">http://snat.co.uk/2008/installing-zivios-server-on-ubuntu.html</guid>
		<description><![CDATA[Installing Zivios Server On Ubuntu This howto explains installing Zivios Master Service version 0.5.0. Zivios is an n-tiered PHP-5 application, providing identity management, single sign-on, user, group and computer provisioning, as well as remote management of services. It uses MySQL and OpenLDAP as it&#8217;s data store, with OpenLdap being the primary back end for identity [...]]]></description>
			<content:encoded><![CDATA[<div class='embaArticle' style='display:inline'><p><!--:en--><br />
<table align="left" cellpadding="0" cellspacing="0" width="42" height="40">
<tr>
<td><img class="teaser-image-odd" src="http://snat.co.uk/wp-content/plugins/wp-o-matic/cache/a1225_ubuntu.gif" width="39" height="40" alt="" /></td>
</tr>
</table>
<p><b>Installing Zivios Server On Ubuntu</b></p>
<p>This howto explains installing Zivios<br />
Master Service version 0.5.0. Zivios is an n-tiered PHP-5 application,<br />
providing identity management, single sign-on, user, group and computer<br />
provisioning, as well as remote management of services. It uses MySQL<br />
and OpenLDAP as<br />
it&#8217;s data store, with OpenLdap being the primary back end for identity<br />
management and application<br />
integration and MySQL being used for panel specific data.</p>
<p><!--:--></p>
<hr /><small>
<br />This was written by Snat<br />
Copyright &copy; 2002 - 2010 to <a href="http://snat.co.uk">Matthew Ellis</a><br />
This article is from <a href="http://snat.co.uk">Tweaked for your Pleasure</a> - www.snat.co.uk
(digitalfingerprint: 1c59e01a9b1bcd1182fd86089c6330a7 (38.107.191.114) )</small></div>]]></content:encoded>
			<wfw:commentRss>http://snat.co.uk/2008/installing-zivios-server-on-ubuntu.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Minimal Ubuntu 8.04 Server Install</title>
		<link>http://snat.co.uk/2008/minimal-ubuntu-804-server-install.html</link>
		<comments>http://snat.co.uk/2008/minimal-ubuntu-804-server-install.html#comments</comments>
		<pubDate>Fri, 12 Sep 2008 15:28:52 +0000</pubDate>
		<dc:creator>Snat</dc:creator>
				<category><![CDATA[Computing]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Added Benefit]]></category>
		<category><![CDATA[Extra Security]]></category>
		<category><![CDATA[Minimal System]]></category>
		<category><![CDATA[Processor Resources]]></category>
		<category><![CDATA[System Doesn]]></category>

		<guid isPermaLink="false">http://snat.co.uk/2008/minimal-ubuntu-804-server-install.html</guid>
		<description><![CDATA[Minimal Ubuntu 8.04 Server Install I find myself removing packages that I don&#8217;t need, especially if the packages belong to processes that are using processor resources. There is a way to start from the ground up, you can have a minimal system and just add what you need. This has the added benefit of extra [...]]]></description>
			<content:encoded><![CDATA[<div class='embaArticle' style='display:inline'><p><!--:en--><br />
<table align="left" cellpadding="0" cellspacing="0" width="42" height="40">
<tr>
<td><img class="teaser-image-odd" src="http://snat.co.uk/wp-content/plugins/wp-o-matic/cache/be8a3_ubuntu.gif" width="39" height="40" alt="" /></td>
</tr>
</table>
<p><b>Minimal Ubuntu 8.04 Server Install</b></p>
<p>I find myself removing packages that I don&#8217;t need, especially if the<br />
packages belong to processes that are using processor resources. There<br />
is a way to start from the ground up, you can have a minimal system and<br />
just add what you need. This has the added benefit of extra security,<br />
your system doesn&#8217;t have services running that you don&#8217;t use. You won&#8217;t<br />
use a Ubuntu Server CD, but the Desktop Live CD.</p>
<p><!--:--></p>
<hr /><small>
<br />This was written by Snat<br />
Copyright &copy; 2002 - 2010 to <a href="http://snat.co.uk">Matthew Ellis</a><br />
This article is from <a href="http://snat.co.uk">Tweaked for your Pleasure</a> - www.snat.co.uk
(digitalfingerprint: 1c59e01a9b1bcd1182fd86089c6330a7 (38.107.191.114) )</small></div>]]></content:encoded>
			<wfw:commentRss>http://snat.co.uk/2008/minimal-ubuntu-804-server-install.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
