<?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>Ubuntu Guy &#187; installation</title>
	<atom:link href="http://ubuntuguy.com/tag/installation/feed/" rel="self" type="application/rss+xml" />
	<link>http://ubuntuguy.com</link>
	<description>Ubuntu tips and tricks from a random guy</description>
	<lastBuildDate>Fri, 26 Feb 2010 13:55:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The lazy way to LAMP</title>
		<link>http://ubuntuguy.com/how-to/the-lazy-way-to-lamp/</link>
		<comments>http://ubuntuguy.com/how-to/the-lazy-way-to-lamp/#comments</comments>
		<pubDate>Sat, 16 May 2009 10:49:46 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[LAMP]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://ubuntuguy.com/?p=59</guid>
		<description><![CDATA[Most web developers need a LAMP development server to deploy and test their apps. With Ubuntu &#8211; and any other linux &#8211; that is very easy. So in Ubuntu you can install a LAMP server just by running this command:
sudo apt-get install apache2 php5 libapache2-mod-php5 mysql-server libapache2-mod-auth-mysql php5-mysql phpmyadmin
This way you have a full working [...]]]></description>
			<content:encoded><![CDATA[<p>Most web developers need a LAMP development server to deploy and test their apps. With Ubuntu &#8211; and any other linux &#8211; that is very easy. So in Ubuntu you can install a LAMP server just by running this command:</p>
<blockquote><p>sudo apt-get install apache2 php5 libapache2-mod-php5 mysql-server libapache2-mod-auth-mysql php5-mysql phpmyadmin</p></blockquote>
<p>This way you have a full working LAMP server. Now if you need additional php extensions just open the Synaptics package manager (System -&gt; Administration -&gt; Synaptics Manager) and search for &#8220;php&#8221;, this will give you all the available options.</p>
<h3>Configuration files</h3>
<p>In case you need to play with the configuration you can check the above paths that hold the configuration files for the servers we just installed:</p>
<blockquote><p>/etc/mysql/my.cnf</p>
<p>/etc/apache2/</p>
<p>/etc/php5/apache2/</p></blockquote>
<h3>Starting, stoping and restarting servers</h3>
<p>Our servers (apache and mysql) by default will start any time you boot so there is no need to start them. But when you change something in the configuration files you need to restart them in order to get the new directives. The way to do that is the following:</p>
<blockquote><p>sudo /etc/init.d/apache2 restart</p>
<p>sudo /etc/init.d/mysql restart</p></blockquote>
<p>In the above commands if you replace the &#8220;restart&#8221; with &#8220;stop&#8221; or &#8220;start&#8221; you can stop or start the server.</p>
<h3>Making the environment more friendly</h3>
<p>The Apache web server by default will run as www-data. This will lead you to many permission problems, and as this is your development machine, you don&#8217;t really care about security. The easiest way to work around this is by changing the user that Apache runs. Open the envvars configuration file:</p>
<blockquote><p>gksu gedit /etc/apache2/envvars</p></blockquote>
<p>And then replace the www-data (in the APACHE_RUN_USER and APACHE_RUN_GROUP directives)  with your username and group (usually it is the same)</p>
<p>Then you will need to give full access to your user for the doc root path. You can do that by executing this:</p>
<blockquote><p>sudo chown -R USER:GROUP /var/www/</p></blockquote>
<p>Again you should replace USER with your username and GROUP with the group that you belong to.</p>
<p>After that you need one more little adjustment to make phpmyadmin work with this new configuration. Execute this:</p>
<blockquote><p>gksu gedit  /var/lib/phpmyadmin/blowfish_secret.inc.php</p></blockquote>
<p>and copy the $cfg['blowfish_secret'] = &#8216;&#8230;. line. You will need to paste it in the end of this file: /etc/phpmyadmin/config.inc.php</p>
<h3>Our LAMP server is ready!</h3>
<p>Now that you are ready you can start using your LAMP server. Visit http://localhost/ to visit it from your browser or visit http://localhost/phpmyadmin to administer the mySQL server.</p>
]]></content:encoded>
			<wfw:commentRss>http://ubuntuguy.com/how-to/the-lazy-way-to-lamp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The easiest way to try Ubuntu</title>
		<link>http://ubuntuguy.com/how-to/the-easiest-way-to-try-ubuntu/</link>
		<comments>http://ubuntuguy.com/how-to/the-easiest-way-to-try-ubuntu/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 13:31:11 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[live CD]]></category>
		<category><![CDATA[usbuntu]]></category>

		<guid isPermaLink="false">http://ubuntuguy.com/?p=54</guid>
		<description><![CDATA[As Ubuntu is going more into mainstream, many people around the world want to try this great operating system, but not many of them actually want to install it on their hard drives just for a preview or they are just afraid of that as an inexperienced user could possibly harm a system by doing [...]]]></description>
			<content:encoded><![CDATA[<p>As Ubuntu is going more into mainstream, many people around the world want to try this great operating system, but not many of them actually want to install it on their hard drives just for a preview or they are just afraid of that as an inexperienced user could possibly harm a system by doing so.</p>
<p>The linux community partially fixed that in the past when <a href="http://www.knoppix.org/">Knoppix</a> released as a live CD and of course this is something that now is available for every major linux distribution including Ubuntu. Trying linux with a live CD is cool but you can&#8217;t add new software or play with it as with a real environment (write data, etc.)</p>
<p>This can be fixed by using a live USB portable drive installation. This way you can store your data, and actually you can get your system wherever you go <img src='http://ubuntuguy.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  So let me introduce you to&#8230;</p>
<h3>uSbuntu live creator</h3>
<p><a href="http://www.slym.fr/?p=113">uSbuntu live creator</a> is a lightweight application created by <a href="http://www.slym.fr/">Slÿm</a>, a 24 years old French dude. This nice piece of software works under Windows (XP, 2003 and Vista) and creates bootable USB drives using an Ubuntu ISO image or a CD Rom. Alternatively uSbuntu can download an Ubuntu image for you.</p>
<div id="attachment_55" class="wp-caption aligncenter" style="width: 452px"><img class="size-full wp-image-55" title="usbuntu screenshot" src="http://ubuntuguy.com/wp-content/uploads/2009/03/usbuntu-screenshot.jpg" alt="usbuntu screenshot" width="442" height="723" />,<p class="wp-caption-text">usbuntu screenshot</p></div>
<p>After the installation, you just have to change the boot order in BIOS (usually F12 or Del during boot start) and then you can boot with your new Ubuntu installation. The speed of the installation depends on your drive and USB bus, and it can&#8217;t be as fast as a normal installation but it is sure that you will be able to check Ubuntu in a better way than a live CD. The only I think I couldn&#8217;t do till now with a live USB installation is to upgrade the kernel which is of course something that you wont need to do while you are testing the operating system <img src='http://ubuntuguy.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://usbuntu.slym.fr/uSbuntu%20Live%20Creator.zip">You can download uSbuntu live creator from here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ubuntuguy.com/how-to/the-easiest-way-to-try-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
