<?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>Skin of Stars &#187; desktop</title>
	<atom:link href="http://skinofstars.com/tag/desktop/feed/" rel="self" type="application/rss+xml" />
	<link>http://skinofstars.com</link>
	<description>Machines, Media and Miscellanea</description>
	<lastBuildDate>Sat, 19 May 2012 11:27:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<cloud domain='skinofstars.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>New toys</title>
		<link>http://skinofstars.com/2008/03/new-toys/</link>
		<comments>http://skinofstars.com/2008/03/new-toys/#comments</comments>
		<pubDate>Wed, 12 Mar 2008 12:53:41 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Miscellanea]]></category>
		<category><![CDATA[clarke]]></category>
		<category><![CDATA[desktop]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I&#8217;m very excited today after winning an auction last night on eBay. I&#8217;d decided that I needed a computer as doing graphic work and generally pouring through code is hard work on this little laptop. What I needed was a mighty box, which is what I&#8217;ve now just bought. The specs on this beast are as follows; intel core2 quad<a href="http://skinofstars.com/2008/03/new-toys/"> ...&#160;Read the remaining 71 words</a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m very excited today after winning an auction last night on eBay. I&#8217;d decided that I needed a computer as doing graphic work and generally pouring through code is hard work on this little laptop. What I needed was a mighty box, which is what I&#8217;ve now just bought.</p>
<p>The specs on this beast are as follows; intel core2 quad with a combined speed of 9.6ghz, 2gb of ram (I will certainly upgrade that to 4gb), 500gb esata (quick access thingy) hard drive and an nvidia 8500gt graphics card which can do HiDef&#8230; which means I need a HiDef monitor, which I get that tomorrow, 22&#8243; widescreen.</p>
<p>Yes, these are very geeky boys toys but I am now very excited. My next question is what operating system I&#8217;m going to put on it.</p>
]]></content:encoded>
			<wfw:commentRss>http://skinofstars.com/2008/03/new-toys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making your own webdev environment on Ubuntu desktop</title>
		<link>http://skinofstars.com/2008/01/making-your-own-webdev-environment-on-ubuntu-desktop/</link>
		<comments>http://skinofstars.com/2008/01/making-your-own-webdev-environment-on-ubuntu-desktop/#comments</comments>
		<pubDate>Tue, 01 Jan 2008 12:36:00 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[webdev]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[These machines aren&#8217;t all fun fun fun, sometimes you have to use them for some more serious work. In this post I&#8217;m going to tell you how to make your own php/mysql web development environment on your own Ubuntu desktop. Once you&#8217;ve done this you won&#8217;t need to keep uploading files to your server just to check if something works.<a href="http://skinofstars.com/2008/01/making-your-own-webdev-environment-on-ubuntu-desktop/"> ...&#160;Read the remaining 379 words</a>]]></description>
			<content:encoded><![CDATA[<p>These machines aren&#8217;t all fun fun fun, sometimes you have to use them for some more serious work. In this post I&#8217;m going to tell you how to make your own php/mysql web development environment on your own Ubuntu desktop. Once you&#8217;ve done this you won&#8217;t need to keep uploading files to your server just to check if something works.</p>
<p>Firstly I&#8217;d like to point to the post that originally helped me do this at <a href="http://www.webmasterview.com/server_side/development_server_on_ubuntu_desktop">webmasterview.com</a>.</p>
<p>Now, time to open up our trusty terminal. It is possible to do this through synaptics, but its quicker to do it like this:</p>
<p>First thing is to install mysql for databases on our machine. Copy this bit of code into your terminal:</p>
<blockquote><p>sudo apt-get install mysql-server</p></blockquote>
<p>Next we need apache2 as our webserver. Here is the code:</p>
<blockquote><p>sudo apt-get install apache2</p></blockquote>
<p>Then we need to get php:</p>
<blockquote><p>sudo apt-get install php5</p></blockquote>
<p>There are our three basic components. Now we need to hook them together:</p>
<blockquote><p>sudo apt-get install libapache2-mod-php5</p></blockquote>
<p>and</p>
<blockquote><p>sudo apt-get install php5-mysql</p></blockquote>
<p>Now that&#8217;s just grand. We&#8217;ve now got all the elements that we need to serve files to the net. The thing is, we&#8217;re only doing this so we can work on stuff at home, in which case what we&#8217;re really looking for is an easier way to do so. What we need to do is have a public_html folder in our user directory. Perhaps now would be a good time to do that. The next step is making that work on the webserver we&#8217;ve just installed. Run this snip of code:</p>
<blockquote><p>sudo a2enmod userdir</p></blockquote>
<p>Then restart apache:</p>
<blockquote><p>sudo /etc/init.d/apache2 force-reload</p></blockquote>
<p>You should now be able to reach your home folder via http://localhost/~yourusername/</p>
<p>Finally we want to be able to administer our mysql databases. Though there are many good tools for doing this I still go back to the web based <a href="http://www.phpmyadmin.net/">phpMyAdmin</a>. Apart from the fact that it&#8217;s highly automated (which suits me just fine) it&#8217;s also a very common program to find on your paid hosting, so would also be very familiar when you go live. For the quick and dirty way of getting it up and running, download phpMyAdmin and extract to your public_html folder. Personally I rename it to something a little easier. Then rename the file within from config.example.inc.php to config.inc.php and within that file put something in the blowfish_secret field. Then all you have to do is navigate your browser to something like http://localhost/~yourusername/phpMyAdmin</p>
<p><em>addendum</em></p>
<p><em>If your server is going to be visible from the big bad world and this is your everyday machine then you need to turn off that user public_html stuff (it&#8217;s insecure for general use!). To do that just enter this instruction<br />
</em></p>
<blockquote><p><em>sudo a2dismod userdir</em></p></blockquote>
<p><em>then reload apache as before</em></p>
]]></content:encoded>
			<wfw:commentRss>http://skinofstars.com/2008/01/making-your-own-webdev-environment-on-ubuntu-desktop/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

