<?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>Virtu-Al.Net &#187; 3i</title>
	<atom:link href="http://www.virtu-al.net/category/3i/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.virtu-al.net</link>
	<description>Virtually everything is poshable</description>
	<lastBuildDate>Wed, 08 Feb 2012 23:47:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Dell ESXi Management</title>
		<link>http://www.virtu-al.net/2010/03/17/dell-esxi-management/</link>
		<comments>http://www.virtu-al.net/2010/03/17/dell-esxi-management/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 12:52:02 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[3i]]></category>
		<category><![CDATA[ESX/ESXi]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[PowerCLI]]></category>

		<guid isPermaLink="false">http://www.virtu-al.net/?p=1538</guid>
		<description><![CDATA[Unlike the traditional ESX software, the ESXi software does not have a service console. It helps reduce the installation footprint of the software and can allow the hypervisor to be directly installed on the system’s internal flash storage or a USB key. At the moment I am investigating moving to ESXi from ESX, after resolving [...]<p><a href="http://www.virtu-al.net/2010/03/17/dell-esxi-management/">Dell ESXi Management</a> is a post from: <a href="http://www.virtu-al.net">Virtu-Al</a>.<br>
Virtu-Al is one of the authors of VMware vSphere PowerCLI Reference: Automating vSphere Administration" <br><br>Buy it now from:
<a href="http://www.amazon.com/gp/product/0470890797?ie=UTF8&tag=virtal-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=0470890797" target="_blank">Amazon USA</a>
<a href="https://www.amazon.co.uk/dp/0470890797?tag=virtal-21&camp=1406&creative=6394&linkCode=as1&creativeASIN=0470890797&adid=11S7HEXGGN3JB7HNME6M&" target="_blank">Amazon UK
</a><a href="http://www.sybex.com/WileyCDA/SybexTitle/VMware-vSphere-PowerCLI-Reference-Automating-vSphere-Administration.productCd-0470890797.html" target="_blank">Sybex</a>
</p>
]]></description>
			<content:encoded><![CDATA[<p>Unlike the traditional ESX software, the ESXi software does not have a service console. It helps reduce the installation footprint of the software and can allow the hypervisor to be directly installed on the system’s internal flash storage or a USB key.</p>
<p>At the moment I am investigating moving to ESXi from ESX, after <a href="http://www.virtu-al.net/2010/03/05/another-reason-to-upgrade-to-esxi/" target="_blank">resolving the DSET issue</a> I was then faced with the management of the ESXi hosts, currently the full fat ESX hosts have the Dell open management agent installed on them and SNMP configured, this allows the Dell management server to keep track of the underlying hardware and report any hardware issues or firmware updates.</p>
<p><strong>But what happens with ESXi 4.0 and the removal of the service console ?</strong></p>
<p>Earlier with ESXi 3.5, OpenManage component were integrated with the downloadable Dell ESX3i ISO image<br />
but from ESXi 4.0 onwards, VMware introduced a new concept called vSphere Installation Bundle (VIB), this allows the end users to download VIB files and install it directly into ESXi 4.0. Dell are now posting their OpenManage component as a VIB on support.dell.com.</p>
<p>To help reduce the system footprint and to simplify deployment, the ESXi software does not have a traditional service console management interface where Dell OpenManage agents are installed. Instead, to provide the required hardware manageability, VMware has incorporated the standard Common Information Model (CIM) management profiles into the ESXi software.</p>
<p><span id="more-1538"></span></p>
<p>The CIM framework is an open standard framework that defines how managed hardware elements in a system are represented.The CIM framework consists of CIM providers developed by hardware vendors to enable monitoring and managing of the hardware device. By representing the hardware elements using standard CIM, ESXi provides any management tool (that implements the same open standards) the ability to manage the system.</p>
<p>The installation manual takes you through the install of this VIB using the RCLI and the vihostupdate command but if you are like me and wish to automate these tasks you could use the following PowerCLI script to install the VIB, this script not only installs the VIB but will also setup SNMP and the Advanced Configuration setting which tells ESXi to use the installed Dell components to report on the hardware via CIM.</p>
<pre class="brush: powershell; title: ; notranslate"># Set the following variables
$ESXHost = &quot;testesx4i&quot;
$SNMPCommunity = &quot;public&quot;
$SNMPTargetHost = &quot;192.168.0.50&quot;
$FolderName = &quot;oem-dell-openmanage-esxi_6.2.0-A00&quot;
$DellOMSA = &quot;c:\temp\$FolderName&quot;

Connect-VIServer $ESXHost
Write &quot;Retriving $ESXHost object&quot;
$VMHostObj = Get-VMHost $ESXHost
Write &quot;Checking for OMSA install files&quot;

if (-Not (Test-Path &quot;$DellOMSA\metadata.zip&quot;)){
	Write &quot;$DellOMSA does not exist, please make sure this is the OMSA zip file extracted contents.&quot;
	Exit
} Else {
	Write &quot;Install files found&quot;
}
Write &quot;Copying OMSA client to the host datastore&quot;
$ds = $VMHostObj | Get-Datastore | Select -first 1
Copy-DatastoreItem $DellOMSA $ds.DatastoreBrowserPath -Recurse

Write &quot;Installing Dell OMSA&quot;
$DSName = $ds.Name
$InstalledOMSA = $VMHostObj | Install-VMHostPatch -HostPath /vmfs/volumes/$DSName/$FolderName/metadata.zip

Write &quot;Enabling CIM OEM Providers&quot;
Set-VMHostAdvancedConfiguration -Name UserVars.CIMOEMProvidersEnabled -Value 1 | Out-Null

Write &quot;Removing Install files&quot;
$urlPath = &quot;https://&quot; + $esxhost + &quot;/folder/&quot; + $FolderName + &quot;?dcPath=ha-datacenter&amp;dsName=&quot; + $dsName
$fileMgr = Get-View (Get-View ServiceInstance).Content.FileManager
$fileMgr.DeleteDatastoreFile_Task($urlPath,$null)

If ($InstalledOMSA.NeedsRestart -eq $true){
	$Reboot = Read-Host &quot;A reboot is needed type YES to reboot now or press enter to complete the install:&quot;
	If ($Reboot -eq &quot;YES&quot;){
		Write &quot;Putting host into maintenance Mode&quot;
		Set-VMHost $VMHostObj -State Maintenance -Confirm:$false | Out-Null
		Write &quot;Rebooting host now&quot;
		Restart-VMHost $VMHostObj -Confirm:$false | Out-Null
	} Else {
		Write &quot;A reboot is needed before the DELL OMSA will work correctly&quot;
	}
}

If ((Get-VMHostSnmp).ReadOnlyCommunities -ne $SNMPCommunity){
	Write &quot;Setting SNMP Configuration&quot;
	$VMHostObj | Get-VMHostsnmp | Set-VMHostSnmp -TargetHost $SNMPTargetHost -TargetCommunity $SNMPCommunity -AddTarget -ReadOnlyCommunity $SNMPCommunity -Enabled:$true
}

Write &quot;OMSA Install Completed&quot;
</pre>
<p>To use the above script:</p>
<ul>
<li>
<div>Download the latest version of the VIB (<a href="http://support.us.dell.com/support/downloads/download.aspx?c=us&amp;l=en&amp;s=gen&amp;releaseid=R250294&amp;formatcnt=1&amp;libid=0&amp;typeid=-1&amp;dateid=-1&amp;formatid=-1&amp;fileid=365571" target="_blank">currently 6.2.0 here</a>)</div>
</li>
<li>
<div>Extract the downloaded zip to a folder with the same name</div>
</li>
<li>
<div>Adjust the Foldername and DELLOMSA variables to reflect the path and folder name</div>
</li>
<li>
<div>Alter the ESXHost variable with the hostname or IP address of the server you will be installing to</div>
</li>
<li>
<div>Alter the SNMPCommunity variable to your settings</div>
</li>
<li>
<div>Alter the SNMPTargetHost variable to your setting (ITA server)</div>
</li>
<li>
<div>Run the script from a PowerCLI prompt.</div>
</li>
</ul>
<p>The hardware management data is provided to management applications using CIM Extensible Markup Language (XML) as well as WS-Management (WSMAN).</p>
<p>The VMware Infrastructure (VI) client provides hardware health status of various hardware devices. The VI client uses CIM XML to read hardware information provided by the CIM providers. Each of the monitored hardware devices are listed along with the health status.</p>
<p>Once this has been installed you will still not be able to access the normal OMSA website which is accessed via https://&lt;hostname&gt;:1311/ if you do want to access this you will need to install the ‘<a href="http://support.dell.com/support/downloads/download.aspx?c=us&amp;cs=555&amp;l=en&amp;s=biz&amp;releaseid=R252582&amp;SystemID=PWE_PNT_P3C_2850&amp;servicetag=&amp;os=WNET&amp;osl=en&amp;deviceid=2331&amp;devlib=0&amp;typecnt=0&amp;vercnt=14&amp;catid=&amp;impid=&amp;formatcnt=0&amp;libid=0&amp;typeid=-1&amp;dateid=-1&amp;formatid=-1&amp;fileid=369525" target="_blank">Dell OpenManage Server Administrator Managed Node</a>’ onto a windows or linux box which acts as a proxy and relays the information back to the webpage as below:</p>
<p><a href="http://www.virtu-al.net/wp-content/uploads/2010/03/image4.png"><img style="display: inline; border: 0px;" title="image" src="http://www.virtu-al.net/wp-content/uploads/2010/03/image_thumb4.png" border="0" alt="image" width="528" height="323" /></a></p>
<p>You will also be able to discover the host in your Dell OpenManage IT Assistant (ITA) using SNMP but it will not have the full functionality which was offered in the full fat version of ESX with OMSA installed, you can add limited network discovery and health monitoring by using the DRAC card and allowing ITA to find this, the below diagram gives an overview of ESXi management for Dell systems:</p>
<p><a href="http://www.virtu-al.net/wp-content/uploads/2010/03/image5.png"><img style="display: inline; border: 0px;" title="image" src="http://www.virtu-al.net/wp-content/uploads/2010/03/image_thumb5.png" border="0" alt="image" width="538" height="336" /></a></p>
<p>So the conclusion is just to keep in mind that the management interfaces which you may use at the moment for Dell servers to report on hardware and health performances may have changed and this will require your internal processes and monitoring to be adapted when adopting ESXi.</p>
<p>For further information on Dell system management for ESXi please see <a href="http://support.dell.com/support/edocs/software/eslvmwre/sysman/sysman.htm" target="_blank">this document</a>.</p>
<p><a href="http://www.virtu-al.net/2010/03/17/dell-esxi-management/">Dell ESXi Management</a> is a post from: <a href="http://www.virtu-al.net">Virtu-Al</a>.<br>
Virtu-Al is one of the authors of VMware vSphere PowerCLI Reference: Automating vSphere Administration" <br><br>Buy it now from:
<a href="http://www.amazon.com/gp/product/0470890797?ie=UTF8&tag=virtal-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=0470890797" target="_blank">Amazon USA</a>
<a href="https://www.amazon.co.uk/dp/0470890797?tag=virtal-21&camp=1406&creative=6394&linkCode=as1&creativeASIN=0470890797&adid=11S7HEXGGN3JB7HNME6M&" target="_blank">Amazon UK
</a><a href="http://www.sybex.com/WileyCDA/SybexTitle/VMware-vSphere-PowerCLI-Reference-Automating-vSphere-Administration.productCd-0470890797.html" target="_blank">Sybex</a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.virtu-al.net/2010/03/17/dell-esxi-management/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>vSphere 4.0 Quick Start Guide is here</title>
		<link>http://www.virtu-al.net/2009/11/27/vsphere-4-0-quick-start-guide-is-here/</link>
		<comments>http://www.virtu-al.net/2009/11/27/vsphere-4-0-quick-start-guide-is-here/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 12:47:44 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[3i]]></category>
		<category><![CDATA[ESX/ESXi]]></category>
		<category><![CDATA[PowerGUI / VESI]]></category>
		<category><![CDATA[VI4]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[PowerCLI]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://www.virtu-al.net/?p=1150</guid>
		<description><![CDATA[Its here, I&#8217;m an author, watch out JK Rowling ! Its been a while coming but the vSphere 4.0 Quick Start Guide is now available to buy on Amazon (US), we are working at getting it on the UK site but I&#8217;m just pleased to see it out there and available to buy. This book [...]<p><a href="http://www.virtu-al.net/2009/11/27/vsphere-4-0-quick-start-guide-is-here/">vSphere 4.0 Quick Start Guide is here</a> is a post from: <a href="http://www.virtu-al.net">Virtu-Al</a>.<br>
Virtu-Al is one of the authors of VMware vSphere PowerCLI Reference: Automating vSphere Administration" <br><br>Buy it now from:
<a href="http://www.amazon.com/gp/product/0470890797?ie=UTF8&tag=virtal-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=0470890797" target="_blank">Amazon USA</a>
<a href="https://www.amazon.co.uk/dp/0470890797?tag=virtal-21&camp=1406&creative=6394&linkCode=as1&creativeASIN=0470890797&adid=11S7HEXGGN3JB7HNME6M&" target="_blank">Amazon UK
</a><a href="http://www.sybex.com/WileyCDA/SybexTitle/VMware-vSphere-PowerCLI-Reference-Automating-vSphere-Administration.productCd-0470890797.html" target="_blank">Sybex</a>
</p>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.virtu-al.net/wp-content/uploads/2009/11/image6.png"><img style="border-bottom: 0px; border-left: 0px; margin: 0px 10px 0px 0px; display: inline; border-top: 0px; border-right: 0px" title="image" src="http://www.virtu-al.net/wp-content/uploads/2009/11/image_thumb6.png" border="0" alt="image" width="179" height="302" align="left" /></a></p>
<p>Its here, I&#8217;m an author, watch out JK Rowling !</p>
<p>Its been a while coming but the <a href="http://www.amazon.com/gp/product/1439263450?ie=UTF8&amp;tag=virtal-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1439263450" target="_blank">vSphere 4.0 Quick Start Guide</a> is now available to buy on Amazon (US), we are working at getting it on the UK site but I&#8217;m just pleased to see it out there and available to buy.</p>
<p>This book is a co-authored publication bought to you from some of the leading names in VMware bloggers and admins, and they also asked me to contribute too <img src='http://www.virtu-al.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The book is designed for you to carry around with you, its not a heavy duty full novel but more of a VMware admins help book which can be referred to when you are in the damp dark datacenter at 4am in the morning with no internet connection !</p>
<p>Having said that there is definitely something in there for everyone, whether you are new to VMware or a seasoned Pro.</p>
<p>Throughout the book you will find great tips, real life situations and numerous PowerCLI examples.</p>
<p>If you haven&#8217;t yet heard of this book then please read these wonderful comments already left on the Amazon post.</p>
<p>If you have read it then please,<a href="http://www.amazon.com/vSphere-Quick-Start-Guide-Virtualization/product-reviews/1439263450/ref=dp_top_cm_cr_acr_txt?ie=UTF8&amp;showViewpoints=1"> leave your comments along with the others</a>.</p>
<p><a href="http://www.amazon.com/gp/product/1439263450?ie=UTF8&amp;tag=virtal-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1439263450" target="_blank">Buy your copy now ! in fact buy two !</a></p>
<p><a href="http://www.virtu-al.net/2009/11/27/vsphere-4-0-quick-start-guide-is-here/">vSphere 4.0 Quick Start Guide is here</a> is a post from: <a href="http://www.virtu-al.net">Virtu-Al</a>.<br>
Virtu-Al is one of the authors of VMware vSphere PowerCLI Reference: Automating vSphere Administration" <br><br>Buy it now from:
<a href="http://www.amazon.com/gp/product/0470890797?ie=UTF8&tag=virtal-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=0470890797" target="_blank">Amazon USA</a>
<a href="https://www.amazon.co.uk/dp/0470890797?tag=virtal-21&camp=1406&creative=6394&linkCode=as1&creativeASIN=0470890797&adid=11S7HEXGGN3JB7HNME6M&" target="_blank">Amazon UK
</a><a href="http://www.sybex.com/WileyCDA/SybexTitle/VMware-vSphere-PowerCLI-Reference-Automating-vSphere-Administration.productCd-0470890797.html" target="_blank">Sybex</a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.virtu-al.net/2009/11/27/vsphere-4-0-quick-start-guide-is-here/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ESX 3.5 Update 4 Released</title>
		<link>http://www.virtu-al.net/2009/03/31/esx-35-update-4-released/</link>
		<comments>http://www.virtu-al.net/2009/03/31/esx-35-update-4-released/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 07:15:59 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[3i]]></category>
		<category><![CDATA[ESX/ESXi]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://www.virtu-al.net/?p=465</guid>
		<description><![CDATA[VMware ESX 3.5 Update 4 has been released, find the official download link here and the documentation here.   What&#8217;s New   Notes: Not all combinations of VirtualCenter and ESX Server versions are supported and not all of these highlighted features are available unless you are using VirtualCenter 2.5 Update 4 with ESX Server 3.5 [...]<p><a href="http://www.virtu-al.net/2009/03/31/esx-35-update-4-released/">ESX 3.5 Update 4 Released</a> is a post from: <a href="http://www.virtu-al.net">Virtu-Al</a>.<br>
Virtu-Al is one of the authors of VMware vSphere PowerCLI Reference: Automating vSphere Administration" <br><br>Buy it now from:
<a href="http://www.amazon.com/gp/product/0470890797?ie=UTF8&tag=virtal-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=0470890797" target="_blank">Amazon USA</a>
<a href="https://www.amazon.co.uk/dp/0470890797?tag=virtal-21&camp=1406&creative=6394&linkCode=as1&creativeASIN=0470890797&adid=11S7HEXGGN3JB7HNME6M&" target="_blank">Amazon UK
</a><a href="http://www.sybex.com/WileyCDA/SybexTitle/VMware-vSphere-PowerCLI-Reference-Automating-vSphere-Administration.productCd-0470890797.html" target="_blank">Sybex</a>
</p>
]]></description>
			<content:encoded><![CDATA[<p>VMware ESX 3.5 Update 4 has been released, find the official <a href="http://www.vmware.com/download/vi/">download link here</a> and the <a href="http://www.vmware.com/support/vi3/doc/vi3_esx35u4_rel_notes.html">documentation here</a>.</p>
<p> <span id="more-465"></span></p>
<div></div>
<p><span class="Apple-style-span" style="text-align: left; widows: 2; text-transform: none; text-indent: 0px; border-collapse: separate; font: 12px arial; white-space: normal; orphans: 2; letter-spacing: normal; color: #434343; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0"></p>
<blockquote>
<h3>What&#8217;s New</h3>
<p> </p>
<p style="padding-bottom: 0px; line-height: 17px; margin: 0px 0px 10px; padding-left: 0px; padding-right: 0px; padding-top: 0px"><strong style="font-weight: bold">Notes:</strong></p>
<p style="padding-bottom: 5px; list-style-type: decimal; padding-left: 0px; padding-right: 0px; padding-top: 5px">Not all combinations of VirtualCenter and ESX Server versions are supported and not all of these highlighted features are available unless you are using VirtualCenter 2.5 Update 4 with ESX Server 3.5 Update 4. See the<span class="Apple-converted-space"> </span><a style="background-image: none; padding-left: 0px; color: #3366cc; text-decoration: none" href="http://www.vmware.com/pdf/vi3_35/esx_3/r35/vi3_35_25_compat_matrix.pdf" target="_blank">ESX Server, VirtualCenter, and VMware Infrastructure Client Compatibility Matrixes</a><span class="Apple-converted-space"> </span>for more information on compatibility.</p>
<p style="padding-bottom: 5px; list-style-type: decimal; padding-left: 0px; padding-right: 0px; padding-top: 5px">This version of ESX Server requires a VMware Tools upgrade.</p>
<p style="padding-bottom: 0px; line-height: 17px; margin: 0px 0px 10px; padding-left: 0px; padding-right: 0px; padding-top: 0px">The following information provides highlights of some of the enhancements available in this release of VMware ESX Server:</p>
<p style="padding-bottom: 0px; line-height: 17px; margin: 0px 0px 10px; padding-left: 0px; padding-right: 0px; padding-top: 0px"><strong style="font-weight: bold">Expanded Support for Enhanced vmxnet Adapter<span class="Apple-converted-space"> </span></strong><strong style="font-weight: bold">—</strong><span class="Apple-converted-space"> </span>This version of ESX Server includes an updated version of the VMXNET driver (VMXNET enhanced) for the following guest operating systems:</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">Microsoft Windows Server 2003, Standard Edition (32-bit)</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">Microsoft Windows Server 2003, Standard Edition (64-bit)</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">Microsoft Windows Server 2003, Web Edition</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">Microsoft Windows Small Business Server 2003</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">Microsoft Windows XP Professional (32-bit)</p>
<p style="padding-bottom: 0px; line-height: 17px; margin: 0px 0px 10px; padding-left: 0px; padding-right: 0px; padding-top: 0px">The new VMXNET version improves virtual machine networking performance and requires VMware tools upgrade.</p>
<p style="padding-bottom: 0px; line-height: 17px; margin: 0px 0px 10px; padding-left: 0px; padding-right: 0px; padding-top: 0px"><strong style="font-weight: bold">Enablement of Intel Xeon Processor 5500 Series —</strong><span class="Apple-converted-space"> </span>Support for the Xeon processor 5500 series has been added. Support includes Enhanced VMotion capabilities. For additional information on previous processor families supported by Enhanced VMotion, see<span class="Apple-converted-space"> </span><a style="color: #3366cc; text-decoration: none" href="http://kb.vmware.com/kb/1003212" target="_blank">Enhanced VMotion Compatibility (EVC) processor support</a><span class="Apple-converted-space"> </span>(KB 1003212).</p>
<p style="padding-bottom: 0px; line-height: 17px; margin: 0px 0px 10px; padding-left: 0px; padding-right: 0px; padding-top: 0px"><strong style="font-weight: bold">QLogic Fibre Channel Adapter Driver Update —<span class="Apple-converted-space"> </span></strong>The driver and firmware for the QLogic fibre channel adapters have been updated to version 7.08-vm66 and 4.04.06 respectively. This release provides interoperability fixes for QLogic Management Tools for FC Adapters and enhanced NPIV support.</p>
<p style="padding-bottom: 0px; line-height: 17px; margin: 0px 0px 10px; padding-left: 0px; padding-right: 0px; padding-top: 0px"><strong style="font-weight: bold">Emulex Fibre Channel Adapter Driver Update</strong><span class="Apple-converted-space"> </span><strong style="font-weight: bold">—</strong><span class="Apple-converted-space"> </span>The driver for Emulex Fibre Channel Adapters has been upgraded to version 7.4.0.40. This release provides support for the HBAnyware 4.0 Emulex management suite.</p>
<p style="padding-bottom: 0px; line-height: 17px; margin: 0px 0px 10px; padding-left: 0px; padding-right: 0px; padding-top: 0px"><strong style="font-weight: bold">LSI megaraid_sas and mptscsi Storage Controller Driver Update —</strong><span class="Apple-converted-space"> </span>The drivers for LSI megaraid_sas and mptscsi storage controllers have been updated to version 3.19vmw and 2.6.48.18 vmw respectively. The upgrade improves performance and enhance event handling capabilities for these two drivers.</p>
<p style="padding-bottom: 0px; line-height: 17px; margin: 0px 0px 10px; padding-left: 0px; padding-right: 0px; padding-top: 0px"><strong style="font-weight: bold">Newly Supported Guest Operating Systems</strong><span class="Apple-converted-space"> </span>— Support for the following guest operating systems has been added specifically for this release:</p>
<p style="padding-bottom: 0px; line-height: 17px; margin: 0px 0px 10px; padding-left: 0px; padding-right: 0px; padding-top: 0px">For more complete information about supported guests included in this release, see the Guest Operating System Installation Guide:<span class="Apple-converted-space"> </span><a style="color: #3366cc; text-decoration: none" href="http://www.vmware.com/pdf/GuestOS_guide.pdf" target="_blank">http://www.vmware.com/pdf/GuestOS_guide.pdf</a>.</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">SUSE Linux Enterprise Server 11 (32-bit and 64-bit).</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">SUSE Linux Enterprise Desktop 11 (32-bit and 64-bit).</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">Ubuntu 8.10 Desktop Edition and Server Edition (32-bit and 64-bit).</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">Windows Preinstallation Environment 2.0 (32-bit and 64-bit).</p>
<p style="padding-bottom: 0px; line-height: 17px; margin: 0px 0px 10px; padding-left: 0px; padding-right: 0px; padding-top: 0px">Furthermore, pre-built kernel modules (PBMs) were added in this release for the following guests:</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">Ubuntu 8.10</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">Ubuntu 8.04.2</p>
<p style="padding-bottom: 0px; line-height: 17px; margin: 0px 0px 10px; padding-left: 0px; padding-right: 0px; padding-top: 0px"><strong style="font-weight: bold">Newly Supported Management Agents —</strong><span class="Apple-converted-space"> </span>Refer to<span class="Apple-converted-space"> </span><a style="color: #3366cc; text-decoration: none" href="http://www.vmware.com/support/esx25/doc/sys_mgmt_links.html" target="_blank">VMware ESX Server Supported Hardware Lifecycle Management Agents</a><span class="Apple-converted-space"> </span>for the most up-to-date information on supported management agents.</p>
<p style="padding-bottom: 0px; line-height: 17px; margin: 0px 0px 10px; padding-left: 0px; padding-right: 0px; padding-top: 0px"><strong style="font-weight: bold">Newly Supported I/O Devices —</strong><span class="Apple-converted-space"> </span>in-box support for the following on-board processors, IO devices, and storage subsystems:</p>
<ul style="list-style-type: square"><strong style="font-weight: bold">SAS Controllers and SATA Controllers:</strong></ul>
<p style="background-image: none; padding-bottom: 0px; line-height: 17px; background-color: #ffffff; margin: 0px 0px 10px; padding-left: 0px; padding-right: 0px; background-repeat: no-repeat; background-position: 0% 0%; color: #666666; padding-top: 0px; -webkit-background-clip: initial; -webkit-background-origin: initial">The following are newly supported SATA Controllers.</p>
<p style="background-image: none; background-color: #ffffff; margin: 0px; background-repeat: no-repeat; background-position: 0% 0%; color: #666666; -webkit-background-clip: initial; -webkit-background-origin: initial">
<ul style="list-style-type: square">
<li style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">PMC 8011 (for SAS and SATA drives)</li>
<li style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">Intel ICH9</li>
<li style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">Intel ICH10</li>
<li style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">CERC 6/I SATA/SAS Integrated RAID Controller (for SAS and SATA drivers)</li>
<li style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">HP Smart Array P700m Controller
<p style="padding-bottom: 0px; line-height: 17px; margin: 0px 0px 10px; padding-left: 0px; padding-right: 0px; padding-top: 0px"><strong style="font-weight: bold">Notes:</strong></p>
<ol style="margin-top: 5px; padding-left: 30px; max-width: 90%; margin-left: 10px">
<li style="padding-bottom: 5px; list-style-type: decimal; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px"><span class="style3" style="color: #000000">Some limitations apply in terms of support for SATA controllers. For more information, see<span class="Apple-converted-space"> </span><a style="background-image: none; padding-left: 0px; color: #3366cc; text-decoration: none" href="http://kb.vmware.com/kb/1008673" target="_blank">SATA Controller Support in ESX 3.5</a><span class="Apple-converted-space"> </span>(KB 1008673).</span></li>
<li style="padding-bottom: 5px; list-style-type: decimal; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px"><span class="style3" style="color: #000000">Storing VMFS datastores on native SATA drives is not supported.</span></li>
</ol>
</li>
</ul>
<p style="padding-bottom: 0px; line-height: 17px; margin: 0px 0px 10px; padding-left: 0px; padding-right: 0px; padding-top: 0px"><strong style="font-weight: bold">Network Cards:</strong><span class="Apple-converted-space"> </span>The following are newly supported network interface cards:</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">HP NC375i Integrated Quad Port Multifunction Gigabit Server Adapter</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">HP NC362i Integrated Dual port Gigabit Server Adapter</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">Intel 82598EB 10 Gigabit AT Network Connection</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">HP NC360m Dual 1 Gigabit/NC364m Quad 1 Gigabit</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">Intel Gigabit CT Desktop Adapter</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">Intel 82574L Gigabit Network Connection</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">Intel 10 Gigabit XF SR Dual Port Server Adapter</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">Intel 10 Gigabit XF SR Server Adapter</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">Intel 10 Gigabit XF LR Server Adapter</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">Intel 10 Gigabit CX4 Dual Port Server Adapter</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">Intel 10 Gigabit AF DA Dual Port Server Adapter</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">Intel 10 Gigabit AT Server Adapter</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">Intel 82598EB 10 Gigabit AT CX4 Network Connection</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">NetXtreme BCM5722 Gigabit Ethernet</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">NetXtreme BCM5755 Gigabit Ethernet</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">NetXtreme BCM5755M Gigabit Ethernet</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">NetXtreme BCM5756 Gigabit Ethernet</p>
<p style="background-image: none; padding-bottom: 0px; line-height: 17px; background-color: #ffffff; margin: 0px 0px 10px; padding-left: 0px; padding-right: 0px; background-repeat: no-repeat; background-position: 0% 0%; color: #666666; padding-top: 0px; -webkit-background-clip: initial; -webkit-background-origin: initial"><strong style="font-weight: bold">Expanded Support:</strong><span class="Apple-converted-space"> </span>The E1000 Intel network interface card (NIC) is now available for NetWare 5 and NetWare 6 guest operating systems.</p>
<p style="padding-bottom: 0px; line-height: 17px; margin: 0px 0px 10px; padding-left: 0px; padding-right: 0px; padding-top: 0px"><strong style="font-weight: bold">Onboard Management Processors:</strong></p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">IBM system management processor (iBMC)</p>
<p style="padding-bottom: 0px; line-height: 17px; margin: 0px 0px 10px; padding-left: 0px; padding-right: 0px; padding-top: 0px"><strong style="font-weight: bold">Storage Arrays:</strong></p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">SUN StorageTek 2530 SAS Array</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">Sun Storage 6580 Array</p>
<p style="padding-bottom: 5px; list-style-type: square; padding-left: 0px; padding-right: 0px; margin-left: 10px; padding-top: 5px">Sun Storage 6780 Array</p>
</blockquote>
<p> </p>
<p> </p>
<p></span></p>
<p><a href="http://www.virtu-al.net/2009/03/31/esx-35-update-4-released/">ESX 3.5 Update 4 Released</a> is a post from: <a href="http://www.virtu-al.net">Virtu-Al</a>.<br>
Virtu-Al is one of the authors of VMware vSphere PowerCLI Reference: Automating vSphere Administration" <br><br>Buy it now from:
<a href="http://www.amazon.com/gp/product/0470890797?ie=UTF8&tag=virtal-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=0470890797" target="_blank">Amazon USA</a>
<a href="https://www.amazon.co.uk/dp/0470890797?tag=virtal-21&camp=1406&creative=6394&linkCode=as1&creativeASIN=0470890797&adid=11S7HEXGGN3JB7HNME6M&" target="_blank">Amazon UK
</a><a href="http://www.sybex.com/WileyCDA/SybexTitle/VMware-vSphere-PowerCLI-Reference-Automating-vSphere-Administration.productCd-0470890797.html" target="_blank">Sybex</a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.virtu-al.net/2009/03/31/esx-35-update-4-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Veeam Monitor 3.0 Free Edition</title>
		<link>http://www.virtu-al.net/2008/12/22/veeam-monitor-30-free-edition/</link>
		<comments>http://www.virtu-al.net/2008/12/22/veeam-monitor-30-free-edition/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 11:44:00 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[3i]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://www.virtu-al.net/?p=204</guid>
		<description><![CDATA[The guys over at Veeam have released an early Christmas present for us all and its a cracker (sorry). Head over to the Veeam site now to get your free copy of Veeam Monitor 3.0. Very useful for monitoring ESX3i The Veeam Monitor Free Edition is an easy-to-use VMware monitoring solution designed to meet the [...]<p><a href="http://www.virtu-al.net/2008/12/22/veeam-monitor-30-free-edition/">Veeam Monitor 3.0 Free Edition</a> is a post from: <a href="http://www.virtu-al.net">Virtu-Al</a>.<br>
Virtu-Al is one of the authors of VMware vSphere PowerCLI Reference: Automating vSphere Administration" <br><br>Buy it now from:
<a href="http://www.amazon.com/gp/product/0470890797?ie=UTF8&tag=virtal-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=0470890797" target="_blank">Amazon USA</a>
<a href="https://www.amazon.co.uk/dp/0470890797?tag=virtal-21&camp=1406&creative=6394&linkCode=as1&creativeASIN=0470890797&adid=11S7HEXGGN3JB7HNME6M&" target="_blank">Amazon UK
</a><a href="http://www.sybex.com/WileyCDA/SybexTitle/VMware-vSphere-PowerCLI-Reference-Automating-vSphere-Administration.productCd-0470890797.html" target="_blank">Sybex</a>
</p>
]]></description>
			<content:encoded><![CDATA[<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_cb6LrZBYWIw/SU9-mUUo5FI/AAAAAAAAAPQ/2at1zaOzZ3A/s1600-h/free-esxi-monitor.jpg"><img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 200px; height: 130px;" src="http://3.bp.blogspot.com/_cb6LrZBYWIw/SU9-mUUo5FI/AAAAAAAAAPQ/2at1zaOzZ3A/s200/free-esxi-monitor.jpg" alt="" id="BLOGGER_PHOTO_ID_5282580084684285010" border="0" /></a>The guys over at Veeam have released an early Christmas present for us all and its a cracker (sorry).</p>
<p>Head over to the <a href="http://www.veeam.com/esxi-monitoring-free.html">Veeam site</a> now to get your free copy of Veeam Monitor 3.0.  Very useful for monitoring ESX3i</p>
<blockquote><p>The Veeam Monitor Free Edition is an easy-to-use VMware monitoring solution designed to meet the day-to-day needs of VMware administrators who need real-time performance monitoring and alerting. Built from the ground up specifically for the virtual world, Veeam Monitor provides a bird’s-eye view of key performance metrics across your virtual ESXi infrastructure.</p>
<p>With Veeam Monitor, you can view real-time resource usage data for any virtual infrastructure object or collection of objects, as well as known infrastructure events, all on a single screen. This allows you to finally see your virtual infrastructure as a unified entity, not just a collection of isolated hosts and guests.</p>
<p>      Veeam Monitor provides comprehensive data on resource consumption and workload, from VirtualCenter, or ESX and ESXi hosts all the way down to the individual virtual machine level. Detailed real-time statistics are provided for key parameters critical to the health of the virtual environment, such as CPU and memory usage, disk and network I/O, and swap usage. Real-time data for multiple VI objects can be viewed in a convenient consolidated view for each ESX host, resource pool or cluster. This speeds up analysis and troubleshooting, and helps you identify potential resource bottlenecks faster than is possible using the Virtual Infrastructure Client.
<ul>
<li>Correlation of event and performance data</li>
</ul>
<p>      Veeam Monitor helps you understand how virtual infrastructure activities affect your VM performance, and solve resource usage mysteries with real-time monitoring graphs displaying known virtual infrastructure events, such as VMotion, snapshot creation and deletion, or backup activities, directly on the performance graphs.
<ul>
<li>User interface optimized for monitoring</li>
</ul>
<p>      The Veeam Monitor user interface was designed and optimized specifically for monitoring tasks. You can switch easily between different views to quickly find the VMware Infrastructure component you are looking for, or you can perform an integrated search. Drill down to an individual VM and find out how much CPU and memory it is consuming, and even connect to the VM console – all right from the Monitor user interface. Find out at a glance which components of your VMware infrastructure are the largest resource consumers: the Tops section of Veeam Monitor helps you identify which virtual machines are consuming the most CPU, memory, disk I/O and network resources.
<ul>
<li> Advanced alerting and flexible alarms</li>
</ul>
<p>      Veeam Monitor provides comprehensive alerting with custom alarms that can be based on many sources. You can easily set up e-mail notifications or SNMP traps for important events such as a given number of running VMs is exceeded, VM heartbeat is lost, a specific event is generated by VirtualCenter etc. Being alerted on such events allows for faster administrator response to critical issues, helping you to maintain better health and uptime of your virtual infrastructure. The Free Edition allows you to set and use up to ten alarms.
<ul>
<li>Scalable architecture</li>
</ul>
<p>      Veeam Monitor is an enterprise-level client-server application that enables multi-admin access to performance data without affecting ESX server and VirtualCenter performance or changing your access policies. It gathers all performance information into a local or remote SQL database, allowing users to access infrastructure-wide performance data and reporting as needed. While you are using the Free Edition, this data is still gathered, so that if you later choose to upgrade to the full Veeam Monitor, you will have access to this historical data for capacity planning, chargeback and trend analysis.
<ul>
<li>Support for multiple VirtualCenters</li>
</ul>
<p>      Veeam Monitor can be optionally integrated with VMware VirtualCenter to provide cluster-aware monitoring of your virtual machines. Veeam Monitor supports and extends VMware’s management framework, offloading the monitoring burden from VirtualCenter for enhanced VC performance. And with support for consolidating performance data from multiple VirtualCenters, Veeam Monitor shows performance data from your entire virtual infrastructure on a single screen – no matter how large your VMware deployment is.
<ul>
<li>Easy to deploy and use</li>
</ul>
<p>      While providing you truly enterprise-scale architecture, Veeam Monitor has extremely low system requirements comparing to other VMware monitoring solutions. Veeam Monitor takes minutes to deploy and use in any size environment. Installation package contains everything you need to start using the software right away, minutes after you download it!
<ul>
<li>Simple upgrade to the full version</li>
</ul>
</blockquote>
<p><a href="http://www.virtu-al.net/2008/12/22/veeam-monitor-30-free-edition/">Veeam Monitor 3.0 Free Edition</a> is a post from: <a href="http://www.virtu-al.net">Virtu-Al</a>.<br>
Virtu-Al is one of the authors of VMware vSphere PowerCLI Reference: Automating vSphere Administration" <br><br>Buy it now from:
<a href="http://www.amazon.com/gp/product/0470890797?ie=UTF8&tag=virtal-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=0470890797" target="_blank">Amazon USA</a>
<a href="https://www.amazon.co.uk/dp/0470890797?tag=virtal-21&camp=1406&creative=6394&linkCode=as1&creativeASIN=0470890797&adid=11S7HEXGGN3JB7HNME6M&" target="_blank">Amazon UK
</a><a href="http://www.sybex.com/WileyCDA/SybexTitle/VMware-vSphere-PowerCLI-Reference-Automating-vSphere-Administration.productCd-0470890797.html" target="_blank">Sybex</a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.virtu-al.net/2008/12/22/veeam-monitor-30-free-edition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Running ESX and ESXi in VMware Workstation</title>
		<link>http://www.virtu-al.net/2008/10/29/running-esx-and-esxi-in-vmware-workstation/</link>
		<comments>http://www.virtu-al.net/2008/10/29/running-esx-and-esxi-in-vmware-workstation/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 12:53:00 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[3i]]></category>
		<category><![CDATA[ESX/ESXi]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://www.virtu-al.net/?p=166</guid>
		<description><![CDATA[We have been able to run ESX and ESXi in VMware workstation for a while now, I find it particularly useful for testing and for the odd demonstration. If you are unsure how to do this I came across a nice article today which includes a step by step video on how to configure this [...]<p><a href="http://www.virtu-al.net/2008/10/29/running-esx-and-esxi-in-vmware-workstation/">Running ESX and ESXi in VMware Workstation</a> is a post from: <a href="http://www.virtu-al.net">Virtu-Al</a>.<br>
Virtu-Al is one of the authors of VMware vSphere PowerCLI Reference: Automating vSphere Administration" <br><br>Buy it now from:
<a href="http://www.amazon.com/gp/product/0470890797?ie=UTF8&tag=virtal-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=0470890797" target="_blank">Amazon USA</a>
<a href="https://www.amazon.co.uk/dp/0470890797?tag=virtal-21&camp=1406&creative=6394&linkCode=as1&creativeASIN=0470890797&adid=11S7HEXGGN3JB7HNME6M&" target="_blank">Amazon UK
</a><a href="http://www.sybex.com/WileyCDA/SybexTitle/VMware-vSphere-PowerCLI-Reference-Automating-vSphere-Administration.productCd-0470890797.html" target="_blank">Sybex</a>
</p>
]]></description>
			<content:encoded><![CDATA[<p>We have been able to run <span class="blsp-spelling-error" id="SPELLING_ERROR_0">ESX</span> and <span class="blsp-spelling-error" id="SPELLING_ERROR_1">ESXi</span> in <span class="blsp-spelling-error" id="SPELLING_ERROR_2">VMware</span> workstation for a while now, I find it particularly useful for testing and for the odd demonstration.</p>
<p>If you are unsure how to do this I came across a nice article today which includes a step by step video on how to configure this <span class="blsp-spelling-corrected" id="SPELLING_ERROR_3">useful</span> feature&#8230;</p>
<p><a href="http://www.petri.co.il/running-vmware-esx-and-esxi-in-workstation-on-your-desktop-pc.htm">http://www.petri.co.il/running-vmware-esx-and-esxi-in-workstation-on-your-desktop-pc.htm</a></p>
<p>It reads&#8230;
<p><span style="font-size:85%;"></span></p>
<blockquote><p><span style="font-size:85%;">In the following new video, I demonstrate, step by step, how you can run <span class="blsp-spelling-error" id="SPELLING_ERROR_4">VMware</span> <span class="blsp-spelling-error" id="SPELLING_ERROR_5">ESX</span> Server 3.5 and <span class="blsp-spelling-error" id="SPELLING_ERROR_6">ESXi</span> 3.5 inside <span class="blsp-spelling-error" id="SPELLING_ERROR_7">VMware</span> Workstation 6.5. This is also shown in my <a href="http://www.trainsignal.com/index.asp?PageAction=VIEWPROD&amp;ProdID=90" target="_blank">Train Signal <span class="blsp-spelling-error" id="SPELLING_ERROR_8">VMware</span> <span class="blsp-spelling-error" id="SPELLING_ERROR_9">ESX</span> Server video training course</a>.</span></p>
<p><span style="font-size:85%;">While you wouldn&#8217;t run <span class="blsp-spelling-error" id="SPELLING_ERROR_10">ESX</span> in Workstation for a production server, running <span class="blsp-spelling-error" id="SPELLING_ERROR_11">ESX</span> in Workstation is an excellent way to test and demonstrate <span class="blsp-spelling-error" id="SPELLING_ERROR_12">ESX</span> Server (and the entire <span class="blsp-spelling-error" id="SPELLING_ERROR_13">VMware</span> Virtual Infrastructure suite) on a single PC. Think about it &#8211; what if you had a single PC with 2 <span class="blsp-spelling-error" id="SPELLING_ERROR_14">ESX</span> Servers, an <span class="blsp-spelling-error" id="SPELLING_ERROR_15">iSCSI</span> virtual SAN, and a Windows Server running Virtual Center. With that, you would have &#8220;<span class="blsp-spelling-error" id="SPELLING_ERROR_16">VMware</span> Infrastructure in a box&#8221; and be able to run powerful features like <span class="blsp-spelling-error" id="SPELLING_ERROR_17">VMotion</span>, <span class="blsp-spelling-error" id="SPELLING_ERROR_18">SVMotion</span>, <span class="blsp-spelling-error" id="SPELLING_ERROR_19">VMHA</span>, and Update Manager, all on a single PC.</span></p>
</blockquote>
<p><span style="font-size:85%;"></span></p>
<p><a href="http://www.virtu-al.net/2008/10/29/running-esx-and-esxi-in-vmware-workstation/">Running ESX and ESXi in VMware Workstation</a> is a post from: <a href="http://www.virtu-al.net">Virtu-Al</a>.<br>
Virtu-Al is one of the authors of VMware vSphere PowerCLI Reference: Automating vSphere Administration" <br><br>Buy it now from:
<a href="http://www.amazon.com/gp/product/0470890797?ie=UTF8&tag=virtal-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=0470890797" target="_blank">Amazon USA</a>
<a href="https://www.amazon.co.uk/dp/0470890797?tag=virtal-21&camp=1406&creative=6394&linkCode=as1&creativeASIN=0470890797&adid=11S7HEXGGN3JB7HNME6M&" target="_blank">Amazon UK
</a><a href="http://www.sybex.com/WileyCDA/SybexTitle/VMware-vSphere-PowerCLI-Reference-Automating-vSphere-Administration.productCd-0470890797.html" target="_blank">Sybex</a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.virtu-al.net/2008/10/29/running-esx-and-esxi-in-vmware-workstation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to enable SSH on ESX 3i</title>
		<link>http://www.virtu-al.net/2008/09/01/how-to-enable-ssh-on-esx-3i/</link>
		<comments>http://www.virtu-al.net/2008/09/01/how-to-enable-ssh-on-esx-3i/#comments</comments>
		<pubDate>Mon, 01 Sep 2008 09:00:00 +0000</pubDate>
		<dc:creator>Alan</dc:creator>
				<category><![CDATA[3i]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://www.virtu-al.net/?p=124</guid>
		<description><![CDATA[This one has been around for a while but I thought I would document it on my blog as I just used it and there is a growing demand for 3i help due to it now being free ! How to enable SSH on VMware ESX 3i. After reading the VMTN forum use the following [...]<p><a href="http://www.virtu-al.net/2008/09/01/how-to-enable-ssh-on-esx-3i/">How to enable SSH on ESX 3i</a> is a post from: <a href="http://www.virtu-al.net">Virtu-Al</a>.<br>
Virtu-Al is one of the authors of VMware vSphere PowerCLI Reference: Automating vSphere Administration" <br><br>Buy it now from:
<a href="http://www.amazon.com/gp/product/0470890797?ie=UTF8&tag=virtal-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=0470890797" target="_blank">Amazon USA</a>
<a href="https://www.amazon.co.uk/dp/0470890797?tag=virtal-21&camp=1406&creative=6394&linkCode=as1&creativeASIN=0470890797&adid=11S7HEXGGN3JB7HNME6M&" target="_blank">Amazon UK
</a><a href="http://www.sybex.com/WileyCDA/SybexTitle/VMware-vSphere-PowerCLI-Reference-Automating-vSphere-Administration.productCd-0470890797.html" target="_blank">Sybex</a>
</p>
]]></description>
			<content:encoded><![CDATA[<div class="entry">
<p>This one has been around for a while but I thought I would document it on my blog as I just used it and there is a growing demand for 3i help due to it now being free !</p>
<p>How to enable SSH on VMware ESX 3i.</p>
<p>After reading the <a href="http://communities.vmware.com/thread/131362" target="_blank">VMTN forum</a> use the following steps to enable SSH</p>
<ul>
<li>From the console press ALT-F1</li>
<li>Type <span style="font-family:courier new;">unsupported</span> and press ENTER</li>
<li>Enter the root password</li>
<li>Enter the following command <span style="font-family:courier new;">vi /etc/inetd.conf</span></li>
<li>Search for the #SSH settings</li>
<li>Remove the # from the SSH row</li>
<li>Save the config by using <span style="font-family:courier new;">:wq!</span></li>
<li>Type <span style="font-family:courier new;">ps | grep inetd</span> on the console</li>
<li>Send a hangup signal by using the following command <span style="font-family:courier new;">kill -s HUP
<pid></pid></span></li>
</ul>
<p>You can now use Putty to SSH to your 3i server.</p>
</p></div>
<p><a href="http://www.virtu-al.net/2008/09/01/how-to-enable-ssh-on-esx-3i/">How to enable SSH on ESX 3i</a> is a post from: <a href="http://www.virtu-al.net">Virtu-Al</a>.<br>
Virtu-Al is one of the authors of VMware vSphere PowerCLI Reference: Automating vSphere Administration" <br><br>Buy it now from:
<a href="http://www.amazon.com/gp/product/0470890797?ie=UTF8&tag=virtal-20&linkCode=as2&camp=1789&creative=390957&creativeASIN=0470890797" target="_blank">Amazon USA</a>
<a href="https://www.amazon.co.uk/dp/0470890797?tag=virtal-21&camp=1406&creative=6394&linkCode=as1&creativeASIN=0470890797&adid=11S7HEXGGN3JB7HNME6M&" target="_blank">Amazon UK
</a><a href="http://www.sybex.com/WileyCDA/SybexTitle/VMware-vSphere-PowerCLI-Reference-Automating-vSphere-Administration.productCd-0470890797.html" target="_blank">Sybex</a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.virtu-al.net/2008/09/01/how-to-enable-ssh-on-esx-3i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

