<?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"
	>

<channel>
	<title>Fresh Code &#187; Install Guides</title>
	<atom:link href="http://dewful.com/?feed=rss2&#038;cat=68" rel="self" type="application/rss+xml" />
	<link>http://dewful.com</link>
	<description>Crisp, Clean, Practical Examples</description>
	<pubDate>Thu, 03 Nov 2011 01:34:44 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>Expand a VMWare Partition Vista / Ubuntu</title>
		<link>http://dewful.com/?p=97</link>
		<comments>http://dewful.com/?p=97#comments</comments>
		<pubDate>Fri, 14 Aug 2009 07:16:14 +0000</pubDate>
		<dc:creator>nartzpod</dc:creator>
		
		<category><![CDATA[Install Guides]]></category>

		<category><![CDATA[drive]]></category>

		<category><![CDATA[expand]]></category>

		<category><![CDATA[partition]]></category>

		<category><![CDATA[resize]]></category>

		<category><![CDATA[ubuntu]]></category>

		<category><![CDATA[virtual]]></category>

		<category><![CDATA[vista]]></category>

		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://dewful.com/?p=97</guid>
		<description><![CDATA[So I run Vmware on Vista with a virtual install of Ubuntu on an 8GB partition - well, the 8GB filled up, so I needed to expand the ext3 partition.
The three steps to take are:
1. Expand the VMWare partition using the vmware tool (comes with vmware workstation and others)
Here is a link that describes how [...]]]></description>
			<content:encoded><![CDATA[<p>So I run Vmware on Vista with a virtual install of Ubuntu on an 8GB partition - well, the 8GB filled up, so I needed to expand the ext3 partition.</p>
<p>The three steps to take are:</p>
<p>1. Expand the VMWare partition using the vmware tool (comes with vmware workstation and others)<br />
Here is a link that describes how to do this: http://4sysops.com/archives/expanding-a-virtual-vmware-disk/   . It is fairly easy to do.</p>
<p>The code looks something like this:</p>
<blockquote><pre><code>'vmware-vdiskmanager -x 10GB myDisk.vmdk'</code></pre>
</blockquote>
<p>2. Now, download a live cd that you can boot from, knoppix is the one I used http://knopper.net/knoppix-mirrors/index-en.html &#8212; just download an iso file of it. You&#8217;ll want to boot vmware from this iso, so what you do is in the Vmware Workstation sidebar, put this iso in the CD Drive (click on the CD drive and load this iso, easy!). Now you need to tell Ubuntu to boot from CD, so go to VM &#8211;> Power &#8211;> Power on to Bios. Now, this will start up the Vmware bios, now go to the boot menu and press the &#8216;+&#8217; sign to move the CD Drive up to the top (so it boots first before the hard drive, so that ubuntu will start from this live cd iso that we downloaded).</p>
<p>3. Now Knoppix should be loading, (you may have to hit like &#8216;return&#8217; to get it to start loading) - once its fully loaded, open up a terminal. type &#8216;gparted&#8217; in the terminal to run gparted. Now it should show all your partitions and such. Unmount all the drives you need to do stuff with using:</p>
<blockquote><p><code>su root</code></p></blockquote>
<blockquote><p><code>umount /dev/nameofdrive, i.e........  umount /dev/sda1</code></p></blockquote>
<p>If the swap partition becomes an issue root, i.e. you need to delete it, you need to turn it off first, so just do:</p>
<blockquote><p><code>swapoff -a</code></p></blockquote>
<p>Now, make sure there are no partitions between the free space and the original partition you want to expand. Simply select the partition you want to expand and select how much you want to expand it! Then click &#8216;apply&#8217; in gparted to actually do it, and it should take a while before saying completed.</p>
<p>If the swap partition is between the free space and the other partition, you will need to delete the swap partition and create a new one at the end of the free space.</p>
<p>Once you have hit &#8216;apply&#8217; in gparted, and it tells you everything was successful, shut it down, and then go back to vm&#8211;>power &#8211;> power on to bios and reset your boot so that it doesn&#8217;t run from CD first anymore. Then restart and it should load up your regular installation (in my case vmware), but this time with more space for you to use!</p>
<p><strong>Note:</strong> You should probably check that things are working, and you may have to make a few edits. First, you should type (as root, or on ubuntu use sudo as shown):</p>
<blockquote><pre>
<code>sudo fdisk -l<br />
&lt;/pre&gt;</code></p></blockquote>
<p>This will list all the partitions you have, make sure its set up properly. Now, if you deleted a swap file, you should check to see if the new swap you created is being used:</p>
<blockquote><pre>
<code>free -m<br />
&lt;/pre&gt;</code></p></blockquote>
<p>This should show how much swap is being used. If your swap is not on, well turn it on using 'swapon'. Use the command 'blkid' to check the names of your partitions, then edit the /etc/fstab file and make sure that the names of the partitions are all the same as the ones you saw when you used the blkid command. If they aren't, change the /etc/fstab file to the correct ones.</p>
]]></content:encoded>
			<wfw:commentRss>http://dewful.com/?feed=rss2&amp;p=97</wfw:commentRss>
		</item>
		<item>
		<title>C++ Eclipse Install CDT and MinGW GCC Plugin</title>
		<link>http://dewful.com/?p=95</link>
		<comments>http://dewful.com/?p=95#comments</comments>
		<pubDate>Fri, 14 Aug 2009 04:10:47 +0000</pubDate>
		<dc:creator>nartzpod</dc:creator>
		
		<category><![CDATA[Install Guides]]></category>

		<category><![CDATA[c++]]></category>

		<category><![CDATA[cdt]]></category>

		<category><![CDATA[eclipse]]></category>

		<category><![CDATA[guide]]></category>

		<category><![CDATA[help]]></category>

		<category><![CDATA[install]]></category>

		<category><![CDATA[mingw]]></category>

		<category><![CDATA[plugin]]></category>

		<category><![CDATA[setup]]></category>

		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://dewful.com/?p=95</guid>
		<description><![CDATA[I just succesfully installed c++ on eclipse using the CDT C++ plugin and MinGW compiler for windows Vista. There are a lot of plugins to get working. There were a few things that I had to set up, no doubt, so here are some notes for those of you trying to do the same thing:
0. [...]]]></description>
			<content:encoded><![CDATA[<p>I just succesfully installed c++ on eclipse using the CDT C++ plugin and MinGW compiler for windows Vista. There are a lot of plugins to get working. There were a few things that I had to set up, no doubt, so here are some notes for those of you trying to do the same thing:</p>
<p>0. Obviously you need to have downloaded eclipse first http://www.eclipse.org</p>
<p>1. Download the  Eclipse CDT Plugin http://www.eclipse.org/cdt/</p>
<p>2.  Now because I am on windows I need to install a c++ compiler (the CDT plugin doesn&#8217;t come with one!), so the recommended one is MinGW. Here is a link that says exactly how to install it, and exactly what you will need to install. http://www.mingw.org/wiki/Getting_Started. Note that there is an automatic installer.</p>
<p>At this point, DO NOT FORGET TO SET YOUR PATH VARIABLE! This is very easy on windows; http://www.java.com/en/download/help/path.xml this says how to do it.</p>
<p>If you happen to get the error:&#8221;Your connection appears to have dropped out. Reconnect your dial up or check your IE proxy settings.&#8221; then this means that sourceforge is having trouble downloading the file. What you should do is first make sure the installer is not on your desktop, retry it a few times, and then set your source forge default mirror settings - this can be done by signing up for a sourceforge account and then going to your account  <span><a class="chatzilla-link" href="https://sourceforge.net/account/" target="_content">https://sourceforge.net/account/</a> and clicking the Default Download Mirror under the main preferences page.<br />
</span></p>
<p>3. Now follow this guide to setting up the code environment - it is a little outdated but you should be able to follow it pretty easily:</p>
<p>http://www.codeproject.com/KB/tips/CPP_Dev_eclipse_CDT.aspx</p>
<p>4. Finally, you will need to set the path of the &#8216;includes&#8217; library, so to do this, go to Project -&gt; properties -&gt; C/C++ general -&gt; Paths and Symbols, then click on the &#8216;Includes Tab (first one), and under languages go to GNU C++, then click on the &#8216;Add&#8230;&#8217; button the right, and then select the folder C:\MinGW\include, and press enter.</p>
<p>Done!</p>
]]></content:encoded>
			<wfw:commentRss>http://dewful.com/?feed=rss2&amp;p=95</wfw:commentRss>
		</item>
		<item>
		<title>Getting a Production Server Up and Running: Django, Ubuntu, Nginx, Apache, Subversion, Memcache, UFW(firewall)</title>
		<link>http://dewful.com/?p=68</link>
		<comments>http://dewful.com/?p=68#comments</comments>
		<pubDate>Sat, 20 Jun 2009 03:13:52 +0000</pubDate>
		<dc:creator>nartzpod</dc:creator>
		
		<category><![CDATA[Install Guides]]></category>

		<category><![CDATA[Tutorials]]></category>

		<category><![CDATA[Apache]]></category>

		<category><![CDATA[Django]]></category>

		<category><![CDATA[install]]></category>

		<category><![CDATA[Mod wsgi]]></category>

		<category><![CDATA[nginx]]></category>

		<category><![CDATA[Server]]></category>

		<category><![CDATA[Subversion]]></category>

		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://dewful.com/?p=68</guid>
		<description><![CDATA[This post is for those of you self-starters that have never set up a whole server for a serious project, and want to learn how. Here is the links that I found that helped me most in the process. Its about installing apache, django, ubuntu, mod-wsgi, nginx, and subversion.
The first step is to go through [...]]]></description>
			<content:encoded><![CDATA[<p>This post is for those of you self-starters that have never set up a whole server for a serious project, and want to learn how. Here is the links that I found that helped me most in the process. Its about installing apache, django, ubuntu, mod-wsgi, nginx, and subversion.</p>
<p>The first step is to go through this guide:</p>
<p><a href="http://lethain.com/entry/2009/feb/13/the-django-and-ubuntu-intrepid-almanac/">The Django and Ubuntu Intrepid Almanac @ Irrational Exuberance</a></p>
<p>This assumes you have ubuntu installed - it shows how to get and install apache, nginx, and django.</p>
<p>Here is another similar one:</p>
<p><a href="http://www.meppum.com/2009/jan/17/installing-django-ubuntu-intrepid/">Installing Django on Ubuntu Intrepid: Django, Nginx, Apache, mod_wsgi, cmemcache | meppum.com</a></p>
<p>Now, you will need to set up subversion, these are the best links I found for that:</p>
<p>https://help.ubuntu.com/community/Subversion</p>
<p>http://www2.russbrooks.com:8000/2009/2/1/install-subversion-on-ubuntu-linux</p>
<p>http://articles.slicehost.com/2007/9/5/using-ssh-with-svnserve</p>
<p>http://svnbook.red-bean.com/en/1.1/ch04s02.html</p>
<p>If you have questions, feel free to ask them in the comments section.</p>
]]></content:encoded>
			<wfw:commentRss>http://dewful.com/?feed=rss2&amp;p=68</wfw:commentRss>
		</item>
	</channel>
</rss>
