<?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>Kent Oyer &#187; Technology</title>
	<atom:link href="http://www.kentoyer.com/category/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kentoyer.com</link>
	<description>Adventures in I.T.</description>
	<lastBuildDate>Tue, 16 Mar 2010 16:21:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Dissecting and removing the SHV5 rootkit</title>
		<link>http://www.kentoyer.com/2009/12/21/removing-the-shv5-rootkit/</link>
		<comments>http://www.kentoyer.com/2009/12/21/removing-the-shv5-rootkit/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 08:07:57 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.kentoyer.com/?p=94</guid>
		<description><![CDATA[Yesterday I noticed some odd behavior on one of the Linux servers that I maintain. For one thing, every time I would run &#8216;top&#8217; or &#8216;ps&#8217;, I would see the following message
Unknown Hz value! (75) Assume 100
I decided to run rkhunter to check for rootkits. Needless to say, I was disappointed to discover that I [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I noticed some odd behavior on one of the Linux servers that I maintain. For one thing, every time I would run &#8216;top&#8217; or &#8216;ps&#8217;, I would see the following message</p>
<blockquote><p>Unknown Hz value! (75) Assume 100</p></blockquote>
<p>I decided to run rkhunter to check for rootkits. Needless to say, I was disappointed to discover that I had the SHV5 Rootkit on my machine. Let me tell you, it&#8217;s not a good feeling to know you&#8217;ve been hacked. Now I know common wisdom dictates that rootkit-infected machines be formatted and reloaded from scratch but that is not something you do without a lot of planning and preparation. The first thing I wanted to do was get this bad guy off my machine and try to minimize the damage.</p>
<h2>How it works</h2>
<p>I did some quick googling and I discovered <a href="http://www.jigsawboys.com/2008/06/01/lead-story-test/" target="_blank">this page</a> which was very helpful. However, I wanted to add a few more details that might help somebody out in the future. Basically what I discovered is that the rootkit installs an SSH server as a backdoor for the hacker to obtain access to your machine. In my case it was running on port 6522 but this is configurable by the hacker so your mileage my vary.</p>
<p>The hacker does not need to know any passwords to login to your system because the rootkit installs a public key file. The hacker simply needs to have the corresponding private key to authenticate to your server. Unfortunately all of this was invisible to me because the rootkit modifies several core utilities such as &#8216;ls&#8217; and &#8216;netstat&#8217; to hide it&#8217;s presence. The modified versions of these utilities work just like the real ones, except they don&#8217;t display anything that might be incriminating such as certain files and folders, or tell-tale processes.</p>
<h2>Cleaning it up</h2>
<p>The first thing you have to do before you can start cleaning up a rootkit infection is to get your original system files back. Luckily, the rootkit makes this rather easy by setting the immutable bit on the modified files. The purpose is to prevent anyone from deleting or overwriting the hacked files but it also gives us an easy way to tell what&#8217;s been modified. After you run rkhunter, there should be a log file in /var/log called rkhunter.log. Search through this log file to see what files have the immutable bit set. These are the ones we need to replace. I&#8217;ll use /bin/ls in my examples.</p>
<p>First, unset the immutable flag by using this command:</p>
<blockquote><p>chattr -sia /bin/ls</p></blockquote>
<p>Then, you can optionally make a copy of the hacked file for future use. This is helpful to compare the output from the hacked version to the output of the real version to see what&#8217;s different.</p>
<blockquote><p>mv /bin/ls /bin/ls.hacked</p></blockquote>
<p>Next, figure out which RPM your file belongs to by running this:</p>
<blockquote><p>rpm -qif /bin/ls</p></blockquote>
<p>This will tell you the <em>source </em>RPM. To get the <em>binary </em>RPM just replace &#8216;.src.rpm&#8217; with &#8216;.i386.rpm&#8217;. For example, on my machine, the source RPM for /bin/ls is:</p>
<blockquote><p>coreutils-5.97-19.el5.src.rpm</p></blockquote>
<p>So the file I needed to download was:</p>
<blockquote><p>coreutils-5.97-19.el5.i386.rpm</p></blockquote>
<p>You can Google the name of this file or look on popular RPM sites such as rpmfind.net or rpm.pbone.net. Once you are sure you have the <strong>correct </strong>file, install it using the &#8211;force command.</p>
<blockquote><p>rpm -i &#8211;force coreutils-5.97-19.el5.i386.rpm</p></blockquote>
<p>This tells the installer to try to reinstall the package even though it&#8217;s already installed and to replace files as necessary. If you get any errors about files that it can&#8217;t  replace, it&#8217;s probably because those files have the immutable bit set as well. Clear the immutable bit on those files and install the package again until there are no errors.</p>
<p>Repeat this whole process for every file in rkhunter.log that has the immutable bit set. You will probably have to download several different packages.</p>
<p>Now that you have reliable system commands you can begin ripping out the rootkit. Use netstat to see what ports are open and look for anything suspicious.</p>
<blockquote><p>netstat -ln &#8211;programs</p></blockquote>
<p>This is where it&#8217;s handy to have the output from the hacked version of netstat so you can compare. In my case, I found a program called ttyload that was listening on port 6522. I killed the process and deleted the file. After that I confirmed that my server was no longer accessible on that port. I also used the information in rkhunter.log to locate and delete a number of other files and folders as well. Here&#8217;s a list of some of the more interesting ones.</p>
<table border="0">
<tbody>
<tr>
<td>/usr/lib/libsh/hide</td>
<td>a script that removes traces of the hacker&#8217;s activities from the system log files.</td>
</tr>
<tr>
<td>/usr/lib/libsh/.backup</td>
<td>looks like a backup of all the system files that were modifed. DO NOT TRUST THIS.</td>
</tr>
<tr>
<td>/usr/lib/libsh/.sniff/shsniff</td>
<td>a packet sniffer used to capture passwords off the network.</td>
</tr>
<tr>
<td>/lib/libsh.so/sshk</td>
<td>the public key file for SSH authentication.</td>
</tr>
<tr>
<td>/lib/libsh.so/shdcf</td>
<td>a configuration file that determines (among other things) the port to listen on.</td>
</tr>
<tr>
<td>/usr/sbin/ttyload</td>
<td>a script that calls /bin/ttyload and /bin/ttymon. Used at startup.</td>
</tr>
</tbody>
</table>
<p>Make sure you check your /etc/inittab and all the files in /etc/rc.d to see if the rootkit is loading anything at startup. In my case I had to remove the line that calls /usr/sbin/ttyload from /etc/inittab.</p>
<h2>Final thoughts</h2>
<p>Here are some final thoughts on what to do next.</p>
<ol>
<li>Change the root password and the passwords for any other privileged accounts you may have.</li>
<li>Reboot the server and make sure things are still normal after the system comes back up.</li>
<li>Use iptables to block incoming connections on all ports other than the ones you need.</li>
<li>Strongly consider a full format and reload of your system.</li>
<li>Run rkhunter on a regular basis</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.kentoyer.com/2009/12/21/removing-the-shv5-rootkit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to backup your MySQL databases to separate files</title>
		<link>http://www.kentoyer.com/2009/09/01/mysql-backup-script-to-separate-files/</link>
		<comments>http://www.kentoyer.com/2009/09/01/mysql-backup-script-to-separate-files/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 13:57:43 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.kentoyer.com/?p=78</guid>
		<description><![CDATA[I wanted to dump all my MySQL databases using the mysqldump utility, but I wanted each database to be in a separate file. I couldn&#8217;t find a solution online, so I wrote my own script. Here it is:
#!/bin/sh
USERNAME=admin
PASSWORD=topsecret
BACKUPDIR=/var/local/mysql-backups

for i in $(mysql -u $USERNAME -p$PASSWORD -e "SHOW DATABASES;" --skip-column-names --batch)
do
   echo "Backing up database [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to dump all my MySQL databases using the mysqldump utility, but I wanted each database to be in a separate file. I couldn&#8217;t find a solution online, so I wrote my own script. Here it is:</p>
<pre>#!/bin/sh
USERNAME=admin
PASSWORD=topsecret
BACKUPDIR=/var/local/mysql-backups

for i in $(mysql -u $USERNAME -p$PASSWORD -e "SHOW DATABASES;" --skip-column-names --batch)
do
   echo "Backing up database $i"
   mysqldump -u $USERNAME -p$PASSWORD --opt $i | gzip &gt; $BACKUPDIR/$i.sql.gz
done</pre>
<p>Of course, you will need to edit the first two lines to reflect your own username and password. When you run this script, it will create a bunch of files in the <code>/var/local/mysql-backups</code> directory, one for each database. The files are compressed to save space.  Of course, you&#8217;ll need to make sure the destination directory exists.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kentoyer.com/2009/09/01/mysql-backup-script-to-separate-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove Personal Antivirus in 3 easy steps</title>
		<link>http://www.kentoyer.com/2009/08/18/remove-personal-antivirus-in-3-easy-steps/</link>
		<comments>http://www.kentoyer.com/2009/08/18/remove-personal-antivirus-in-3-easy-steps/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 02:57:01 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[antivirus]]></category>
		<category><![CDATA[malware]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[spyware]]></category>

		<guid isPermaLink="false">http://www.kentoyer.com/?p=71</guid>
		<description><![CDATA[What is Personal Antivirus?
Personal Antivirus sounds like a wonderful program that might be good to have, right? Actually, it&#8217;s just one of an increasingly common type of malware called a rogue anti-virus or rogue anti-spyware program. It appears to be harmless or even beneficial on the surface, but it&#8217;s actual goal is to scare you [...]]]></description>
			<content:encoded><![CDATA[<p><strong>What is Personal Antivirus?</strong></p>
<p>Personal Antivirus sounds like a wonderful program that might be good to have, right? Actually, it&#8217;s just one of an increasingly common type of malware called a rogue anti-virus or rogue anti-spyware program. It <em>appears </em>to be harmless or even beneficial on the surface, but it&#8217;s actual goal is to scare you into thinking you have some nasty virus that can only be removed by purchasing their removal software. It&#8217;s sort of like digital blackmail. Similar &#8220;products&#8221; include XP Antivirus, Antivirus 2008/2009 , Antivirus 360, etc&#8230;</p>
<p><strong>How do I get rid of it?</strong></p>
<p>Unlike most legitimate programs, there is no automatic un-installation method. That&#8217;s because the people behind these scams don&#8217;t want you to remove their software. They usually don&#8217;t show up in the list of programs in the Add/Remove Programs control panel applet. However, in many cases, manual removal is simple. Here are the steps I use. Keep in mind there are many different variants of this program so your mileage may vary.</p>
<p><strong>Step 1: Terminate the application</strong></p>
<p>Open Task Manager and look for a process called &#8220;pav.exe&#8221;. Highlight this process and click End Task. Once the process has been ended, the tray icon and application window should disappear.</p>
<p><strong>Step 2: Prevent the program from starting up</strong></p>
<p>Download a program called <a title="HijackThis Download Link" href="http://www.trendsecure.com/portal/en-US/tools/security_tools/hijackthis/download" target="_blank">HijackThis</a>. After you&#8217;ve installed it, run HijackThis and do a system scan. Look for any reference to the file pav.exe. Usually there will be at least one reference on a line that starts with &#8220;Run&#8221;. Put a check beside any that you find and click &#8220;Fix&#8221;</p>
<p><strong>Step 3: Delete the program files</strong></p>
<p>Delete the Personal Antivirus folder located in C:\Program Files.  You should also delete the shortcut on the desktop and the Personal Antivirus folder in the start menu.</p>
<p>That&#8217;s it. Reboot your computer just to make sure it doesn&#8217;t come back at startup. One optional step is to run a registry cleaner like <a href="http://www.ccleaner.com/" target="_blank">CCleaner</a> after you&#8217;re done. That should remove any leftover registry keys that reference the missing program file folder.</p>
<p><strong>So do I really have a virus?</strong></p>
<p>Just because Personal Antivirus was on your system and it said you have a virus, that does not mean you&#8217;re actually infected. However, I <em>strongly </em>recommend doing a full system scan with a legitimate anti-virus program and an anti-spyware program just to be safe. If you don&#8217;t already have one, here&#8217;s a list of some free alternatives.</p>
<p><span style="text-decoration: underline;">Free Anti-Virus software </span>(install only one at a time)<br />
<a href="http://free.avg.com/" target="_blank">AVG</a><br />
<a href="http://www.avast.com/" target="_blank">Avast</a><br />
<a href="http://www.free-av.com/" target="_blank">Avira AntiVir</a></p>
<p><span style="text-decoration: underline;">Free Anti-Spyware software</span><br />
<a href="http://www.safer-networking.org/en/home/index.html" target="_blank">Spybot Search &amp; Destroy</a><br />
<a href="http://www.lavasoft.com/" target="_blank">AdAware</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kentoyer.com/2009/08/18/remove-personal-antivirus-in-3-easy-steps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blackberry purgatory</title>
		<link>http://www.kentoyer.com/2009/08/04/blackberry-purgatory/</link>
		<comments>http://www.kentoyer.com/2009/08/04/blackberry-purgatory/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 00:16:32 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.kentoyer.com/?p=60</guid>
		<description><![CDATA[Blackberries. You gotta love em. They&#8217;re great when they work but sometimes it&#8217;s a challenge to get them setup properly. I must have taken at least three phone calls on Friday from clients who needed help getting their Blackberries setup with their corporate email accounts. Two of them were using BES (Blackberry Enterprise Server) and [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-68" style="margin: 3px;" title="Blackberry Bold" src="http://www.kentoyer.com/wp-content/images.jpg" alt="Blackberry Bold" width="130" height="98" />Blackberries. You gotta love em. They&#8217;re great when they work but sometimes it&#8217;s a challenge to get them setup properly. I must have taken at least three phone calls on Friday from clients who needed help getting their Blackberries setup with their corporate email accounts. Two of them were using BES (Blackberry Enterprise Server) and one was using BIS (Blackberry Internet Service).</p>
<p><strong>Blackberry Enterprise Server</strong><br />
If you&#8217;re lucky enough to have BES, setting up a new Blackberry is <em>usually </em>a piece of cake. All you have to do is add the user to the Blackberry Enterprise Manager, set an activation password and activate. I usually choose to do a wireless activation because it&#8217;s easier to do over the phone. Once you&#8217;ve created the password, tell the user to go to Options&#8230;Advanced Options&#8230;Enterprise Activation. Give them the password that you&#8217;ve setup for them and hit Activate. That&#8217;s it. <a title="Enterprise Activation Process" href="http://www.blackberry.com/support/enterpriseActivationPackage/enterpriseActivation/activationProcess.html" target="_blank">Here&#8217;s an overview</a> of how the process works.</p>
<p>Here&#8217;s a couple of things to watch out for:</p>
<p>1.<strong> Make sure they have a good signal.</strong> If their signal is spotty, it might take an excessively long time or it might not work at all. The amount of time it takes depends on how good their signal is and how much data they&#8217;re trying to sync. I&#8217;ve seen it take anywhere from 5-20 minutes.</p>
<p>2. <strong>Make sure they have the correct data plan</strong>.Phone carriers often charge more for a BES account than they do for a BIS account. If the user doesn&#8217;t have the higher-priced BES data plan, the carrier may not allow you to do an enterprise activation. Don&#8217;t make the same mistake I did. Call the carrier to confirm the data plan before you spend 2 hours trying to troubleshoot it on your own.</p>
<p>3. <strong>Not-so-helpful error messages</strong>. If the activation fails with &#8220;An error has occurred. Please contact your system administrator&#8221; there might be a problem with the password. Reset the password and have them try again. It takes awhile to get used to the Blackberry keyboard so choose a simple password that is easy to type on a small keyboard (e.g. all lower case, no numbers or symbols). This breaks all the normal rules of a good password, but it&#8217;s only a one-time activation password. After that, it&#8217;s never used again. You might also want to try wiping the handheld and starting fresh.</p>
<p><strong>Blackberry Internet Service</strong><br />
So your company wouldn&#8217;t spring for the Blackberry Enterprise Software? Not to worry. Your carrier provides you with something called Blackberry Internet Service (BIS). It&#8217;s a web-based application that allows you to setup an email account and control how messages are delivered. It&#8217;s actually a service provided by RIM, but each carrier has a different URL for accesing it (for branding of course). Here&#8217;s a couple of examples</p>
<p>Verizon: <a href="https://bis.na.blackberry.com/html?brand=vzw" target="_blank">https://bis.na.blackberry.com/html?brand=vzw</a><br />
Sprint: <a href="https://bis.na.blackberry.com/html?brand=sprint" target="_blank">https://bis.na.blackberry.com/html?brand=sprint</a><br />
AT&amp;T: <a href="http://bis.na.blackberry.com/html?brand=mycingular" target="_blank">http://bis.na.blackberry.com/html?brand=mycingular</a><br />
Centennial: <a href="http://centennial.blackberry.com/" target="_blank">http://centennial.blackberry.com/</a></p>
<p>If you can&#8217;t find your carrier, go to Google and type &#8220;BIS&#8221; and your carrier&#8217;s name in the search box. It will probably be one of the first hits that comes up.</p>
<p>If you&#8217;ve never signed up, click &#8220;Create New Account&#8221; You will be prompted for your phone&#8217;s PIN number and ESN number. Both can be found on the Options&#8230;Status screen. Once you&#8217;ve created an account on the BIS site, you will be able to create a Blackberry email address for your device. This will be something like joe123@vzw.blackberry.net. It doesn&#8217;t really matter what the address is because once it&#8217;s set up, you simply forward your corporate email account to the Blackberry account. So it doesn&#8217;t matter if you&#8217;re using Exchange, Lotus Notes, Groupwise or some other random mail server. As long as you can forward mail, you&#8217;re in business. While you&#8217;re still logged in to the BIS website, make sure you edit the properties of your mail account and set the &#8220;reply-to&#8221; address to be your corporate email address. That way when you send a message from your Blackberry, the recipient will see a recognizable address rather than your generic Blackberry address.</p>
<p>That&#8217;s it. Note that BIS is also capable of downloading your mail directly from your corporate mail server using POP3 or IMAP. However, that can be tricky to get working and your mileage may vary. There is a wizard on the BIS website that attempts to auto-detect your mail server settings, but it doesn&#8217;t always work and you may have to specify the settings manually. I find it&#8217;s much simpler and easier to just forward messages to the Blackberry account. Have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kentoyer.com/2009/08/04/blackberry-purgatory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synchronize files between multiple computers without breaking a sweat</title>
		<link>http://www.kentoyer.com/2009/06/15/synchronize-files-between-multiple-computers-without-breaking-a-sweat/</link>
		<comments>http://www.kentoyer.com/2009/06/15/synchronize-files-between-multiple-computers-without-breaking-a-sweat/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 03:05:59 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[synchronization]]></category>

		<guid isPermaLink="false">http://www.vcomputertraining.com/wordpress/?p=17</guid>
		<description><![CDATA[If you have more than one computer that you use on a regular basis, it seems like the file you need is always on the other computer. Sure, you can use a flash drive but if that&#8217;s still too much work, you need Dropbox! I use it all the time to sync files between my [...]]]></description>
			<content:encoded><![CDATA[<p>If you have more than one computer that you use on a regular basis, it seems like the file you need is always on the other computer. Sure, you can use a flash drive but if that&#8217;s still too much work, you need Dropbox! I use it all the time to sync files between my work computer, laptop and home computer. Check it out, it&#8217;s free!</p>
<p><a href="https://www.getdropbox.com/referrals/NTMyMjI2OTk" target="_blank">http://www.getdropbox.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kentoyer.com/2009/06/15/synchronize-files-between-multiple-computers-without-breaking-a-sweat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Online Backup&#8230;with a buddy.</title>
		<link>http://www.kentoyer.com/2009/06/15/free-online-backup-with-a-buddy/</link>
		<comments>http://www.kentoyer.com/2009/06/15/free-online-backup-with-a-buddy/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 02:30:39 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[social networking]]></category>

		<guid isPermaLink="false">http://www.vcomputertraining.com/wordpress/?p=7</guid>
		<description><![CDATA[One of the questions I get asked the most is &#8220;How do I backup my PC?&#8221; Of couse, there&#8217;s a million ways to backup data but few are easy, reliable, or cheap. This might be the answer to all three of those problems. All you need is a high-speed Internet connection, and a friend.
http://www.cucku.com/
]]></description>
			<content:encoded><![CDATA[<p>One of the questions I get asked the most is &#8220;How do I backup my PC?&#8221; Of couse, there&#8217;s a million ways to backup data but few are easy, reliable, or cheap. This might be the answer to all three of those problems. All you need is a high-speed Internet connection, and a friend.</p>
<p><a href="http://www.cucku.com/" target="_blank">http://www.cucku.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kentoyer.com/2009/06/15/free-online-backup-with-a-buddy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Virtualization is coming to a desktop near you</title>
		<link>http://www.kentoyer.com/2009/06/15/virtualization-is-coming-to-a-desktop-near-you/</link>
		<comments>http://www.kentoyer.com/2009/06/15/virtualization-is-coming-to-a-desktop-near-you/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 02:13:34 +0000</pubDate>
		<dc:creator>Kent</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[virtualization]]></category>

		<guid isPermaLink="false">http://www.vcomputertraining.com/wordpress/?p=3</guid>
		<description><![CDATA[Everybody&#8217;s heard about server virtualization and what it can do to make your server room easier to manage. Now desktop virtualization is poised to become the next holy grail. Check out this video of Citrix&#8217;s new Xen Based Client Hypervisor.
]]></description>
			<content:encoded><![CDATA[<p>Everybody&#8217;s heard about server virtualization and what it can do to make your server room easier to manage. Now desktop virtualization is poised to become the next holy grail. Check out this video of Citrix&#8217;s new Xen Based Client Hypervisor.</p>
<a href="http://www.kentoyer.com/2009/06/15/virtualization-is-coming-to-a-desktop-near-you/"><p><em>Click here to view the embedded video.</em></p></a>
]]></content:encoded>
			<wfw:commentRss>http://www.kentoyer.com/2009/06/15/virtualization-is-coming-to-a-desktop-near-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
