<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Virtual Computer Blog</title>
	
	<link>http://orbit.virtualcomputer.com</link>
	<description>Official blog of Virtual Computer, Inc.</description>
	<lastBuildDate>Mon, 25 Jan 2010 16:07:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/VirtualComputer" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="virtualcomputer" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Paravirtualization in a Client Hypervisor Envrionment</title>
		<link>http://orbit.virtualcomputer.com/virtualization/paravirtualization-in-a-client-hypervisor-envrionment/</link>
		<comments>http://orbit.virtualcomputer.com/virtualization/paravirtualization-in-a-client-hypervisor-envrionment/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 16:07:01 +0000</pubDate>
		<dc:creator>Nils Nieuwejaar</dc:creator>
				<category><![CDATA[Client Hypervisor]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://orbit.virtualcomputer.com/?p=501</guid>
		<description><![CDATA[Client Virtualization In Depth: An ongoing series exploring the technology behind the next generation desktop.
My name is Nils Nieuwejaar. I&#8217;ve been a member of the engineering team at Virtual Computer since a little before we opened our doors two years ago. In this forum, I&#8217;ll be writing about a variety of technical issues, covering virtualization in general [...]]]></description>
			<content:encoded><![CDATA[<p><em><strong>Client Virtualization In Depth: </strong>An ongoing series exploring the technology behind the next generation desktop.</em></p>
<p>My name is Nils Nieuwejaar. I&#8217;ve been a member of the engineering team at Virtual Computer since a little before we opened our doors two years ago. In this forum, I&#8217;ll be writing about a variety of technical issues, covering virtualization in general and NxTop in particular.</p>
<p>Our primary focus at Virtual Computer is on solving a host of management problems for our customers. While we make extensive use of virtualization to solve these problems, we don&#8217;t usually think of ourselves as a virtualization company in the traditional sense. More to the point, we don&#8217;t necessarily expect our customers to have a deep familiarity with virtualization technology.</p>
<p>My goal here is not to make a virtualization expert out of anybody, but simply to give our users enough information to understand how the different components in the full NxTop system work. This knowledge will help them get the best performance out of the system, and help them diagnose any problems that may arise in their environments. I&#8217;ll be covering topics that future customers ask the sales team about, that current customers ask the support team about, and that the support team asks the engineering team about.</p>
<h3>Fully Virtualized I/O</h3>
<p>When discussing NxTop with customers, they frequently have questions about how I/O works in virtualized systems like NxTop. The answer to this simple question turns out to be somewhat complicated.</p>
<p>I&#8217;ll start by talking <em>fully virtualized I/O</em>, which may be the simplest case to understand and the most complex to implement. When a typical Windows application wants to read data from disk, it makes a system call into the operating system, and the operating system in turn makes a call into the device driver controlling that disk.</p>
<p>When running on bare metal (i.e., on a real machine instead of a virtual machine), the disk driver builds up a command structure describing the I/O operation it wants to perform (read/write, sector ID, size, etc.), and then writes a &#8220;start I/O&#8221; command to a special address in the computer&#8217;s memory. The disk hardware is notified when that special address is written to. The disk controller reads the command structure from the computer&#8217;s memory, triggers the hardware to carry out the operation it describes, and notifies the OS when the operation is complete. The OS then returns from the system call, and the application proceeds.</p>
<p><img class="alignnone size-full wp-image-512" src="http://orbit.virtualcomputer.com/wp-content/uploads/2010/01/metal2.png" alt="Bare-Metal I/O Model" width="276" height="312" /></p>
<p>The illustration above shows the different components you will find on a typical bare metal system. There are applications running on top of an operating system, and the operating system interacts directly with physical hardware.</p>
<p>The picture below shows a typical simple virtual platform:</p>
<p><img class="alignnone size-full wp-image-513" src="http://orbit.virtualcomputer.com/wp-content/uploads/2010/01/full.png" alt="Fully Virtualized I/O Model" width="563" height="373" /></p>
<p>Again we have applications running on an operating system, but in this case the operating system is running on top of a <em>hypervisor</em> instead of bare metal. A hypervisor is similar to an operating system, but instead of hosting applications like an operating system, it actually hosts operating systems. The hypervisor manages core resources like CPU and memory, and passes guest I/O requests to a virtual hardware platform. The virtual hardware that receives the I/O requests is nothing more than a piece of software owned and operated by a host operating system. The fundamental trick of virtualization is to make the guest operating system believe that it is interacting with real hardware instead of a piece of software.</p>
<p>(side note: whether the hypervisor and virtual hardware should be shown inside, beside, below, or on top of the host operating system varies from system to system, and gets into the distinction between &#8216;Type 1&#8242; and &#8216;Type 2&#8242; hypervisors, More on that in a different post.)</p>
<p>In a fully virtualized system, the disk driver believes that it is controlling a real hard drive. So to read a block of data from disk, it will build up exactly the same control structure described above, and it will write the &#8217;start I/O&#8217; command to exactly the same memory address. In this system however, it is the hypervisor that notices that that address has been written instead of a real disk controller. The hypervisor notifies the virtual hardware, which then reads the control structure out of memory, decodes it, and carries out the described operation.</p>
<p>In most cases, the guest&#8217;s disk is actually just a file in the host operating system&#8217;s file system. When the guest OS wants to read block 100 from its disk, the virtualization layer instead reads block 100 from the file. (side note: This is actually a significant oversimplification. In practice, a guest&#8217;s disks are stored in one or more files, each of which has a somewhat complex internal structure. More on this in another post.)</p>
<p>After the software layer reads the data from disk, it copies the data into the guest operating system&#8217;s memory, and sends it exactly the same &#8216;work completed&#8217; signal that a real disk controller would. The guest operating system continues on its merry way, unaware that the disk request was satisfied by virtual hardware rather than physical.</p>
<p>This sounds relatively simple, and indeed it is when reading a single disk block. However, the IDE interface includes dozens of commands, errors, and status variables. It includes programmed I/O and DMA, supports hard drives and CDROMs, and so on. The guest operating system takes a high-level file operation from an application, translates it into very detailed, low-level IDE commands, and then the virtual hardware has to decipher those low-level IDE commands and transform them into file operations on its virtual hard disk. Doing all of this work for every disk operation can be time consuming, which results in poor disk performance for applications running in the guest operating system.</p>
<h3>Paravirtualized I/O</h3>
<p>To help avoid the performance problems that come with operating on emulated hardware, we use a different I/O model for performance-sensitive devices such as disk and network. This model is referred to as <em>paravirtualization</em> as opposed to the <em>full virtualization</em> we&#8217;ve already discussed.</p>
<p>In paravirtualized I/O, the device driver running in the guest operating system understands that it is running on virtualized hardware. Instead of attempting to talk to a physical disk, a paravirtualized (PV) disk driver in the guest will communcate directly with a partner device driver running in the host OS. As illustrated below, the PV driver bypasses the virtual hardware model, avoiding all of the expensive encoding and decoding steps.</p>
<p><img class="alignnone size-full wp-image-514" src="http://orbit.virtualcomputer.com/wp-content/uploads/2010/01/pv.png" alt="Paravirtualized I/O Model" width="570" height="353" /></p>
<p>Just a couple of notes on terminology: since there is no disk device <em>per se</em> here &#8211; just two cooperating drivers, we typically don&#8217;t talk about &#8216;PV devices&#8217;. Instead we mostly talk about PV drivers. If you have ever used VMware&#8217;s Tools, VirtualBox&#8217;s Guest Additions, or Microsoft&#8217;s Hyper-V Integration Services in a virtual machine, you have been using some type of PV drivers.</p>
<p>Each driver actually has two parts: a front end and a back end. The frontend driver runs within the guest. It plugs into the guest operating system&#8217;s driver stack in essentially the same way a physical driver would, so the rest of the operating system interacts with it just like a physical device. The backend driver runs in the host operating system. It receives I/O requests from the frontend driver, and executes them. These I/O requests arrive from the guest fully formed in a commonly agreed upon format. There is no expensive decoding/translating process as with emulated devices.</p>
<p>In addition to communicating at a higher level, PV drivers generally offer additional opportunities for improved performance. We can change buffer sizes, queue depths, algorithms, or features at any time. Since the I/O model is simpler, it is easier to identify and fix any performance or correctness problems. For a single point of comparison: in NxTop Engine, basic IDE emulation takes 4 times as much code as the backend disk driver, and runs at a fraction of the speed.</p>
<p>Since the front end and back drivers are generally written in conjunction with one another, there is no ambiguity about the expected behavior. When writing software that emulates a particular hardware device, the documentation of the device&#8217;s behavior may be unavailable or incomplete. This may cause the implementor of the virtual hardware to be reluctant to support the highest performing and most complicated mechanisms, instead forcing the device driver to fallback to older, simpler, and better documented mechanisms.</p>
<p>The most significant drawback of the PV I/O model is that you need new drivers for each operating system you want to use as a guest. The devices provided by a fully virtualized system tend to be common enough that drivers will be available for nearly every OS. For PV I/O, you will always need to write new drivers. The NxTop platform includes PV drivers for disk, network, mouse, and USB for Windows XP, Vista, and Windows 7, which covers nearly all of our customers&#8217; needs.</p>
<p>The screenshot below shows a picture of the Windows 7 Device Manager, with the NxTop PV drivers installed on the NxTop Engine.</p>
<p><img class="alignnone size-full wp-image-521" src="http://orbit.virtualcomputer.com/wp-content/uploads/2010/01/devicemgr3.JPG" alt="Windows 7 Device Manager with NxTop" width="580" height="519" /></p>
<p>You may have noticed that prior to this I never mentioned whether I was describing the NxTop Engine (i.e., the client) or NxTop Center (i.e., the server). In fact, this discussion applies equally well to both components of the NxTop system. On the server, we make use of Microsoft&#8217;s Hyper-V Integration Services when the IT admin is managing and publishing a NxTop image. On the client, we make use of our own PV drivers when the end user is running the published image.</p>
<p>Finally, I should mention that there is another interesting type of I/O in a virtual environment: passthrough. We don&#8217;t currently make use of this in NxTop engine, but I&#8217;ll talk more about it in future posts.</p>
]]></content:encoded>
			<wfw:commentRss>http://orbit.virtualcomputer.com/virtualization/paravirtualization-in-a-client-hypervisor-envrionment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>One Big Thing We ‘Got Right’ With Hardware Compatibility</title>
		<link>http://orbit.virtualcomputer.com/virtualization/one-big-thing-we-%e2%80%98got-right%e2%80%99-with-hardware-compatibility/</link>
		<comments>http://orbit.virtualcomputer.com/virtualization/one-big-thing-we-%e2%80%98got-right%e2%80%99-with-hardware-compatibility/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 13:56:54 +0000</pubDate>
		<dc:creator>Doug Lane</dc:creator>
				<category><![CDATA[Client Hypervisor]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://orbit.virtualcomputer.com/?p=490</guid>
		<description><![CDATA[In my last post, I got on a bit of roll about how the various industry players are approaching client hypervisor hardware compatibility (or not as the case may be).  Now that I have that out of my system, I thought I would begin to describe some of the things I believe we did right [...]]]></description>
			<content:encoded><![CDATA[<p>In<a href="http://orbit.virtualcomputer.com/client-hypervisor/client-hypervisor-hardware-compatibility/" target="_blank"> my last post</a>, I got on a bit of roll about how the various industry players are approaching client hypervisor hardware compatibility (or not as the case may be).  Now that I have that out of my system, I thought I would begin to describe some of the things I believe we did right with our approach for NxTop.  I’ll start with a big one:</p>
<p><strong>NxTop is compatible with, but does not require, Intel vPro and VT-d.</strong></p>
<p>Several of the other client hypervisor products in works are being centered on Intel vPro.  This makes sense on one level, since vPro is at its core a management and control point that is independent of the operating system. A client hypervisor is a very logical extension of that. The rub is that there are many corporate PCs with years of life remaining in them that are not vPro enabled.  There are also many enterprises ordering large volumes of PCs who do not want to pay a premium for vPro-enabled PCs for all classes of users.  When you are dealing with hundreds of thousands of PCs, any incremental cost per unit adds up very quickly, so this is a real consideration in today’s budget conscious times.</p>
<p>One of the major stumbling blocks of server-based desktop virtualization is that while it offers significant management and security benefits, it can generally only be deployed for a subset of an organization’s users.  Limiting client hypervisor compatibility to the highest end of the corporate PC market and not providing backwards compatibility with existing business class PCs would impose the same limitations on the adoption of client-side virtualization.  For obvious reasons, we did not want to see that happen.</p>
<p>The primary aspect of vPro that is relevant to client virtualization is Intel Virtualization Technology for Directed I/O (VT-d).  VT-d extends the base Intel virtualization extensions for the x86 architecture that exist in most business class machines today (VT-x) to include an input/output memory management unit (IOMMU).  The IOMMU makes it possible to securely assign physical hardware components directly to specific virtual machines.  This has many practical uses (particularly in overcoming performance challenges in areas such as graphics), but it has some major downside in that it requires hardware-specific drivers in each virtual machine and makes supporting the full array of graphics cards quite challenging.  Stay tuned for more on this in a future post.</p>
<p>With NxTop, we have achieved a very high level of performance without reliance on IOMMU.  This enables NxTop Engine to run on any platform with VT-x.  So when we go into an enterprise where they are currently buying the latest Dell E-series PCs but they have a bunch of older D630s (usually with a mix of Intel and NVIDIA graphics chips), it’s never a problem to get started.  We are not talking to the client about a utopian management model in the future when all of their current PCs are in the graveyard.  We are saying, “Hey, let’s gets started—TODAY.”</p>
<p>With this as a backdrop, I do not in any way want to leave the impression that we don’t see value in both vPro and VT-d/IOMMU functionality.  Continuing innovation from the processor manufacturers will only expand the set of management and performance features we can offer as part of NxTop, and we are embracing this innovation with open arms.  However, we don’t think client virtualization can take off without support for a wide range of PC platforms both new and existing.</p>
]]></content:encoded>
			<wfw:commentRss>http://orbit.virtualcomputer.com/virtualization/one-big-thing-we-%e2%80%98got-right%e2%80%99-with-hardware-compatibility/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Client Hypervisor Hardware Compatibility Challenge</title>
		<link>http://orbit.virtualcomputer.com/client-hypervisor/client-hypervisor-hardware-compatibility/</link>
		<comments>http://orbit.virtualcomputer.com/client-hypervisor/client-hypervisor-hardware-compatibility/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 22:21:31 +0000</pubDate>
		<dc:creator>Doug Lane</dc:creator>
				<category><![CDATA[Client Hypervisor]]></category>

		<guid isPermaLink="false">http://orbit.virtualcomputer.com/?p=485</guid>
		<description><![CDATA[It was good fun winding down 2009 with a spirited debate over on BrianMadden.com about the future prospects of type-1 client hypervisor technology. A topic that came up that I feel warrants a bit more commentary is hardware compatibility for client hypervisors.
As I look back in the rearview mirror at two-plus years of talking with [...]]]></description>
			<content:encoded><![CDATA[<p>It was good fun winding down 2009 with <a href="http://www.brianmadden.com/blogs/appdetective/archive/2009/12/17/microsoft-hates-type-1-client-hypervisors.aspx">a spirited debate over on BrianMadden.com</a> about the future prospects of type-1 client hypervisor technology. A topic that came up that I feel warrants a bit more commentary is hardware compatibility for client hypervisors.</p>
<p>As I look back in the rearview mirror at two-plus years of talking with IT professionals and industry analysts about client hypervisor technology, hardware compatibility is by far the topic that has generated the most questions.  It isn&#8217;t all that surprising, since it is in fact one of the biggest challenges that comes with bringing bare-metal hypervisor technology from the datacenter to the PC.  There is critical functionality on end-user PCs that server hypervisors never needed to deal with, such as high performance graphics, wireless, power management, USB peripherals, laptop lid closure events, etc.</p>
<p>If I look outward at the rest of the industry, I see two reactions to this challenge.  The reaction among other desktop virtualization startups was to punt on the hypervisor. Implementing a bare-metal client hypervisor is hard, especially for a startup with a finite set of resources. It is much easier to focus efforts elsewhere and in full hand-waving mode say, &#8220;Type-1 client hypervisors will eventually be a ubiquitous commodity.&#8221;  As it happens, this is probably true.  However, it is not the case today, it definitely won&#8217;t be the case in 2010, and who can say with 100 percent certainty when (or if) it will ever be the case? I&#8217;d probably bet a hundred bucks on it but certainly not millions in venture capital. For startups, there is certainly risk in spreading yourself too thin, but there is greater risk in not being in control of your own destiny.  There is further risk in not being in control of the end-user experience, since that will ultimately make or break the success of client-side virtualization more than any other factor.</p>
<p>The incumbent desktop virtualization players followed a different approach. They are tackling the client hypervisor but zeroing in on a <strong>very</strong> small hardware compatibility list.  They already have a captive audience (and revenue stream) with their server virtualization and server-hosted desktop virtualization products, so the bar for them is simply to show enough forward progress with client hypervisors to freeze their customers.  This worked for a while in 2009, but we saw the freeze start to thaw when the major virtualization players laid a collective client hypervisor goose egg at VMworld 2009.  VMware shops that had told us &#8220;looks great, but we&#8217;re gonna wait to see CVP&#8221; came calling again in September.  We are seeing the thaw turn into a full melt now that the &#8220;late 2009&#8243; client hypervisor target the big guys communicated has come and gone.  This won&#8217;t last forever, but we are certainly not going to let the window of opportunity we have in early 2010 pass without capitalizing.</p>
<p>I won&#8217;t claim that we have achieved universal hardware compatibility with every PC on the planet, but I do believe that through a combination of a superior client hypervisor architecture, hard work, and close collaboration with key PC manufacturers, we are the undisputed leader in client hypervisor hardware compatibility.  In my next post, I will provide a detailed explanation of why this is the case.</p>
]]></content:encoded>
			<wfw:commentRss>http://orbit.virtualcomputer.com/client-hypervisor/client-hypervisor-hardware-compatibility/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Optimizing the Client Hypervisor User Experience</title>
		<link>http://orbit.virtualcomputer.com/virtualization/optimizing-the-client-hypervisor-user-experience/</link>
		<comments>http://orbit.virtualcomputer.com/virtualization/optimizing-the-client-hypervisor-user-experience/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 18:28:07 +0000</pubDate>
		<dc:creator>Doug Lane</dc:creator>
				<category><![CDATA[Client Hypervisor]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://orbit.virtualcomputer.com/?p=481</guid>
		<description><![CDATA[Yesterday, we announced an update pack for the NxTop 1.2 release that set the world on fire at VMworld back in August.  NxTop 1.2 was really more than a point release for us, since we added some fairly significant improvements to the product.  Notable among them were seamless integration of our NxTop Center [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday, <a href="http://www.virtualcomputer.com/About/press/Virtual-Computer-Releases-Performance-Feature-Updates">we announced an update pack</a> for the NxTop 1.2 release that <a href="http://www.virtualcomputer.com/About/press/nxtop-named-desktop-virtualization-finalist-for-best-of-vmworl">set the world on fire at VMworld back in August</a>.  NxTop 1.2 was really more than a point release for us, since we added some fairly significant improvements to the product.  Notable among them were seamless integration of our NxTop Center management system with Windows Server 2008 w/Hyper-V and one-to-many management capabilities for Windows 7 a good two months before it reached general retail availability.</p>
<p>In the time since the 1.2 release, we have had our heads down and focused on taking the NxTop Engine experience to greater heights.  It hasn&#8217;t been glamorous stuff. For the most part, it has been benchmark, optimize, and repeat in a number of performance and user experience areas.  There are literally folks on our engineering team that have been so deep into Xen and the Windows stack that I am not sure they will ever be the same. <img src='http://orbit.virtualcomputer.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The result of these efforts is a great set of year end updates to NxTop that will allow our customers to accelerate their rollout plans as we head into the new year.  The coming year is predicted to be a big one for client hypervisor technology, and the fact that NxTop has the maturity and performance to run on real end-user desktops while competing offerings amble towards beta is very gratifying to us.</p>
<p>But don&#8217;t worry, we aren&#8217;t resting on our laurels. Work is already well underway on our next major release of NxTop, and based on what I have seen so far I think it will really turn some heads.</p>
]]></content:encoded>
			<wfw:commentRss>http://orbit.virtualcomputer.com/virtualization/optimizing-the-client-hypervisor-user-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMworld Highlight: The Virtual Computer Smart Car Makes the Rounds</title>
		<link>http://orbit.virtualcomputer.com/virtual-computer/vmworld-highlight-the-virtual-computer-smart-car-makes-the-rounds/</link>
		<comments>http://orbit.virtualcomputer.com/virtual-computer/vmworld-highlight-the-virtual-computer-smart-car-makes-the-rounds/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 14:48:41 +0000</pubDate>
		<dc:creator>Evan Karp</dc:creator>
				<category><![CDATA[Virtual Computer]]></category>
		<category><![CDATA[Desktop Virtualization]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[smart car]]></category>
		<category><![CDATA[vmworld]]></category>

		<guid isPermaLink="false">http://orbit.virtualcomputer.com/?p=468</guid>
		<description><![CDATA[The smart car photos from our Get Smart About Desktop Virtualization program are pouring in. Have you found the smart car at VMworld yet?]]></description>
			<content:encoded><![CDATA[<p>The smart car photos from our <a href="http://orbit.virtualcomputer.com/virtualization/get-smart-about-desktop-virtualization-at-vmworld-2009/">Get Smart About Desktop Virtualization</a> program are pouring in. You can see a sample of them to the left or on our <a href="http://www.flickr.com/virtualcomputer">Flickr page</a>. Here&#8217;s a great collage put together for us by Gary Newman (thanks, Gary!) of the smart car and a few other smart car-sized vehicles at VMworld:</p>
<p style="text-align: center;"><img class="aligncenter" src="/wp-content/uploads/smart-car-at-vmworld-collage.jpg" alt="Virtual Computer smart car at VMworld" /></p>
<p>(And, yes, that photo in the bottom center is us being asked to move the smart car!)</p>
<p>Hope everyone&#8217;s enjoying the show &#8212; if you haven&#8217;t stopped by for a NxTop demo yet, you can find us at booth #1940.</p>
]]></content:encoded>
			<wfw:commentRss>http://orbit.virtualcomputer.com/virtual-computer/vmworld-highlight-the-virtual-computer-smart-car-makes-the-rounds/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Have you seen the Virtual Computer smart car at VMworld yet?</title>
		<link>http://orbit.virtualcomputer.com/virtualization/have-you-seen-the-virtual-computer-smart-car-at-vmworld-yet/</link>
		<comments>http://orbit.virtualcomputer.com/virtualization/have-you-seen-the-virtual-computer-smart-car-at-vmworld-yet/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 19:05:20 +0000</pubDate>
		<dc:creator>Evan Karp</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[smart car]]></category>
		<category><![CDATA[Virtual Computer]]></category>
		<category><![CDATA[vmworld]]></category>

		<guid isPermaLink="false">http://orbit.virtualcomputer.com/?p=460</guid>
		<description><![CDATA[Find the smart car at VMworld for a chance to win it! Stop by our VMworld booth (#1940) for details.]]></description>
			<content:encoded><![CDATA[<p>Find the smart car at VMworld for a chance to win it! Stop by our VMworld booth (#1940) for details.</p>
<p><img src="/wp-content/uploads/vmworld-smart-car.jpg" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://orbit.virtualcomputer.com/virtualization/have-you-seen-the-virtual-computer-smart-car-at-vmworld-yet/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Get Smart About Desktop Virtualization at VMworld 2009</title>
		<link>http://orbit.virtualcomputer.com/virtualization/get-smart-about-desktop-virtualization-at-vmworld-2009/</link>
		<comments>http://orbit.virtualcomputer.com/virtualization/get-smart-about-desktop-virtualization-at-vmworld-2009/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 12:10:17 +0000</pubDate>
		<dc:creator>Doug Lane</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[Desktop Virtualization]]></category>
		<category><![CDATA[nxtop]]></category>
		<category><![CDATA[PC Management]]></category>
		<category><![CDATA[vdi]]></category>
		<category><![CDATA[vmworld]]></category>
		<category><![CDATA[webinar]]></category>

		<guid isPermaLink="false">http://blog.virtualcomputer.com/?p=446</guid>
		<description><![CDATA[Get involved with the "Get Smart About Desktop Virtualization" program to discover the cost-saving benefits offered by client-side virtualization. With a chance to win a 2009 smart car, amazing NxTop demos at VMworld 2009, our new (and fully customizable) Desktop TCO Calculator and more, you'll know all you need to about desktop virtualization in no time!]]></description>
			<content:encoded><![CDATA[<p>With less than a week to go until VMworld, life has been pretty exciting around the Virtual Computer offices as we put the final polish on our latest NxTop product functionality demos.  Today, the excitement level reached a fever pitch, as we announced our new “<a href="http://www.virtualcomputer.com/About/press/get-smart-desktop-virtualization-compare-nxtop-vdi-pclm">Get Smart About Desktop Virtualization</a>” program that will formally kick off at VMworld.  The <a href="http://www.virtualcomputer.com/About/press/get-smart-desktop-virtualization-compare-nxtop-vdi-pclm">“Get Smart” program</a> will highlight how a PC management approach that leverages client-side virtualization provides significant cost-saving benefits versus both server-centric <img src="/wp-content/uploads/get-smart-about-desktop-virtualization.jpg" alt="Get Smart About Desktop Virtualization" hspace="6" vspace="6" align="left" />virtual desktop infrastructure (VDI) models and traditional agent-based PC management approaches.  The best part is that when the dust settles, one lucky IT professional will walk away with a cool new car that is….well, smart!</p>
<p>The “Get Smart” program will feature a number of activities at VMworld where attendees can learn about NxTop’s unique PC life cycle configuration management capabilities, as well as interact with some of our key partners who help bring it all together.  The more you interact with us and our partners, the more chances you will have to win the car.  Keep reading the blog and come by and see us at Booth #1940 next week to get all of the details, including some “extra credit” opportunities for all of you star pupils out there.</p>
<p>Travel budget blues keeping you away from VMworld this year?  There are still plenty of opportunities to get involved.  In conjunction with the “Get Smart” program, we have launched <a href="http://orbit.virtualcomputer.com">a new online community site</a> that includes a very nifty <a href="http://www.virtualcomputer.com/desktop-tco-calculator">total cost of ownership (TCO) calculator</a>.  The tool is highly configurable, so if you don’t like our cost assumptions, simply plug in your own.  Think our overall methodology is flawed?  <a href="http://orbit.virtualcomputer.com/forums">Stop by the forums and say what’s on your mind.</a>  While you are at it, sign up for one of our <a href="http://www.virtualcomputer.com/webinars">upcoming webinars on “The New Economics of PC Management,”</a> which will provide another chance to see NxTop in action, along with an in-depth review of our TCO methodology.  Online forum contributions and webinar attendance will earn VMworld attendees additional chances to win the car and provide those playing along at home with a chance to win.</p>
<p>Stay tuned more more contest details as VMworld gets under way.  See you in San Francisco!</p>
]]></content:encoded>
			<wfw:commentRss>http://orbit.virtualcomputer.com/virtualization/get-smart-about-desktop-virtualization-at-vmworld-2009/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Is There a More Innovative Massachusetts Company? We Don’t Think So.</title>
		<link>http://orbit.virtualcomputer.com/virtual-computer/is-there-a-more-innovative-massachusetts-company-we-dont-think-so/</link>
		<comments>http://orbit.virtualcomputer.com/virtual-computer/is-there-a-more-innovative-massachusetts-company-we-dont-think-so/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 21:10:34 +0000</pubDate>
		<dc:creator>Doug Lane</dc:creator>
				<category><![CDATA[Virtual Computer]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[mass innovation nights]]></category>
		<category><![CDATA[nxtop]]></category>

		<guid isPermaLink="false">http://blog.virtualcomputer.com/?p=397</guid>
		<description><![CDATA[Mass Innovation Nights is holding their first virtual innovation night on Wednesday, August 12. Virtual Computer will be "at the event" showcasing NxTop and seeing if any other Boston area startup can meet our challenge of bringing innovative products to the event.]]></description>
			<content:encoded><![CDATA[<p>Silicon Valley is generally considered to be the center of the startup universe.  However, with its blue chip educational institutions, top notch venture capital scene, and rich computing technology heritage, Massachusetts has quietly played home to some of the most innovative and successful companies the average consumer has never heard of.</p>
<p>Fortunately, there are some great efforts afoot to raise awareness of all of the amazing innovation going on in the Boston area.  <a href="http://www.boston.com/business/technology/innoeco/" target="_blank">Scott Kirsner’s Innovation Economy</a> blog (recently relocated to Boston.com) has become required reading for Boston area startups, and the folks over at <a href="http://www.xconomy.com/" target="_blank">Xconomy</a> and <a href="http://www.masshightech.com/" target="_blank">Mass High Tech</a> also do a fantastic job highlighting the innovative companies on the rise in Massachusetts.  Additionally, while we often catch flack for letting Facebook fly the coop from Harvard to Palo Alto, we have actually figured out how to use social media here on the east coast. </p>
<p>Case in point is <a href="http://massinnovationnights.com/" target="_blank">Mass Innovation Nights</a> (MIN), an organization that has emerged as the confluence of Massachusetts high tech innovators, the social networking world, the mainstream media, and the marketplace.  The organization holds monthly events at the Charles River Museum of Industry and Innovation in Waltham (You can’t find a more appropriate location than that!) where the hottest young companies is Massachusetts show off their latest innovations.</p>
<p>This month, MIN will be conducting its first “virtual” innovation night on Wednesday, August 12.  The event will kick-off at 6:30 p.m. on Twitter using the hashtag #MIN5.  (If you are new to Twitter, <a href="http://massinnovationnights.com/events/what-is-a-virtual-mass-innovation-night" target="_blank">the MIN site</a> has some good tips and tools for following hashtags.)  From there, the event will evolve into a phone-based “speed dating” style format with the help of some neat technology from past MIN participant <a href="http://www.blitztime.com/" target="_blank">BlitzTime.</a></p>
<p>One of the three rules for the virtual event is to play nice, but we are far too competitive for that at Virtual Computer.  So, we are putting out the challenge to the Boston startup community.  Do you think you have a more innovative product than us?  If so, the stage is set.  Let’s see what you’ve got!  We’ll be in on the virtual event, as well as jockeying for a spot in a future live Mass Innovation Night.  So, you better bring your biggest innovation, because we’ll be bringing <a href="http://www.virtualcomputer.com/Products+page" target="_blank">NxTop</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://orbit.virtualcomputer.com/virtual-computer/is-there-a-more-innovative-massachusetts-company-we-dont-think-so/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Change Is Coming to a PC Near You</title>
		<link>http://orbit.virtualcomputer.com/virtualization/change-is-coming-to-a-pc-near-you/</link>
		<comments>http://orbit.virtualcomputer.com/virtualization/change-is-coming-to-a-pc-near-you/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 04:27:28 +0000</pubDate>
		<dc:creator>Doug Lane</dc:creator>
				<category><![CDATA[Client Hypervisor]]></category>
		<category><![CDATA[Desktop Management]]></category>
		<category><![CDATA[Desktop Virtualization]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Brian Madden]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[rachel chalmers]]></category>
		<category><![CDATA[Virtual Computer]]></category>
		<category><![CDATA[webinar]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://blog.virtualcomputer.com/?p=390</guid>
		<description><![CDATA[By all accounts, virtualization is changing PCs. It's a big topic at this week's BriForum, and we'll be discussing the five ways that virtualization will change your PC in a webinar we're hosting next week with The 451 Group.]]></description>
			<content:encoded><![CDATA[<p>Greetings from Chicago, where I am attending <a href="http://www.brianmadden.com/" target="_blank">Brian Madden’s</a> seventh annual <a href="http://www.briforum.com" target="_blank">BriForum</a> event.  The event got off to a great start yesterday.  It is a smaller event as conferences go, but you won’t find a larger concentration of the brightest minds in desktop virtualization anywhere.  BriForum provides a great opportunity to see and touch some of the best virtualization technology available today, but I have been particularly drawn to some of the sessions focused on where this is all headed.  Chetan Venkatesh from <a href="http://www.atlantiscomputing.com/" target="_blank">Atlantis Computing</a> did a really interesting session yesterday morning called “Envisioning the Desktop of 2015: A Tale of Three Clouds and Liquid Desktop Computing,” and Brian Madden and Martin Ingram of <a href="http://www.appsense.com" target="_blank">AppSense</a> revisited their past predictions for the evolution of desktop computing in “Looking Towards the New Desktop.”  In both cases, the brand of client-side desktop virtualization we practice at Virtual Computer factored heavily into the presenters’ view of the future.</p>
<p>Walking around BriForum, one really gets the sense that there is a perfect storm of industry events brewing that is really going to cause desktop virtualization to take off in the next 12 months.  For example, all signs are that Microsoft “got it right” with Windows 7, and that its release will be a catalyst for many organizations to look for new and innovative ways to deploy and manage their desktops.  We think we have one for them.  If you happen to be a BriForum and would like to connect to see a live demo of NxTop, feel free to grab me by the shirt, ping me on Twitter (@dlane), or <a href="http://www.virtualcomputer.com/briforum" target="_blank">use the form</a> we have available on our web site.</p>
<p>Fortunately for me, my time spent contemplating the future of desktop virtualization with really sharp people will not end with my departure from BriForum on Thursday.  I am excited to be teaming up with Rachel Chalmers of The 451 Group next week on the webinar, “Five Ways Virtualization Is Changing Your PC.”  It will be held next Wednesday (July 29) at  11:30 a.m. ET.  We will explore a number of the ways in which client-side desktop virtualization will transform the PC for both IT admins and end-users, including:</p>
<ul>
<li>The ability to run multiple operating systems on a single device and easily move from a personal to a corporate environment</li>
<li>Easy migration from Windows XP to Windows Vista or soon Windows 7</li>
<li>Enhanced data protection, backup and security</li>
<li>Improved PC management for mobile and remote workers</li>
<li>Remote desktop access to your documents, settings and self-installed applications</li>
</ul>
<p><a href="https://www2.gotomeeting.com/register/547188867">Visit our registration page to learn more or to register.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://orbit.virtualcomputer.com/virtualization/change-is-coming-to-a-pc-near-you/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>It Was An Honor Just to Be Nominated…</title>
		<link>http://orbit.virtualcomputer.com/virtual-computer/it-was-an-honor-just-to-be-nominated/</link>
		<comments>http://orbit.virtualcomputer.com/virtual-computer/it-was-an-honor-just-to-be-nominated/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 13:39:58 +0000</pubDate>
		<dc:creator>Doug Lane</dc:creator>
				<category><![CDATA[Virtual Computer]]></category>
		<category><![CDATA[awards]]></category>
		<category><![CDATA[massnetcomms]]></category>
		<category><![CDATA[mitx]]></category>
		<category><![CDATA[promise award]]></category>

		<guid isPermaLink="false">http://blog.virtualcomputer.com/?p=377</guid>
		<description><![CDATA[Virtual Computer recently won two awards: the PriceWaterhouseCoopers Promise Award from MITX and "Best Product Concept" from MassNetComms.]]></description>
			<content:encoded><![CDATA[<p>…But winning was even better!  It was an exciting week for Virtual Computer as we won two awards in two days:</p>
<p>At the Massachusetts Innovation and Technology Exchange (MITX) 6<sup>th</sup> Annual Technology Awards this past Tuesday, Virtual Computer was awarded the PriceWaterhouseCoopers Promise Award in recognition of our efforts with NxTop.  If you are in the New England area, I encourage you to check out <a href="http://www.mitx.org/">MITX</a>.  It is a great confluence of people and organizations in the technology space focused on understanding “what’s next.”  We’re grateful to both MITX and PWC for the recognition.</p>
<p>On the following night, the <a href="http://www.massnetcomms.org/">Massachusetts Network Communications Council</a> (MassNetComms, for short) held its 2009 Innovators Summit, bringing together some of the hottest companies in New England for a series of panels that quickly turned competitive as the format shifted to tightly time boxed product pitches.  Fortunately, the combination of a great product and the persuasive powers of our VP of Engineering, <a href="http://www.virtualcomputer.com/About/peter-marconi">Peter Marconi</a>, garnered Virtual Computer “Best Product Concept” honors. </p>
<p>At the end of the day, our success is measured by what we deliver to customers and not by the size of our trophy case.  At the same time, it has been a grueling couple of months around the Virtual Computer offices putting the finishing touches on our latest product release, so it was great to see our team get some much deserved recognition.</p>
]]></content:encoded>
			<wfw:commentRss>http://orbit.virtualcomputer.com/virtual-computer/it-was-an-honor-just-to-be-nominated/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
