<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Life Without XP</title>
	<atom:link href="http://lifewithoutxp.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://lifewithoutxp.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Sat, 06 Jun 2009 17:04:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='lifewithoutxp.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Life Without XP</title>
		<link>http://lifewithoutxp.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://lifewithoutxp.wordpress.com/osd.xml" title="Life Without XP" />
	<atom:link rel='hub' href='http://lifewithoutxp.wordpress.com/?pushpress=hub'/>
		<item>
		<title>running newsbin pro under ubuntu and xp with the same files</title>
		<link>http://lifewithoutxp.wordpress.com/2009/06/06/running-newsbin-pro-under-ubuntu-and-xp-with-the-same-files/</link>
		<comments>http://lifewithoutxp.wordpress.com/2009/06/06/running-newsbin-pro-under-ubuntu-and-xp-with-the-same-files/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 17:04:21 +0000</pubDate>
		<dc:creator>lifewithoutxp</dc:creator>
				<category><![CDATA[newsbin]]></category>
		<category><![CDATA[wine]]></category>

		<guid isPermaLink="false">http://lifewithoutxp.wordpress.com/?p=61</guid>
		<description><![CDATA[Newsbin for me is the best usenet client out there. Which pretty much sucks as it is only for XP. So here is how I will show you how to install Newsbin on Ubuntu run a download and then switch to XP and carry on with the same download. 1. You need a ntfs partition, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lifewithoutxp.wordpress.com&amp;blog=7601608&amp;post=61&amp;subd=lifewithoutxp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Newsbin for me is the best usenet client out there. Which pretty much sucks as it is only for XP.</p>
<p>So here is how I will show you how to install Newsbin on Ubuntu run a download and then switch to XP and carry on with the same download.</p>
<p>1. You need a ntfs partition, I call mine &#8220;rest&#8221; as in the rest of the hard disk, it is drive F in XP this is where the downloads will go and where the newsbin setup files end up.</p>
<p>2. In XP install newsbin, point the data files to F:\download\NewsBin, this is where the NewsBin.ini and all newsbin datafiles are stored. Setup the servers you want to use.</p>
<p>3. Restart PC. go into Ubuntu install Wine 1.1.22 (latest nbpro works with this)</p>
<p>4. Install newsbin, select the default choice for location of data files, we will fix that later, do not bother with setting the server info up again.</p>
<p>5. In Synaptic install sqlite3</p>
<p>6. You need to edit your etc/fstab (in terminal: sudo gedit /etc/fstab) and mount the ntfs partition automatically at boot-up I added the following line</p>
<p><strong>/dev/sda3 /media/rest ntfs defaults,locale=en_US.UTF-8 0 1</strong> at the end of the file. This is for my config!!!! Your ntfs partition (/dev/sda3) will be different!</p>
<p>You do this because newsbin resets the registry key info to the defaults if it cannot find the newsbin.ini file, so mount the hard disk automatically and if you run newsbin by mistake it doesn&#8217;t mean you have to redit the registry.</p>
<p>7. In terninal edit the registry, do this by: wine regedit</p>
<p>8. Change the following keys to the values indicated.</p>
<p>[HKEY_CURRENT_USER\Software\DJI Interprises\Newsbin50\LastNBI]<br />
&#8220;NBIFile&#8221;=&#8221;Z:\\media\\rest\\downloads\\NewsBin\\UbuntuNewsBin.nbi&#8221;</p>
<p>[HKEY_CURRENT_USER\Software\DJI Interprises\Newsbin50\Recent File List]<br />
&#8220;File1&#8243;=&#8221;Z:\\media\\rest\\downloads\\NewsBin\\UbuntuNewsBin.nbi&#8221;</p>
<p>8. Now copy the Newsbin.ini file in your /media/rest/downloads/NewsBin directory to UbuntuNewsBin.nbi (in the same directory and edit it.</p>
<p>Change the line that reads &#8220;DataPath=F:\downloads\NewsBin\&#8221; to &#8220;DataPath=Z:\media\rest\downloads\NewsBin\&#8221; and</p>
<p>change the line that reads &#8220;DownloadPath=F:\\downloads\&#8221; to &#8220;DownloadPath=Z:\media\rest\downloads\&#8221;</p>
<p>9. Nearly there, now the last bit you need to create 3 shell scripts and copy them to your bin directory they are</p>
<p>a. <strong>nbxp.sh</strong> if you are going to go into XP run this, it changes your download folder to the F drive for all unfinished downloads.</p>
<p>#!/bin/bash<br />
sqlite3 /media/rest/downloads/NewsBin/Downloads.db3 &#8216;update text_index_v3 set DL_PATH=replace(DL_Path, &#8220;Z:\media\rest\&#8221;,&#8221;F:\\&#8221;) where substr(DL_Path,1,3)=&#8221;Z:\&#8221;&#8216;</p>
<p>b. <strong>nbu.sh</strong> if you are coming from XP run this, it changes your download folder to the Z drive for all unfinished downloads.</p>
<p>#!/bin/bash<br />
sqlite3 /media/rest/downloads/NewsBin/Downloads.db3 &#8216;update text_index_v3 set DL_PATH=replace(DL_Path, &#8220;F:\\&#8221;,&#8221;Z:\media\rest\&#8221;) where substr(DL_Path,1,4)=&#8221;F:\\&#8221;&#8216;</p>
<p>c. <strong>nbshow.sh</strong> this just lists the download path for all unfinished downloads no other info is shown, use it so you know what the current pending downoads will end up!</p>
<p>#!/bin/bash<br />
sqlite3 Downloads.db3 &#8216;select DL_Path from text_index_v3&#8242;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lifewithoutxp.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lifewithoutxp.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lifewithoutxp.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lifewithoutxp.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lifewithoutxp.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lifewithoutxp.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lifewithoutxp.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lifewithoutxp.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lifewithoutxp.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lifewithoutxp.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lifewithoutxp.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lifewithoutxp.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lifewithoutxp.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lifewithoutxp.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lifewithoutxp.wordpress.com&amp;blog=7601608&amp;post=61&amp;subd=lifewithoutxp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lifewithoutxp.wordpress.com/2009/06/06/running-newsbin-pro-under-ubuntu-and-xp-with-the-same-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48bba50d04d964127aa518a258dbc79a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lifewithoutxp</media:title>
		</media:content>
	</item>
		<item>
		<title>lxsplit a hjsplit replacement for linux</title>
		<link>http://lifewithoutxp.wordpress.com/2009/05/24/lxsplit-a-hjsplit-replacement-for-linux/</link>
		<comments>http://lifewithoutxp.wordpress.com/2009/05/24/lxsplit-a-hjsplit-replacement-for-linux/#comments</comments>
		<pubDate>Sun, 24 May 2009 07:25:55 +0000</pubDate>
		<dc:creator>lifewithoutxp</dc:creator>
				<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[hjsplit]]></category>
		<category><![CDATA[joining files]]></category>
		<category><![CDATA[lxsplit]]></category>
		<category><![CDATA[splitting files]]></category>

		<guid isPermaLink="false">http://lifewithoutxp.wordpress.com/?p=57</guid>
		<description><![CDATA[Lxsplit is a command line split &#8211; rejoin utility , useful when you are downloading or uploading huge files on the net. Installation is simple and easy. Go to sourceforge to download the latest source. Once downloaded unpack the file into a directory Go into the shell and navigate to where you unpacked it. make [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lifewithoutxp.wordpress.com&amp;blog=7601608&amp;post=57&amp;subd=lifewithoutxp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Lxsplit is a command line split &#8211; rejoin utility , useful when you are downloading or uploading huge files on the net.</p>
<p>Installation is simple and easy.</p>
<ul>
<li>Go to sourceforge to download the <a href="http://sourceforge.net/project/showfiles.php?group_id=216042">latest source</a>.</li>
<li>Once downloaded unpack the file into a directory</li>
<li>Go into the shell and navigate to where you unpacked it.</li>
<li>make &#8211; to make the compiled object files</li>
<li>sudo make install &#8211; to make the executable</li>
</ul>
<p>Once this is done just type in  lxsplit and it will tell you how to use it, easy.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lifewithoutxp.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lifewithoutxp.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lifewithoutxp.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lifewithoutxp.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lifewithoutxp.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lifewithoutxp.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lifewithoutxp.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lifewithoutxp.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lifewithoutxp.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lifewithoutxp.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lifewithoutxp.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lifewithoutxp.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lifewithoutxp.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lifewithoutxp.wordpress.com/57/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lifewithoutxp.wordpress.com&amp;blog=7601608&amp;post=57&amp;subd=lifewithoutxp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lifewithoutxp.wordpress.com/2009/05/24/lxsplit-a-hjsplit-replacement-for-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48bba50d04d964127aa518a258dbc79a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lifewithoutxp</media:title>
		</media:content>
	</item>
		<item>
		<title>Useful Programs [1]</title>
		<link>http://lifewithoutxp.wordpress.com/2009/05/12/useful-programs-1/</link>
		<comments>http://lifewithoutxp.wordpress.com/2009/05/12/useful-programs-1/#comments</comments>
		<pubDate>Tue, 12 May 2009 00:57:19 +0000</pubDate>
		<dc:creator>lifewithoutxp</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://lifewithoutxp.wordpress.com/?p=51</guid>
		<description><![CDATA[No frills list of useful programs. Abiword. A powerful but yet lightweight Word Processor Bulk Rename. Part of Thunar, a really good rename utility. CHM Viewer. Viewer for compiled help files Conduit Syncronizer. Helps you Sync folders, onine services info, data, notes Comix, a comic book reader GPar2, PAR2 Utility GtkHash. Check MD5/SHA1 on files [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lifewithoutxp.wordpress.com&amp;blog=7601608&amp;post=51&amp;subd=lifewithoutxp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>No frills list of useful programs.</p>
<p><em>Abiword</em>. A powerful but yet lightweight Word Processor</p>
<p><em>Bulk Rename</em>. Part of Thunar, a really good rename utility.</p>
<p><em>CHM Viewer</em>. Viewer for compiled help files</p>
<p><em>Conduit Syncronizer</em>. Helps you Sync folders, onine services info, data, notes</p>
<p><em>Comix</em>, a comic book reader</p>
<p>GPar2, PAR2 Utility</p>
<p><em>GtkHash</em>. Check MD5/SHA1 on file<em>s</em></p>
<p><em>Meld Diff Viewer</em>. compare files visually</p>
<p><em>Picasa</em>. Photo Manager, by Google</p>
<p><em>SubDownLoader</em>. Download subtitle files</p>
<p><em>TrueCrypt</em>. Power encryption software but easy to use.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lifewithoutxp.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lifewithoutxp.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lifewithoutxp.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lifewithoutxp.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lifewithoutxp.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lifewithoutxp.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lifewithoutxp.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lifewithoutxp.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lifewithoutxp.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lifewithoutxp.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lifewithoutxp.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lifewithoutxp.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lifewithoutxp.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lifewithoutxp.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lifewithoutxp.wordpress.com&amp;blog=7601608&amp;post=51&amp;subd=lifewithoutxp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lifewithoutxp.wordpress.com/2009/05/12/useful-programs-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48bba50d04d964127aa518a258dbc79a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lifewithoutxp</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing and configuring a BitTorrent Client</title>
		<link>http://lifewithoutxp.wordpress.com/2009/05/10/installing-and-configuring-a-bittorrent-client/</link>
		<comments>http://lifewithoutxp.wordpress.com/2009/05/10/installing-and-configuring-a-bittorrent-client/#comments</comments>
		<pubDate>Sun, 10 May 2009 05:52:53 +0000</pubDate>
		<dc:creator>lifewithoutxp</dc:creator>
				<category><![CDATA[BitTorrent]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://lifewithoutxp.wordpress.com/?p=46</guid>
		<description><![CDATA[So, I wanted to add a BitTorrent Client. The one that I picked is Deluge, which is available in the Synaptic Package Manager. Select and install it. Once this is done you have to configure the ports Deluge uses. Preferences-&#62;Edit-&#62;Network, you need to select two ports, one incoming and one outgoing. Use high port numbers [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lifewithoutxp.wordpress.com&amp;blog=7601608&amp;post=46&amp;subd=lifewithoutxp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So, I wanted to add a BitTorrent Client. The one that I picked is Deluge, which is available in the Synaptic Package Manager. Select and install it.</p>
<p>Once this is done you have to configure the ports Deluge uses. Preferences-&gt;Edit-&gt;Network, you need to select two ports, one incoming and one outgoing. Use high port numbers and put them in, leave Deluge open.</p>
<p>Next you have to port forward your router. Use this <a href="http://portforward.com/" target="_blank">guide</a>.</p>
<p>Once this is done you need to add a rule to Firestarter. So start Firestarter with System-&gt;Administration-&gt;Firestarter.</p>
<p>To add a rule click on the policy tab. You now have to right click in allow service, select add rule, skip the name input, in the port input enter the <em>incoming</em> port number you allocated to Deluge, tick when the source is anyone and in the comments input type in Deluge. Go back to deluge and test the port, all should be ok.</p>
<p>You can also test your ports <a href="http://www.t1shopper.com/tools/port-scanner/#" target="_blank">here</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lifewithoutxp.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lifewithoutxp.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lifewithoutxp.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lifewithoutxp.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lifewithoutxp.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lifewithoutxp.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lifewithoutxp.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lifewithoutxp.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lifewithoutxp.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lifewithoutxp.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lifewithoutxp.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lifewithoutxp.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lifewithoutxp.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lifewithoutxp.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lifewithoutxp.wordpress.com&amp;blog=7601608&amp;post=46&amp;subd=lifewithoutxp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lifewithoutxp.wordpress.com/2009/05/10/installing-and-configuring-a-bittorrent-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48bba50d04d964127aa518a258dbc79a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lifewithoutxp</media:title>
		</media:content>
	</item>
		<item>
		<title>Apache, PHP 5 and MySql</title>
		<link>http://lifewithoutxp.wordpress.com/2009/05/08/apache-php5-and-mysql/</link>
		<comments>http://lifewithoutxp.wordpress.com/2009/05/08/apache-php5-and-mysql/#comments</comments>
		<pubDate>Fri, 08 May 2009 10:44:23 +0000</pubDate>
		<dc:creator>lifewithoutxp</dc:creator>
				<category><![CDATA[apache 2]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php 5]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[apache2]]></category>

		<guid isPermaLink="false">http://lifewithoutxp.wordpress.com/?p=42</guid>
		<description><![CDATA[I installed the standard Ubuntu and not the server edition. But now I need to install Apache 2, PHP 5 and MySql. It was pretty easy. In System-&#62;Administration-&#62;Synaptic Package Manager mark the following for installation: - apache2 - mysql-client-5.1 - mysql-admin - mysql-server-5.1 - php5 - php5-mysql - php5-curl - php5-mcrypt If you use mod_rewrite [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lifewithoutxp.wordpress.com&amp;blog=7601608&amp;post=42&amp;subd=lifewithoutxp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I installed the standard Ubuntu and not the server edition. But now I need to install Apache 2, PHP 5 and MySql. It was pretty easy.</p>
<p>In System-&gt;Administration-&gt;Synaptic Package Manager mark the following for installation:</p>
<p>- apache2</p>
<p>- mysql-client-5.1</p>
<p>- mysql-admin</p>
<p>- mysql-server-5.1</p>
<p>- php5</p>
<p>- php5-mysql</p>
<p>- php5-curl</p>
<p>- php5-mcrypt</p>
<p>If you use mod_rewrite in you .htaccess file you need to enable this by doing the following:</p>
<p><em>sudo a2enmod rewrite</em> this enables the rewrite module in apache 2</p>
<p><em>sudo gedit /etc/apache/sites-available/default</em> edit the default settings and change AllowOverRide from None to All</p>
<p><em>sudo /etc/init.d/apache2 reload</em> restarts the apache 2 server so it will load the new settings.</p>
<p>Edit the PHP ini file <em>sudo gedit /etc/php5/apache2/php.ini</em> and change the 16M to 32M for the line below. 16mb memory is too low for scripts and 32mb is a more reasonable amount.</p>
<p><em>memory_limit = 16M      ; Maximum amount of memory a script may consume (16MB)</em></p>
<p>Again you will have to reload the apache 2 server for the changes to take effect.</p>
<p>You might have to do something similar with the mysql configuration file <em>sudo gedit /etc/mysql/my.cnf</em> and change the <em>query_cache_size</em> and change the size to 64M (mb)</p>
<p>This time you will have to reload the mysql server by doing<em> sudo /etc/init.d/apache2 reload</em></p>
<p>Apart from the reload command you also have available <em>stop</em>, <em>start</em> and <em>status</em>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lifewithoutxp.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lifewithoutxp.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lifewithoutxp.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lifewithoutxp.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lifewithoutxp.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lifewithoutxp.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lifewithoutxp.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lifewithoutxp.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lifewithoutxp.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lifewithoutxp.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lifewithoutxp.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lifewithoutxp.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lifewithoutxp.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lifewithoutxp.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lifewithoutxp.wordpress.com&amp;blog=7601608&amp;post=42&amp;subd=lifewithoutxp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lifewithoutxp.wordpress.com/2009/05/08/apache-php5-and-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48bba50d04d964127aa518a258dbc79a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lifewithoutxp</media:title>
		</media:content>
	</item>
		<item>
		<title>Headless Chicken Mode™[1]</title>
		<link>http://lifewithoutxp.wordpress.com/2009/05/06/headless-chicken-mode%e2%84%a2-1/</link>
		<comments>http://lifewithoutxp.wordpress.com/2009/05/06/headless-chicken-mode%e2%84%a2-1/#comments</comments>
		<pubDate>Wed, 06 May 2009 14:16:16 +0000</pubDate>
		<dc:creator>lifewithoutxp</dc:creator>
				<category><![CDATA[Headless Chicken Mode™]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[firestarter]]></category>
		<category><![CDATA[firewall]]></category>

		<guid isPermaLink="false">http://lifewithoutxp.wordpress.com/?p=30</guid>
		<description><![CDATA[Occasionally even the best of us, go into  Headless Chicken Mode™. Usually happens when you read or hear something, get the right idea for the wrong reason and Lose IT™  in a bizarre and embarassing way. It just happened to me with firestarter. HELP HELP HELP I am not protected, the firewall hasn&#8217;t started! Well, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lifewithoutxp.wordpress.com&amp;blog=7601608&amp;post=30&amp;subd=lifewithoutxp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Occasionally even the best of us, go into  Headless Chicken Mode™.</p>
<p>Usually happens when you read or hear something, get the right idea for the wrong reason and Lose IT™  in a bizarre and embarassing way.</p>
<p>It just happened to me with firestarter.</p>
<p>HELP HELP HELP I am not protected, the firewall hasn&#8217;t started!</p>
<p>Well, after running the Wizard for Firestarter and restarting the PC I see on the bootup screen that firestarter is stopped then it fails to restart! Arghhh! No. I haven&#8217;t got any protection.</p>
<p>But a quick google search with the right keywords i.e jaunty firestarter boot not starting and I <a href="http://ubuntuforums.org/showthread.php?t=542756" target="_blank">click</a> on the first entry and read.</p>
<p>I try the example, and yes my firewall is working.</p>
<p>Oh well, it&#8217;s about time to bury my head in the sand!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lifewithoutxp.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lifewithoutxp.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lifewithoutxp.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lifewithoutxp.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lifewithoutxp.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lifewithoutxp.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lifewithoutxp.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lifewithoutxp.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lifewithoutxp.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lifewithoutxp.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lifewithoutxp.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lifewithoutxp.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lifewithoutxp.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lifewithoutxp.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lifewithoutxp.wordpress.com&amp;blog=7601608&amp;post=30&amp;subd=lifewithoutxp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lifewithoutxp.wordpress.com/2009/05/06/headless-chicken-mode%e2%84%a2-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48bba50d04d964127aa518a258dbc79a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lifewithoutxp</media:title>
		</media:content>
	</item>
		<item>
		<title>Temperature Sensors</title>
		<link>http://lifewithoutxp.wordpress.com/2009/05/06/temperature-sensors/</link>
		<comments>http://lifewithoutxp.wordpress.com/2009/05/06/temperature-sensors/#comments</comments>
		<pubDate>Wed, 06 May 2009 05:29:46 +0000</pubDate>
		<dc:creator>lifewithoutxp</dc:creator>
				<category><![CDATA[temperature sensors]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://lifewithoutxp.wordpress.com/?p=25</guid>
		<description><![CDATA[I&#8217;m always paranoid about my system overheating. Especially when I live in Thailand where it is both very hot and very humid. So, to monitor both hard disks and my ATI Radeoh EAH 3850 I did this. From the Synaptic Package Manager install the following: - lm-sensors - hddtemp - sensors-applet Now start a terminal [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lifewithoutxp.wordpress.com&amp;blog=7601608&amp;post=25&amp;subd=lifewithoutxp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m always paranoid about my system overheating. Especially when I live in Thailand where it is both very hot and very humid.</p>
<p>So, to monitor both hard disks and my ATI Radeoh EAH 3850 I did this.</p>
<p>From the Synaptic Package Manager install the following:</p>
<p>- lm-sensors</p>
<p>- hddtemp</p>
<p>- sensors-applet</p>
<p>Now start a terminal session and run sensors-detect. Answer Y to all the prompts, it will detect all sensors and also update a config file for you. You should run via root i.e sudo sensors-detect and enter a password.</p>
<p>Once this is done, if you run sensors, it should output all the sensor data. If you look at the output you should see some for the w83791d-i2c-0-2c with lots of sensor data, with a lines reading temp1, temp2, temp3 (this is the Winbond 3d chip and has sensors on it.</p>
<p>Now, right click on an empty space on your Gnome Panel, I chose the panel at the top of the screen and choose Add to Panel. Select Hardware Sensors Monitor. Now right click on the recently added gnome panel applet and select preferences. Click on Sensors tab, expand hddtemp, click on the hard disks you wanter to monitor, expand libsensors, for the gpu temp tick on temp1, rename the label temp1 to gpu, then active the ticks on any other temperatures you want to monitor.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lifewithoutxp.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lifewithoutxp.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lifewithoutxp.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lifewithoutxp.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lifewithoutxp.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lifewithoutxp.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lifewithoutxp.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lifewithoutxp.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lifewithoutxp.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lifewithoutxp.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lifewithoutxp.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lifewithoutxp.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lifewithoutxp.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lifewithoutxp.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lifewithoutxp.wordpress.com&amp;blog=7601608&amp;post=25&amp;subd=lifewithoutxp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lifewithoutxp.wordpress.com/2009/05/06/temperature-sensors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48bba50d04d964127aa518a258dbc79a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lifewithoutxp</media:title>
		</media:content>
	</item>
		<item>
		<title>ATI driver hell</title>
		<link>http://lifewithoutxp.wordpress.com/2009/05/06/ati-driver-hell/</link>
		<comments>http://lifewithoutxp.wordpress.com/2009/05/06/ati-driver-hell/#comments</comments>
		<pubDate>Wed, 06 May 2009 04:50:24 +0000</pubDate>
		<dc:creator>lifewithoutxp</dc:creator>
				<category><![CDATA[ATI drivers]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[ATI]]></category>
		<category><![CDATA[drivers]]></category>
		<category><![CDATA[EAH 3850]]></category>

		<guid isPermaLink="false">http://lifewithoutxp.wordpress.com/?p=21</guid>
		<description><![CDATA[Getting the ATI drivers to work in Ubuntu 9.04 is hell. These are things I have tried → 1. Applications-&#62;Add/Remove-&#62;System Tools-&#62;Ati Xorg Driver-&#62;Apply Changes (does no&#8217;t work) 2.System-&#62; Administration-&#62; Synaptic Package Manager -&#62; search for x-server and mark the  X.Org X server &#8212; ATI Radeon display driver to install -&#62; apply (doesn&#8217;t work) 3. System-&#62;Hardware [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lifewithoutxp.wordpress.com&amp;blog=7601608&amp;post=21&amp;subd=lifewithoutxp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Getting the ATI drivers to work in Ubuntu 9.04 is hell.</p>
<p>These are things I have tried →</p>
<p>1. Applications-&gt;Add/Remove-&gt;System Tools-&gt;Ati Xorg Driver-&gt;Apply Changes (does no&#8217;t work)</p>
<p>2.System-&gt; Administration-&gt; Synaptic Package Manager -&gt; search for x-server and mark the  X.Org X server &#8212; ATI Radeon display driver to install -&gt; apply (doesn&#8217;t work)</p>
<p>3. System-&gt;Hardware drivers-&gt;Active  (the ATI drivers) (doesn&#8217;t work)</p>
<p>4. Use EnvyNG, FAQ <a href="http://albertomilone.com/envyngfaq.html#A" target="_blank">here</a> (doesn&#8217;t work, screen flickered too much in certain aps, videos didn&#8217;t work occasionally.</p>
<p>Finally I found a solution, after reading everywhere on the forums and following many links.</p>
<p>This is the only <a href="http://wiki.cchtml.com/index.php/Ubuntu_Jaunty_Installation_Guide" target="_blank">guide</a> that works. It saved my sanity!</p>
<blockquote><p>Note, the guide says This may fail due to a missing dpmk. If so install this first. This should read dkms and not dpmk. Dkms (<strong>Dynamic Kernel Module Support Framework</strong>) should be installed already, but check in the Synaptic Package Manager to make sure.</p></blockquote>
<p>And here is my xorg.conf file for the EAH 3850.</p>
<p>Section &#8220;ServerLayout&#8221;</p>
<p>Identifier     &#8220;Default Layout&#8221;<br />
Screen      0  &#8220;Default Screen&#8221; 0 0<br />
EndSection</p>
<p>Section &#8220;Files&#8221;<br />
EndSection</p>
<p>Section &#8220;Module&#8221;<br />
Load  &#8220;glx&#8221;<br />
EndSection</p>
<p>Section &#8220;Monitor&#8221;<br />
Identifier   &#8220;Configured Monitor&#8221;<br />
VendorName   &#8220;Samsung&#8221;<br />
ModelName    &#8220;Samsung SyncMaster 943NW&#8221;<br />
HorizSync    31.5 &#8211; 100.0<br />
VertRefresh  60.0 &#8211; 75.0<br />
ModeLine     &#8220;1440&#215;900@60.00&#8243; 136.5 1440 1536 1688 1936 900 901 904 940 -hsync +vsync<br />
Option        &#8220;PreferredMode&#8221; &#8220;1440&#215;900@60.00&#8243;<br />
Option        &#8220;DPMS&#8221; &#8220;true&#8221;<br />
EndSection</p>
<p>Section &#8220;Device&#8221;<br />
Identifier  &#8220;Radeon HD 3850&#8243;<br />
Driver      &#8220;fglrx&#8221;<br />
Option        &#8220;MigrationHeuristic&#8221; &#8220;greedy&#8221;<br />
Option        &#8220;AccelMethod&#8221; &#8220;EXA&#8221;<br />
Option        &#8220;TexturedVideo&#8221; &#8220;on&#8221;<br />
Option        &#8220;VideoOverlay&#8221; &#8220;off&#8221;<br />
Option        &#8220;OpenGLOverlay&#8221; &#8220;off&#8221;<br />
Option        &#8220;UseFastTLS&#8221; &#8220;1&#8243;<br />
BusID       &#8220;PCI:1:0:0&#8243;<br />
EndSection</p>
<p>Section &#8220;Screen&#8221;<br />
Identifier &#8220;Default Screen&#8221;<br />
Device     &#8220;Radeon HD 3850&#8243;<br />
Monitor    &#8220;Configured Monitor&#8221;<br />
DefaultDepth     24<br />
SubSection &#8220;Display&#8221;<br />
Viewport   0 0<br />
Depth     24<br />
Modes    &#8220;1440&#215;900&#8243;<br />
EndSubSection<br />
EndSection</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lifewithoutxp.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lifewithoutxp.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lifewithoutxp.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lifewithoutxp.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lifewithoutxp.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lifewithoutxp.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lifewithoutxp.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lifewithoutxp.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lifewithoutxp.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lifewithoutxp.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lifewithoutxp.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lifewithoutxp.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lifewithoutxp.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lifewithoutxp.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lifewithoutxp.wordpress.com&amp;blog=7601608&amp;post=21&amp;subd=lifewithoutxp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lifewithoutxp.wordpress.com/2009/05/06/ati-driver-hell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48bba50d04d964127aa518a258dbc79a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lifewithoutxp</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu installation</title>
		<link>http://lifewithoutxp.wordpress.com/2009/05/03/a-new-begining/</link>
		<comments>http://lifewithoutxp.wordpress.com/2009/05/03/a-new-begining/#comments</comments>
		<pubDate>Sun, 03 May 2009 16:13:36 +0000</pubDate>
		<dc:creator>lifewithoutxp</dc:creator>
				<category><![CDATA[installation]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[installation tips]]></category>
		<category><![CDATA[partions]]></category>

		<guid isPermaLink="false">http://lifewithoutxp.wordpress.com/?p=13</guid>
		<description><![CDATA[Have to be honest here. I did try Linux about 8 years ago, a red hat distro. It messed up my pc pretty good and I had been scared to touch it since. This time, I decided on Ubuntu after a lot of reading. From what I saw it was supposed to be the easiest [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lifewithoutxp.wordpress.com&amp;blog=7601608&amp;post=13&amp;subd=lifewithoutxp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Have to be honest here. I did try Linux about 8 years ago, a red hat distro. It messed up my pc pretty good and I had been scared to touch it since.</p>
<p>This time, I decided on Ubuntu after a lot of reading. From what I saw it was supposed to be the easiest to install, was very well supported and was compatable with a lot of different hardware.</p>
<p>I decided to download the run of the mill, i386 livecd 9.04 version of Ubuntu. Here in Thailand, the mirrors where very slow. So I stopped the download , did a torrent search for the same iso and downloaded it, my previous incomeplete file wasn&#8217;t wasted as I just continued the downlaod via the torrent. After the download I did a md5 check to verify that the iso was bona fide, burnt the disk and rebooted, went into the bios, told the pc to boot from the cd, saved settings. PC rebooted and I went into the installtion.</p>
<p>I tried installtion 3 times. Because I have a triple-boot PC, on /dev/sdb (2nd hdd is the boot drive). First time, it put ubuntu on the /dev/sda (1st hdd), 2nd time round I used the partition manager, created the partion on 2nd hdd (/dev/sdb5) but for some reason didn&#8217;t put the bootloader on /dev/sdb1.</p>
<p>The right way to do it is</p>
<p>xp 1st partion</p>
<p>win7 2nd partion</p>
<p>then create a dummy partition of the space you don&#8217;t want to use i.e on 750gb hd xp 50gb, win7 50gb, 400gb on an empty ntfs partion and the rest for linux.</p>
<p>Choose option 1 for side by side in the partion manager and don&#8217;t forget to select the right hdd device, in my case /dev/sdb</p>
<p>Worked, and I was in Ubuntu.</p>
<p>Nope. I had made a mistake, instead of having 400gb empty ntfs partion it was 500gb.</p>
<p>Reboot, using the livecd. Choose option 1 to load ubuntu from the livecd. Go into the partition manager and shift the partition&#8217;s around, very easy compared to most I have used.</p>
<p>The amazing thing was it did originally load Ubuntu into a 2.5gb partion, with a 190mb swap partion. Don&#8217;t thing XP or Win7 can do, ever.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lifewithoutxp.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lifewithoutxp.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lifewithoutxp.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lifewithoutxp.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lifewithoutxp.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lifewithoutxp.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lifewithoutxp.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lifewithoutxp.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lifewithoutxp.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lifewithoutxp.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lifewithoutxp.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lifewithoutxp.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lifewithoutxp.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lifewithoutxp.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lifewithoutxp.wordpress.com&amp;blog=7601608&amp;post=13&amp;subd=lifewithoutxp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lifewithoutxp.wordpress.com/2009/05/03/a-new-begining/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/48bba50d04d964127aa518a258dbc79a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lifewithoutxp</media:title>
		</media:content>
	</item>
	</channel>
</rss>
