<?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>Technoblog.org &#187; vmware</title>
	<atom:link href="http://technoblog.org/tag/vmware/feed/" rel="self" type="application/rss+xml" />
	<link>http://technoblog.org</link>
	<description>Technoblogging</description>
	<lastBuildDate>Tue, 12 Apr 2011 11:47:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>WMware Workstation 7.1.2 (New Release)</title>
		<link>http://technoblog.org/2010/09/wmware-workstation-7-1-2-new-release/</link>
		<comments>http://technoblog.org/2010/09/wmware-workstation-7-1-2-new-release/#comments</comments>
		<pubDate>Fri, 24 Sep 2010 05:49:29 +0000</pubDate>
		<dc:creator>jrp</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[vmware workstation]]></category>

		<guid isPermaLink="false">http://technoblog.org/?p=111</guid>
		<description><![CDATA[Yesterday VMware released a new maintenance release for VMware Workstation. The new release includes over 50 bugfixes + security fixes. And: - Support for Live Debugging with Visual Studio 2010 - Fixed issues with Windows 7 SP1 Beta, RHEL 6.0 Beta and Fedora 13. - Its also supposed to be improved performance with &#8220;NAT&#8221;. - [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday VMware released a new maintenance release for VMware Workstation.</p>
<p>The new release includes over 50 bugfixes + security fixes.<br />
And:<br />
- Support for Live Debugging with Visual Studio 2010<br />
- Fixed issues with Windows 7 SP1 Beta, RHEL 6.0 Beta and Fedora 13.<br />
- Its also supposed to be improved performance with &#8220;NAT&#8221;.<br />
- And its tested with VMware Converter 4.3</p>
<p>The release notes can be found <a href="http://www.vmware.com/support/ws71/doc/releasenotes_ws712.html">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://technoblog.org/2010/09/wmware-workstation-7-1-2-new-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to kill a VM (VMware ESX 4.0)</title>
		<link>http://technoblog.org/2010/07/how-to-kill-a-vm-vmware-esx-4-0/</link>
		<comments>http://technoblog.org/2010/07/how-to-kill-a-vm-vmware-esx-4-0/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 18:00:17 +0000</pubDate>
		<dc:creator>jrp</dc:creator>
				<category><![CDATA[vmware]]></category>
		<category><![CDATA[ESX 3.5]]></category>
		<category><![CDATA[ESX 3.x]]></category>
		<category><![CDATA[ESX 4.0]]></category>
		<category><![CDATA[esxi]]></category>
		<category><![CDATA[ESXi 3.5]]></category>
		<category><![CDATA[ESXi 3.x]]></category>
		<category><![CDATA[vm-support]]></category>
		<category><![CDATA[vmkload_app]]></category>
		<category><![CDATA[VMware ESX 3.5]]></category>
		<category><![CDATA[VMware ESX 4.0]]></category>
		<category><![CDATA[vmware-cmd]]></category>
		<category><![CDATA[vSphere 4.0]]></category>

		<guid isPermaLink="false">http://technoblog.org/?p=104</guid>
		<description><![CDATA[Alright, it happens from time to time. Virtual Machines get stuck. Sometimes during boot, sometimes during shutdown and sometimes during a restore operation. So how do I kill a Virtual Machine? I wrote this post, back in 2009, for ESX 3.5: http://technoblog.org/2009/01/how-to-kill-a-stuck-or-hung-vm-vmware-esx-35/ Both the &#8220;vmware-cmd /.vmx stop hard&#8221; method, and the following methods work, sometimes.. [...]]]></description>
			<content:encoded><![CDATA[<p>Alright, it happens from time to time. Virtual Machines get stuck.<br />
Sometimes during boot, sometimes during shutdown and sometimes during a restore operation.</p>
<p>So how do I kill a Virtual Machine?</p>
<p>I wrote this post, back in 2009, for ESX 3.5:<br />
<a href="http://technoblog.org/2009/01/how-to-kill-a-stuck-or-hung-vm-vmware-esx-35/">http://technoblog.org/2009/01/how-to-kill-a-stuck-or-hung-vm-vmware-esx-35/</a></p>
<p>Both the &#8220;vmware-cmd
<path-to-file>/<vname>.vmx stop hard&#8221; method, and the following methods work, sometimes.. :</p>
<p>1. sudo vm-support -x<br />
2. sudo less -S /proc/vmware/vm/<vmid>/cpu/status<br />
3. sudo /usr/lib/vmware/bin/vmkload_app -k 9 <group-vm-id></p>
<p>But, when both of those fail? Then what?<br />
How to kill a stuck VM when everything else fails?</p>
<p>It&#8217;s a bit brutal, but it works, but be warned, you might corrupt your VM.</p>
<p>1. sudo bash (for simplicity)<br />
2. ps -ax | grep
<part-of-the-vm-name>
3. Find the first number to the left, in the string with the right VM. This is the PID.<br />
4. kill -9 <PID></p>
<p>Brutal? Yes. Efficient? Yes.</p>
]]></content:encoded>
			<wfw:commentRss>http://technoblog.org/2010/07/how-to-kill-a-vm-vmware-esx-4-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware Workstation 7.0 and VMware Fusion 3.0</title>
		<link>http://technoblog.org/2009/10/vmware-workstation-70-and-vmware-fusion-30/</link>
		<comments>http://technoblog.org/2009/10/vmware-workstation-70-and-vmware-fusion-30/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 08:12:19 +0000</pubDate>
		<dc:creator>jrp</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[vmware fusion]]></category>
		<category><![CDATA[vmware workstation]]></category>

		<guid isPermaLink="false">http://technoblog.org/?p=66</guid>
		<description><![CDATA[Woho, VMware released Workstation 7.0 and Fusion 3.0 a couple of days ago. VMware Workstation 7.0 Release notes: http://www.vmware.com/support/ws7/doc/releasenotes_ws7.html VMware Fusion 3.0 New Features: http://communities.vmware.com/docs/DOC-10957 A list of the most interesting new features in VMware Workstation: 256-bit Encryption — Secure your virtual machines with AES256-bit encryption to prevent unauthorized users from accessing or running the [...]]]></description>
			<content:encoded><![CDATA[<p>Woho, VMware released Workstation 7.0 and Fusion 3.0 a couple of days ago.</p>
<p>VMware Workstation 7.0 Release notes:<a href=" http://www.vmware.com/support/ws7/doc/releasenotes_ws7.html"></p>
<p>http://www.vmware.com/support/ws7/doc/releasenotes_ws7.html</a></p>
<p>VMware Fusion 3.0 New Features:<br />
<a href="http://communities.vmware.com/docs/DOC-10957">http://communities.vmware.com/docs/DOC-10957</a></p>
<p>A list of the most interesting new features in VMware Workstation:</p>
<p><span id="more-66"></span></p>
<p>256-bit Encryption — Secure your virtual machines with AES256-bit encryption to prevent unauthorized users from accessing or running the configuration files.</p>
<p>Pause a Virtual Machine — Free your CPU resources instantaneously without powering off or suspending the virtual machine.</p>
<p>Four-Way SMP — Create and run virtual machines with a total of four processor cores, which can consist of four single-core processors, two dual-core processors, or one quad-core processor like the new Intel i7.</p>
<p>AutoProtect —Schedule snapshots of your virtual machine to be created at a regular interval to ensure that you always have a snapshot available to revert to when needed.</p>
<p>Virtual Printing — Print from virtual machines without mapping network printers or installing printer drivers in the virtual machine. With virtual printing enabled in the virtual machine setting, all of the printers installed on the host operating system are available in the guest operating system. This functionality is enabled through a partnership with  ThinPrint, Inc.</p>
<p>Cross-Platform License Keys — Use the VMware Workstation 7.0 license key on both the Windows and Linux versions. Make sure you read the EULA for the terms and conditions that must be met when switching platforms.</p>
<p>Expand Virtual Disks — Increase the size of the virtual disk from within VMware Workstation. For Windows Vista and Windows 7 guests, the disk partitions can be adjusted without the use of additional software.</p>
<p>Compact Virtual Disks — Reclaim unused space from a virtual disk so that the host or another virtual machine can use it.</p>
<p>Drag and Drop Enhancements — Drag and drop enhancements include support for new file types including images and formatted text and extend the existing ability to drag and drop files to a broader set of guest and host operating systems.</p>
<p>Virtual Network Editor  — User interface enhancements have simplified creating and configuring virtual networks.</p>
<p>IPv6 Support — Create a bridged connection to an IPv6 network on VMware Workstation virtual machines.</p>
<p>Fuse Mount for Linux — Use Fuse to mount .vmdk disks on to the file system of Linux hosts.</p>
<p>If anyone got any experience with the new products (or upgrading) feel free to share! <img src='http://technoblog.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://technoblog.org/2009/10/vmware-workstation-70-and-vmware-fusion-30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to restart the management service in VMware ESX 3.5</title>
		<link>http://technoblog.org/2009/04/how-to-restart-the-management-service-vmware-esx-35/</link>
		<comments>http://technoblog.org/2009/04/how-to-restart-the-management-service-vmware-esx-35/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 10:45:04 +0000</pubDate>
		<dc:creator>jrp</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[ESX 3.5]]></category>
		<category><![CDATA[ESX 3.x]]></category>
		<category><![CDATA[mgmt-vmware]]></category>
		<category><![CDATA[VI Client]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[VMware Infrastructure Client]]></category>
		<category><![CDATA[vmware-cmd]]></category>

		<guid isPermaLink="false">http://technoblog.org/?p=39</guid>
		<description><![CDATA[How to restart the management on a VMware ESX 3.5: SSH to the vmware-esx box and do a: sudo service mgmt-vmware stop sudo service mgmt-vmware start or a: service mgmt-vmware restart or as root just: service mgmt-vmware stop service mgmt-vmware start or: service mgmt-vmware restart This would be the solution if you can&#8217;t connect to [...]]]></description>
			<content:encoded><![CDATA[<p>How to restart the management on a VMware ESX 3.5:<br />
SSH to the vmware-esx box and do a:<br />
<em>sudo service mgmt-vmware stop</em><br />
<em>sudo service mgmt-vmware start</em><br />
or a:<br />
<em>service mgmt-vmware restart</em></p>
<p>or as <strong>root</strong> just:<br />
<em>service mgmt-vmware stop</em><br />
<em>service mgmt-vmware start</em><br />
or:<br />
<em>service mgmt-vmware restart</em></p>
<p>This would be the solution if you can&#8217;t connect to the box using VMware Infrastructure Client, like if you get an error saying:<br />
Error Connecting<br />
VMware Infrastructure Client could not establish the initial connection with the server &#8220;<server name>&#8220;.<br />
Details: The server took too long to respond.</p>
]]></content:encoded>
			<wfw:commentRss>http://technoblog.org/2009/04/how-to-restart-the-management-service-vmware-esx-35/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto: ESXi shell access</title>
		<link>http://technoblog.org/2008/08/howto-esxi-shell-access/</link>
		<comments>http://technoblog.org/2008/08/howto-esxi-shell-access/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 11:06:16 +0000</pubDate>
		<dc:creator>jrp</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[esxi]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[shell access]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://technoblog.org/?p=23</guid>
		<description><![CDATA[How to get shell access to your VMWare ESXi server? By default the VMWare ESXi server don&#8217;t offer shell access (through the menu). But by doing the following, you will be able to access the shell (although its limited): 1. Hook up a screen and a keyboard to the VMWae ESXi server. 2. Press &#8220;Alt+F1&#8243; [...]]]></description>
			<content:encoded><![CDATA[<p>How to get shell access to your VMWare ESXi server?<br />
By default the VMWare ESXi server don&#8217;t offer shell access (through the menu).<br />
But by doing the following, you will be able to access the shell (although its limited):</p>
<p>1. Hook up a screen and a keyboard to the VMWae ESXi server.<br />
2. Press &#8220;Alt+F1&#8243;<br />
3. Write &#8220;unsupported&#8221; and press Enter (if you screw up, and think you&#8217;ve typed something wrong,<br />
you can use Ctrl+U to clear the input field).<br />
4. Enter the root password, an voila, shell access.</p>
]]></content:encoded>
			<wfw:commentRss>http://technoblog.org/2008/08/howto-esxi-shell-access/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>VMWare ESX 3.5 express patch working</title>
		<link>http://technoblog.org/2008/08/vmware-esx-35-express-patch-working/</link>
		<comments>http://technoblog.org/2008/08/vmware-esx-35-express-patch-working/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 11:12:18 +0000</pubDate>
		<dc:creator>jrp</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[A General System error occurred: Internal error]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[ESX 3.5]]></category>
		<category><![CDATA[ESXi 3.5]]></category>
		<category><![CDATA[patch]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://technoblog.org/?p=20</guid>
		<description><![CDATA[I can now confirm that the express patch VMWare released earlier today is working (tested on ESXi 3.5).]]></description>
			<content:encoded><![CDATA[<p>I can now confirm that the express patch VMWare released earlier today is working (tested on ESXi 3.5).</p>
]]></content:encoded>
			<wfw:commentRss>http://technoblog.org/2008/08/vmware-esx-35-express-patch-working/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware ESX 3.5.x Bug Update!</title>
		<link>http://technoblog.org/2008/08/vmware-esx-35x-bug-update/</link>
		<comments>http://technoblog.org/2008/08/vmware-esx-35x-bug-update/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 06:23:39 +0000</pubDate>
		<dc:creator>jrp</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[A General System error occurred: Internal error]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[ESX 3.5]]></category>
		<category><![CDATA[ESXi 3.5]]></category>
		<category><![CDATA[patch]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://technoblog.org/?p=17</guid>
		<description><![CDATA[The express patch is here! VMWare released it some hours ago. You can download it, and read more on VMWare&#8217;s page: VMware ESX/ESXi 3.5 Update 2 Patch Release]]></description>
			<content:encoded><![CDATA[<p>The express patch is here! VMWare released it some hours ago. You can download it, and read more on VMWare&#8217;s page: <a title="VMware ESX/ESXi 3.5 Update 2 Patch Release" href="http://www.vmware.com/landing_pages/esxexpresspatches.html">VMware ESX/ESXi 3.5 Update 2 Patch Release</a></p>
]]></content:encoded>
			<wfw:commentRss>http://technoblog.org/2008/08/vmware-esx-35x-bug-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware ESX 3.5.x Bug and the solution</title>
		<link>http://technoblog.org/2008/08/vmware-esx-35x-bug-and-the-solution/</link>
		<comments>http://technoblog.org/2008/08/vmware-esx-35x-bug-and-the-solution/#comments</comments>
		<pubDate>Tue, 12 Aug 2008 12:47:58 +0000</pubDate>
		<dc:creator>jrp</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[A General System error occurred: Internal error]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[ESX 3.5]]></category>
		<category><![CDATA[ESXi 3.5]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://technoblog.org/?p=14</guid>
		<description><![CDATA[Ok, so there is a really big bug in VMWare ESX 3.5/3.5i Update 2. So if you are running an older version, don&#8217;t upgrade! If you try to power on or resume a suspended Virtual Machine, you get the following error: A general system error occurred: Internal Error This Product has expired. Be sure that [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, so there is a really big bug in VMWare ESX 3.5/3.5i Update 2. So if you are running an older version, don&#8217;t upgrade! If you try to power on or resume a suspended Virtual Machine, you get the following error:</p>
<blockquote><p>A general system error occurred: Internal Error<br />
This Product has expired. Be sure that your host machine&#8217;s date and time are set correctly.</p></blockquote>
<p>The products affected are:</p>
<ul>
<li>VMware ESX 3.5.x</li>
<li>VMware ESXi 3.5.x Embedded</li>
<li>VMware ESXi 3.5.x Installable</li>
</ul>
<p>There is a knowledge base article about it: <a title="Unable to Power On virtual machine with “A General System error occurred: Internal error”" href="http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&amp;cmd=displayKC&amp;externalId=1006716">Unable to Power On virtual machine with “A General System error occurred: Internal error”<br />
</a></p>
<p>But according to the kb article:</p>
<blockquote><p>An issue with ESX/ESXi 3.5 Update 2 causes the product license to expire on August 12, 2008. VMware engineering has isolated the root cause of this issue and will reissue the various upgrade media including the ESX 3.5 Update 2 ISO, ESXi 3.5 Update 2 ISO, ESX 3.5 Update 2 upgrade tar and zip files by noon, PST on August 13.  These will be available from the page: http://www.vmware.com/download/vi.  Until then, VMware advises against upgrading to ESX/ESXi 3.5 Update 2.</p>
<p>The Update patch bundles will be released separately later in the week</p></blockquote>
<p>So? What if you&#8217;ve already upgraded. Some of you might run your entire infrastructure on ESX, and if &#8220;waiting for a patch&#8221; doesn&#8217;t sound like a suitable solution, there is a workaround!</p>
<p><strong>The Workaround</strong></p>
<p>Note: This is only tested on a ESXi 3.5 machine. If you try it on a ESX machine you might need to change the date format, just give it a try.</p>
<p>1. Log in to the Service Console (its the Command Line Interface).</p>
<p>2. Write <em><strong>date -s “08102008&#8243; </strong></em>and press enter.</p>
<p>You should now be able to power on your Virtual Machines (or resume them).</p>
<p>Note: You are setting back the date, so if you are running critical infrastructure on your virtual machines, you might want to turn of &#8220;host time sync&#8221;. So your VMs won&#8217;t sync the time with the server. And if you are running NTP on your ESX/i-server you should turn it off (if you don&#8217;t, there is no point in setting back the time).</p>
<p>You also might want to set the time further back, like a couple of weeks, depending on how long time you think VMWare will use to get the patch ready.</p>
]]></content:encoded>
			<wfw:commentRss>http://technoblog.org/2008/08/vmware-esx-35x-bug-and-the-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware Fusion 2.0 Beta 2</title>
		<link>http://technoblog.org/2008/08/vmware-fusion-20-beta-2/</link>
		<comments>http://technoblog.org/2008/08/vmware-fusion-20-beta-2/#comments</comments>
		<pubDate>Fri, 01 Aug 2008 17:20:12 +0000</pubDate>
		<dc:creator>jrp</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[fusion]]></category>
		<category><![CDATA[virtualization]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://technoblog.org/?p=8</guid>
		<description><![CDATA[VMware Fusion 2.0 Beta 2 is now available, and free to download! VMware also announced that existing users of VMware Fusion 1.x will be able to download Fusion 2.0 for free. Read the details here: WMware Fusion 2 Beta 2]]></description>
			<content:encoded><![CDATA[<p>VMware Fusion 2.0 Beta 2 is now available, and free to download! VMware also announced that existing users of  VMware Fusion 1.x will be able to download Fusion 2.0 for free.</p>
<p>Read the details here: <a title="VMware Fusion 2 Beta 2" href="http://www.vmware.com/communities/content/beta/fusion/fusion2_beta2.html">WMware Fusion 2 Beta 2</a></p>
]]></content:encoded>
			<wfw:commentRss>http://technoblog.org/2008/08/vmware-fusion-20-beta-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

