<?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>Slashzerø &#187; VMWare</title>
	<atom:link href="http://www.slashzero.com/category/vmware/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.slashzero.com</link>
	<description>Random and Useless Thoughts on Everything</description>
	<lastBuildDate>Wed, 31 Mar 2010 20:46:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to thin provision an exsiting VMWare disk on ESXi without virtual center</title>
		<link>http://www.slashzero.com/2008/10/how-to-thin-provision-an-exsiting-vmware-disk-on-esxi-without-virtual-center/</link>
		<comments>http://www.slashzero.com/2008/10/how-to-thin-provision-an-exsiting-vmware-disk-on-esxi-without-virtual-center/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 14:51:39 +0000</pubDate>
		<dc:creator>abx21</dc:creator>
				<category><![CDATA[VMWare]]></category>
		<category><![CDATA[clone]]></category>
		<category><![CDATA[esxi]]></category>
		<category><![CDATA[rcli]]></category>
		<category><![CDATA[thin provision]]></category>

		<guid isPermaLink="false">http://www.slashzero.com/?p=97</guid>
		<description><![CDATA[If you are like me then after you installed ESXi you went and created a ton of  virtual hosts, then realized that you were short on disk space.  In doing research on using NFS as a datastore, I read how by default images on NFS were thin provisioned.  In a bit of a jealous moment, <a href='http://www.slashzero.com/2008/10/how-to-thin-provision-an-exsiting-vmware-disk-on-esxi-without-virtual-center/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>If you are like me then after you installed ESXi you went and created a ton of  virtual hosts, then realized that you were short on disk space.  In doing research on using NFS as a datastore, I read how by default images on NFS were thin provisioned.  In a bit of a jealous moment, I wondered why I didn&#8217;t have that option.  I learned that by using the RCLI appliance it is possible to convert.  &#8220;Vmkfstools -i&#8221; is your friend.  First you must shutdown your VM, in this case called &#8220;test-vm&#8221;.  Then from the RCLI run the vmkfstools command as follows:</p>
<p><code><br />
</code></p>
<pre><code>
vmkfstools -i /vmfs/volumes/datastore1/test-vm/test-vm.vmdk /vmfs/volumes/datastore1/test-vm/testvm-thin.vmdk -d 'thin' -a lsilogic</code></pre>
<pre><code>
</code></pre>
<p>The command prompt on the RCLI appliance will not return until the copy/conversion is done, but you can see the progress graphically in the tasks windows on your VI client.  Once the copy is done, go into the settings of your VM, delete the hard disk, and add a new hard disk pointing to the &#8220;thin&#8221; vmdk you created.  Boot your vm, if it all works then you can use the datastore browser to delete the thick vmdk and you are done.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.slashzero.com%2F2008%2F10%2Fhow-to-thin-provision-an-exsiting-vmware-disk-on-esxi-without-virtual-center%2F&amp;linkname=How%20to%20thin%20provision%20an%20exsiting%20VMWare%20disk%20on%20ESXi%20without%20virtual%20center"><img src="http://www.slashzero.com/wp-content/plugins/add-to-any/share_save_120_16.gif" width="120" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.slashzero.com/2008/10/how-to-thin-provision-an-exsiting-vmware-disk-on-esxi-without-virtual-center/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to Patch ESXi 3.5 Update 2</title>
		<link>http://www.slashzero.com/2008/08/how-to-patch-esxi-35-update-2/</link>
		<comments>http://www.slashzero.com/2008/08/how-to-patch-esxi-35-update-2/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 17:45:18 +0000</pubDate>
		<dc:creator>abx21</dc:creator>
				<category><![CDATA[VMWare]]></category>
		<category><![CDATA[vmware esxi rcli update]]></category>

		<guid isPermaLink="false">http://www.slashzero.com/?p=74</guid>
		<description><![CDATA[At least this is how I did it&#8230; Download the patch file here, then scp it over to your RCLI host. You have an RCLI instance somewhere right? If not there is an appliance you can download also from VMWare. Once the file is on the RCLI instance, you can use the vihostupdate command as <a href='http://www.slashzero.com/2008/08/how-to-patch-esxi-35-update-2/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>At least this is how I did it&#8230;<br />
Download the patch file <a href="http://www.vmware.com/go/esxiu2patch081208">here</a>, then scp it over to your RCLI host.  You have an RCLI instance somewhere right?  If not there is an appliance you can download also from VMWare.  Once the file is on the RCLI instance, you can use the vihostupdate command as follows:</p>
<p><code><br />
vihostupdate --server <em>ip_address_of_your_ESXi_host</em> -i -b ESXe350-200807812-O-BG.zip<br />
</code><br />
And enter your admin user and password at the prompt.  You won&#8217;t notice to much going on from your VI Client screen.  After the vihostupdate command is done, you will notice a little &#8220;reboot needed&#8221; message in your VI Client.  I set the time and date back to the correct date, re-enabled NTP then shutdown my VM&#8217;s, and rebooted the ESXi host.  It was back up withing 3 minutes, all in all a pretty simple process.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.slashzero.com%2F2008%2F08%2Fhow-to-patch-esxi-35-update-2%2F&amp;linkname=How%20to%20Patch%20ESXi%203.5%20Update%202"><img src="http://www.slashzero.com/wp-content/plugins/add-to-any/share_save_120_16.gif" width="120" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.slashzero.com/2008/08/how-to-patch-esxi-35-update-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ESXi&#8230; EPIC FAIL!!!</title>
		<link>http://www.slashzero.com/2008/08/esxi-epic-fail/</link>
		<comments>http://www.slashzero.com/2008/08/esxi-epic-fail/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 13:36:51 +0000</pubDate>
		<dc:creator>abx21</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[VMWare]]></category>
		<category><![CDATA[esx vmware fail]]></category>

		<guid isPermaLink="false">http://www.slashzero.com/?p=70</guid>
		<description><![CDATA[&#8220;This product has expired, Be sure that your host machine&#8217;s date and time are set correctly.&#8221; Way to go, I had to set the clock back to last week on my ESXi console. There goes my VMWare consolidation proposal at work. I wouldn&#8217;t want to be the poor developer that forgot to take out the <a href='http://www.slashzero.com/2008/08/esxi-epic-fail/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>&#8220;This product has expired, Be sure that your host machine&#8217;s date and time are set correctly.&#8221;</p>
<p>Way to go, I had to set the clock back to last week on my ESXi console.  There goes my VMWare consolidation proposal at work.</p>
<p>I wouldn&#8217;t want to be the poor developer that forgot to take out the &#8220;if date = august 12 2008 then fail&#8221; line of code.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.slashzero.com%2F2008%2F08%2Fesxi-epic-fail%2F&amp;linkname=ESXi%26%238230%3B%20EPIC%20FAIL%21%21%21"><img src="http://www.slashzero.com/wp-content/plugins/add-to-any/share_save_120_16.gif" width="120" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.slashzero.com/2008/08/esxi-epic-fail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMWare ESXi: First Thoughts</title>
		<link>http://www.slashzero.com/2008/08/vmware-esxi-first-thoughts/</link>
		<comments>http://www.slashzero.com/2008/08/vmware-esxi-first-thoughts/#comments</comments>
		<pubDate>Sat, 02 Aug 2008 15:15:41 +0000</pubDate>
		<dc:creator>abx21</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[VMWare]]></category>
		<category><![CDATA[Linux VMWare esxi]]></category>

		<guid isPermaLink="false">http://www.slashzero.com/?p=47</guid>
		<description><![CDATA[Having just left a position working on a massive VMWare ESX rollout, I have had a lot of experience with ESX and the whole VI ecosystem. I am also acutely aware of the large amounts of money involved with VMWare. For that reason I have been a big fan of KVM and VirtualBox. But at <a href='http://www.slashzero.com/2008/08/vmware-esxi-first-thoughts/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>Having just left a position working on a massive VMWare ESX rollout, I have had a lot of experience with ESX and the whole VI ecosystem.  I am also acutely aware of the large amounts of money involved with VMWare.   For that reason I have been a big fan of KVM and VirtualBox.  But at my new job I see lots of opportunities where having a full blown VI setup would help,  but am hesitant to introduce this.</p>
<p>Naturally when <a href=http://blogs.vmware.com/sherrod/2008/08/vmware-everywhe.html>ESXi was released for free </a>;I decided to look into it.  The installation was straight forward and withing 30 minutes I had things up and running.  VMware offers a Remote CLI appliance which I quickly downloaded and installed, with thei RCLI you can do most of the basic things you could do with Virtual Center, as in cloning and svmotion, albeit obviously by using perl scripts instead of a GUI.   Other than the DR and SRS features this can work as a low cost visualization platform.  ESXi also has support for HBA, nfs and iScsi storage.   Using the VMware converter I was able to clone my windows laptop, albeit it took a few tries.  Once I was the cause of problems, here is a hint, don&#8217;t change your password on the ESX console while you are doing a P2V.   I&#8217;ll update this with new experiences, but so far, yeah, its fun to be playing with VMware again.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.slashzero.com%2F2008%2F08%2Fvmware-esxi-first-thoughts%2F&amp;linkname=VMWare%20ESXi%3A%20First%20Thoughts"><img src="http://www.slashzero.com/wp-content/plugins/add-to-any/share_save_120_16.gif" width="120" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.slashzero.com/2008/08/vmware-esxi-first-thoughts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
