<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Evolution - Tech Tips, Gadgets &amp; Internet Advice</title>
	<atom:link href="http://www.evolutiondna.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.evolutiondna.com</link>
	<description>Your Daily Dose of Digital DNA</description>
	<lastBuildDate>Mon, 20 Feb 2012 17:06:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
	<item>
		<title>Comment on How to install windows xp on a computer already running on ubuntu linux? by Optimist</title>
		<link>http://www.evolutiondna.com/2012/02/how-to-install-windows-xp-on-a-computer-already-running-on-ubuntu-linux/#comment-414</link>
		<dc:creator>Optimist</dc:creator>
		<pubDate>Mon, 20 Feb 2012 17:06:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.evolutiondna.com/2012/02/how-to-install-windows-xp-on-a-computer-already-running-on-ubuntu-linux/#comment-414</guid>
		<description>you can run xp as a guest on your host linux machine using virtualbox which is in the ubuntu repositories. </description>
		<content:encoded><![CDATA[<p>you can run xp as a guest on your host linux machine using virtualbox which is in the ubuntu repositories.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to install windows xp on a computer already running on ubuntu linux? by Why not?</title>
		<link>http://www.evolutiondna.com/2012/02/how-to-install-windows-xp-on-a-computer-already-running-on-ubuntu-linux/#comment-413</link>
		<dc:creator>Why not?</dc:creator>
		<pubDate>Mon, 20 Feb 2012 16:59:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.evolutiondna.com/2012/02/how-to-install-windows-xp-on-a-computer-already-running-on-ubuntu-linux/#comment-413</guid>
		<description>it depends on what you wanna do, if you want to keep ubuntu, id recommend creating a partition on your hard drive, then installing xp on the second partition, if you don&#039;t want to keep ubuntu anymore, i would just save all the data you had on it on removable media(flash drives Cd&#039;s) and just do a clean install of xp</description>
		<content:encoded><![CDATA[<p>it depends on what you wanna do, if you want to keep ubuntu, id recommend creating a partition on your hard drive, then installing xp on the second partition, if you don&#8217;t want to keep ubuntu anymore, i would just save all the data you had on it on removable media(flash drives Cd&#8217;s) and just do a clean install of xp</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on im running Linux on Windows XP as a virtual machine. Will it crash my computer? by castleon</title>
		<link>http://www.evolutiondna.com/2012/02/im-running-linux-on-windows-xp-as-a-virtual-machine-will-it-crash-my-computer-2/#comment-412</link>
		<dc:creator>castleon</dc:creator>
		<pubDate>Fri, 17 Feb 2012 12:21:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.evolutiondna.com/2012/02/im-running-linux-on-windows-xp-as-a-virtual-machine-will-it-crash-my-computer-2/#comment-412</guid>
		<description>Right that is what VMware is for.. so you can run and test things without making a mess of the guest OS.  Outside of the networking all changes are kept in that VM window.</description>
		<content:encoded><![CDATA[<p>Right that is what VMware is for.. so you can run and test things without making a mess of the guest OS.  Outside of the networking all changes are kept in that VM window.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Q&amp;A: how do I find out all of the programs that are running on my linux computer? by mb5_ca</title>
		<link>http://www.evolutiondna.com/2012/02/qa-how-do-i-find-out-all-of-the-programs-that-are-running-on-my-linux-computer/#comment-410</link>
		<dc:creator>mb5_ca</dc:creator>
		<pubDate>Tue, 07 Feb 2012 22:09:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.evolutiondna.com/2012/02/qa-how-do-i-find-out-all-of-the-programs-that-are-running-on-my-linux-computer/#comment-410</guid>
		<description>ps aux
 will show you a (possibly long) list of all running processes.

You can combine that command with grep, like this:
ps aux &#124; grep apache
ps aux &#124; grep mysql

It will show you your command, but if apache or mysql are running you will see that line also.</description>
		<content:encoded><![CDATA[<p>ps aux<br />
 will show you a (possibly long) list of all running processes.</p>
<p>You can combine that command with grep, like this:<br />
ps aux | grep apache<br />
ps aux | grep mysql</p>
<p>It will show you your command, but if apache or mysql are running you will see that line also.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Q&amp;A: how do I find out all of the programs that are running on my linux computer? by Ken H</title>
		<link>http://www.evolutiondna.com/2012/02/qa-how-do-i-find-out-all-of-the-programs-that-are-running-on-my-linux-computer/#comment-409</link>
		<dc:creator>Ken H</dc:creator>
		<pubDate>Tue, 07 Feb 2012 21:59:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.evolutiondna.com/2012/02/qa-how-do-i-find-out-all-of-the-programs-that-are-running-on-my-linux-computer/#comment-409</guid>
		<description>Look at the ps and top commands (these would be typed at a prompt, in a terminal window).

On my Fedora Core 5, there is a &quot;system monitor&quot; on the meny under system-&gt;administration that might help.

You don&#039;t specify which distribution you have, but most have package managers that will assist you in finding what is installed, as well as updating and installing new packages.  For Fedora, this would be yum.  Yast and apt are used on some other distributions.</description>
		<content:encoded><![CDATA[<p>Look at the ps and top commands (these would be typed at a prompt, in a terminal window).</p>
<p>On my Fedora Core 5, there is a &#8220;system monitor&#8221; on the meny under system->administration that might help.</p>
<p>You don&#8217;t specify which distribution you have, but most have package managers that will assist you in finding what is installed, as well as updating and installing new packages.  For Fedora, this would be yum.  Yast and apt are used on some other distributions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Q&amp;A: how do I find out all of the programs that are running on my linux computer? by Brent B</title>
		<link>http://www.evolutiondna.com/2012/02/qa-how-do-i-find-out-all-of-the-programs-that-are-running-on-my-linux-computer/#comment-408</link>
		<dc:creator>Brent B</dc:creator>
		<pubDate>Tue, 07 Feb 2012 21:22:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.evolutiondna.com/2012/02/qa-how-do-i-find-out-all-of-the-programs-that-are-running-on-my-linux-computer/#comment-408</guid>
		<description>The command is &quot;top&quot; (without the quotes)</description>
		<content:encoded><![CDATA[<p>The command is &#8220;top&#8221; (without the quotes)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How would I go about buying and installing windows vista on a linux ubuntu computer? by techygeek2008</title>
		<link>http://www.evolutiondna.com/2012/02/how-would-i-go-about-buying-and-installing-windows-vista-on-a-linux-ubuntu-computer/#comment-407</link>
		<dc:creator>techygeek2008</dc:creator>
		<pubDate>Sat, 04 Feb 2012 16:16:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.evolutiondna.com/2012/02/how-would-i-go-about-buying-and-installing-windows-vista-on-a-linux-ubuntu-computer/#comment-407</guid>
		<description>Unfortunately ... no you cant upgrade from linux to vista, but it is very straight forward, and surprisingly fast to install vista. when you insert the vista DVD, reboot the pc and make sure that your pc is set to read the dvd-rom drive on boot (this option will more than likely be in the bios settings, although some manufacturers let you do it from windows). vista will auto detect your current operating system, and ask you if you want to keep it or remove it, you make the choice and in about 20 mins you&#039;re up and running :)</description>
		<content:encoded><![CDATA[<p>Unfortunately &#8230; no you cant upgrade from linux to vista, but it is very straight forward, and surprisingly fast to install vista. when you insert the vista DVD, reboot the pc and make sure that your pc is set to read the dvd-rom drive on boot (this option will more than likely be in the bios settings, although some manufacturers let you do it from windows). vista will auto detect your current operating system, and ask you if you want to keep it or remove it, you make the choice and in about 20 mins you&#8217;re up and running <img src='http://www.evolutiondna.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Q&amp;A: Can i run full blown copy of linux while running my widows 7 ultimate at the same time. the same comp? by χєм∂є</title>
		<link>http://www.evolutiondna.com/2012/01/qa-can-i-run-full-blown-copy-of-linux-while-running-my-widows-7-ultimate-at-the-same-time-the-same-comp/#comment-405</link>
		<dc:creator>χєм∂є</dc:creator>
		<pubDate>Sun, 29 Jan 2012 06:02:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.evolutiondna.com/2012/01/qa-can-i-run-full-blown-copy-of-linux-while-running-my-widows-7-ultimate-at-the-same-time-the-same-comp/#comment-405</guid>
		<description>You cannot run them at the same time.

Since you&#039;re not a computer geek, partitioning (real dual-booting) is not the best way to go for you. It&#039;s dangerous and not recommended for someone who doesn&#039;t know the details of hard drives.

I recommend downloading Wubi. Wubi is a free Ubuntu installer which installs Ubuntu Linux as a program file inside Windows, so dangerous partitioning isn&#039;t necessary. If you end up not liking Ubuntu, it can be uninstalled easily like any other program within Windows. You will be allowed to choose which operating system to boot from at startup.

http://wubi-installer.org/</description>
		<content:encoded><![CDATA[<p>You cannot run them at the same time.</p>
<p>Since you&#8217;re not a computer geek, partitioning (real dual-booting) is not the best way to go for you. It&#8217;s dangerous and not recommended for someone who doesn&#8217;t know the details of hard drives.</p>
<p>I recommend downloading Wubi. Wubi is a free Ubuntu installer which installs Ubuntu Linux as a program file inside Windows, so dangerous partitioning isn&#8217;t necessary. If you end up not liking Ubuntu, it can be uninstalled easily like any other program within Windows. You will be allowed to choose which operating system to boot from at startup.</p>
<p><a href="http://wubi-installer.org/" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/wubi-installer.org/?referer=');">http://wubi-installer.org/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Q&amp;A: Can i run full blown copy of linux while running my widows 7 ultimate at the same time. the same comp? by Jeffrey Y</title>
		<link>http://www.evolutiondna.com/2012/01/qa-can-i-run-full-blown-copy-of-linux-while-running-my-widows-7-ultimate-at-the-same-time-the-same-comp/#comment-404</link>
		<dc:creator>Jeffrey Y</dc:creator>
		<pubDate>Sun, 29 Jan 2012 05:43:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.evolutiondna.com/2012/01/qa-can-i-run-full-blown-copy-of-linux-while-running-my-widows-7-ultimate-at-the-same-time-the-same-comp/#comment-404</guid>
		<description>You can download linux at ubuntu.com OR www.kubuntu.com

Install your apps in Package Manager

Cheers!</description>
		<content:encoded><![CDATA[<p>You can download linux at ubuntu.com OR <a href="http://www.kubuntu.com" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/www.kubuntu.com?referer=');">http://www.kubuntu.com</a></p>
<p>Install your apps in Package Manager</p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Q&amp;A: Can I use both Windows XP and Ubuntu Linux on the same computer? by buabba123</title>
		<link>http://www.evolutiondna.com/2012/01/qa-can-i-use-both-windows-xp-and-ubuntu-linux-on-the-same-computer/#comment-402</link>
		<dc:creator>buabba123</dc:creator>
		<pubDate>Thu, 26 Jan 2012 03:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.evolutiondna.com/2012/01/qa-can-i-use-both-windows-xp-and-ubuntu-linux-on-the-same-computer/#comment-402</guid>
		<description>First as a warning on the Virtual disk. I have tried that, it can be unstable and can have a heavy slowdown on your computer.

Actually the idea of two OS&#039;s on one computer may make it more stable in a manner of speaking. Lets say something goes wrong on your Windows part. Just jump into linux and figure out how to fix it. Or you can go vice versa (although windows does require extra software to recover linux). The only thing dangerous is the boot loader but I have not had any trouble with it and, if it really does get messed up, the live CD for ubuntu has fixes for the boot loader. I am curently dual booting my laptop and it only has about 20 GB. It has not failed once. 

Just as a side note, repartioning is a little unstable but after it is done, if everything is intact everything resumes stability.

Basicly, you are safe. Good Luck.</description>
		<content:encoded><![CDATA[<p>First as a warning on the Virtual disk. I have tried that, it can be unstable and can have a heavy slowdown on your computer.</p>
<p>Actually the idea of two OS&#8217;s on one computer may make it more stable in a manner of speaking. Lets say something goes wrong on your Windows part. Just jump into linux and figure out how to fix it. Or you can go vice versa (although windows does require extra software to recover linux). The only thing dangerous is the boot loader but I have not had any trouble with it and, if it really does get messed up, the live CD for ubuntu has fixes for the boot loader. I am curently dual booting my laptop and it only has about 20 GB. It has not failed once. </p>
<p>Just as a side note, repartioning is a little unstable but after it is done, if everything is intact everything resumes stability.</p>
<p>Basicly, you are safe. Good Luck.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

