<?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/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>VMware Update Manager &#8211; AgileOps</title>
	<atom:link href="https://agileops.co.uk/category/vmware-2/vmware-update-manager/feed/" rel="self" type="application/rss+xml" />
	<link>https://agileops.co.uk</link>
	<description>Virtualization made simple for Everyone.</description>
	<lastBuildDate>Tue, 21 Jan 2025 22:20:28 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.5.8</generator>

<image>
	<url>https://agileops.co.uk/wp-content/uploads/2017/10/favicon-01-50x50.png</url>
	<title>VMware Update Manager &#8211; AgileOps</title>
	<link>https://agileops.co.uk</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">194680508</site>	<item>
		<title>Installing VMware ESXi 8 on Unsupported Hardware – A Comprehensive Lab Guide</title>
		<link>https://agileops.co.uk/installing-vmware-esxi-8-on-unsupported-hardware-a-comprehensive-lab-guide/</link>
					<comments>https://agileops.co.uk/installing-vmware-esxi-8-on-unsupported-hardware-a-comprehensive-lab-guide/#respond</comments>
		
		<dc:creator><![CDATA[Ibrahim Quraishi]]></dc:creator>
		<pubDate>Mon, 23 Dec 2024 22:06:22 +0000</pubDate>
				<category><![CDATA[Vmware]]></category>
		<category><![CDATA[VMware Update Manager]]></category>
		<guid isPermaLink="false">https://agileops.co.uk/?p=16901</guid>

					<description><![CDATA[Introduction As a VMware enthusiast and home lab administrator, I&#8217;ve spent countless hours testing different configurations and setups. One of the biggest challenges I&#8217;ve faced recently is getting VMware ESXi...]]></description>
										<content:encoded><![CDATA[<div class="vgblk-rw-wrapper limit-wrapper">
<h1 class="wp-block-heading">Introduction</h1>



<p>As a VMware enthusiast and home lab administrator, I&#8217;ve spent countless hours testing different configurations and setups. One of the biggest challenges I&#8217;ve faced recently is getting VMware ESXi 8 running on older hardware. While VMware has strict requirements for ESXi 8, I&#8217;ve discovered several reliable workarounds that can help you build a powerful lab environment without breaking the bank on new hardware.</p>



<p>In this detailed guide, I&#8217;ll share my personal experience and the exact steps I used to get ESXi 8 running on unsupported hardware. Fair warning: this is for lab use only – don&#8217;t try this in production!</p>



<h2 class="wp-block-heading">1. Understanding Hardware Compatibility for ESXi 8</h2>



<p>Before diving into the installation process, let&#8217;s look at what VMware officially requires and what actually works in practice. I&#8217;ve tested these requirements extensively across different hardware configurations.</p>



<h3 class="wp-block-heading">Official Requirements:</h3>



<ul>
<li>64-bit x86 CPU (2nd gen Intel Xeon or newer recommended)</li>



<li>Minimum 4 cores (8+ cores work much better for multiple VMs)</li>



<li>8 GB RAM (I strongly recommend 32GB+ for a decent lab setup)</li>



<li>UEFI boot support (Legacy BIOS is possible but tricky)</li>



<li>TPM 2.0 and Secure Boot capability</li>



<li>NVMe/SATA/SAS storage controllers</li>
</ul>



<h3 class="wp-block-heading">What Actually Works in Practice:</h3>



<ul>
<li>CPUs: Successfully tested on 1st gen Intel Core i7 and newer</li>



<li>RAM: Runs fine with 16GB, but you&#8217;ll want more for multiple VMs</li>



<li>Storage: Most SATA controllers work fine with community drivers</li>



<li>Network: Many consumer NICs work with community drivers</li>



<li>TPM/Secure Boot: Can be bypassed entirely for lab use</li>
</ul>



<h3 class="wp-block-heading">My Test System Specifications:</h3>



<ul>
<li>CPU: Intel Core i7-4770 (technically unsupported)</li>



<li>RAM: 32GB DDR3</li>



<li>Storage: Samsung 870 EVO SSD</li>



<li>Network: Intel I211 Gigabit</li>



<li>Motherboard: ASUS Z87-A</li>
</ul>



<h2 class="wp-block-heading">2. Preparing Your Installation Media</h2>



<h3 class="wp-block-heading">Required Tools and Downloads:</h3>



<ul>
<li>ESXi 8 ISO (from VMware Customer Connect)</li>



<li>Rufus for Windows users</li>



<li>balenaEtcher for macOS/Linux users (my preferred tool)</li>



<li>USB drive (16GB+ recommended)</li>



<li>Network cable (WiFi isn&#8217;t supported)</li>
</ul>



<h3 class="wp-block-heading">Creating the Bootable USB:</h3>



<h4 class="wp-block-heading">Using Rufus (Windows):</h4>



<ol>
<li>Launch Rufus as administrator</li>



<li>Select your USB drive</li>



<li>Click SELECT and choose the ESXi 8 ISO</li>



<li>Important settings:</li>
</ol>



<ul>
<li>Partition scheme: GPT</li>



<li>Target system: UEFI</li>



<li>File system: FAT32</li>



<li>Cluster size: 4096 bytes</li>
</ul>



<ol>
<li>Click START and select &#8220;Write in ISO mode&#8221;</li>
</ol>



<h4 class="wp-block-heading">Using balenaEtcher (macOS/Linux):</h4>



<ol>
<li>Launch balenaEtcher</li>



<li>Click &#8220;Flash from file&#8221; and select the ESXi 8 ISO</li>



<li>Select your USB drive</li>



<li>Click &#8220;Flash!&#8221; and wait for verification</li>
</ol>



<p>Pro Tip: I recommend using a high-quality USB 3.0 drive. I&#8217;ve had issues with cheaper drives causing installation failures.</p>



<h2 class="wp-block-heading">3. BIOS Configuration and Pre-Installation Setup</h2>



<p>This is a crucial step I&#8217;ve found many guides miss. Before booting the installer, you need to configure your BIOS correctly:</p>



<ol>
<li>Enter BIOS (usually Delete or F2 at boot)</li>



<li>Enable these settings:</li>
</ol>



<ul>
<li>Intel VT-x/AMD-V virtualization</li>



<li>Intel VT-d/AMD IOMMU</li>



<li>Execute Disable Bit</li>



<li>No Execute Mode</li>



<li>UEFI Boot Mode</li>
</ul>



<ol>
<li>Disable these features:</li>
</ol>



<ul>
<li>Secure Boot</li>



<li>Legacy USB Support</li>



<li>CSM/Legacy Boot</li>



<li>CPU C-States</li>



<li>Power Management Features</li>
</ul>



<h2 class="wp-block-heading">4. Installation Process with Custom Modifications</h2>



<h3 class="wp-block-heading">Stage 1: Initial Boot</h3>



<ol>
<li>Boot from the USB drive (F11 or F12 for boot menu)</li>



<li>When you see the ESXi boot screen, quickly press Shift + O</li>



<li>Add these boot parameters:</li>
</ol>



<pre class="wp-block-code"><code>allowLegacyCPU=true ignoreHeadless=TRUE autoPartitionOSDataSize=8192 skipPartitionCheck=TRUE</code></pre>



<h3 class="wp-block-heading">Stage 2: Driver Injection</h3>



<p>If your hardware isn&#8217;t detected, we&#8217;ll need to inject community drivers. I&#8217;ve created a custom script to automate this:</p>



<ol>
<li>Press Alt + F1 when the installer loads</li>



<li>Log in with root (no password initially)</li>



<li>Enable networking:</li>
</ol>



<pre class="wp-block-code"><code>vmkload_mod ixgbe
vmkload_mod igb
esxcli network restore</code></pre>



<ol start="4">
<li>Get your IP address:</li>
</ol>



<pre class="wp-block-code"><code>vmkping 8.8.8.8</code></pre>



<ol start="5">
<li>Download and install community drivers:</li>
</ol>



<pre class="wp-block-code"><code>esxcli software vib install -v /vmfs/volumes/datastore1/net-community-driver.vib --no-sig-check
esxcli software vib install -v /vmfs/volumes/datastore1/sata-community-driver.vib --no-sig-check</code></pre>



<h3 class="wp-block-heading">Stage 3: Completing Installation</h3>



<ol>
<li>Return to the installer (Alt + F2)</li>



<li>Follow the standard installation prompts</li>



<li>Select your installation drive carefully</li>



<li>Configure your network settings:</li>
</ol>



<ul>
<li>Static IP recommended</li>



<li>Set appropriate VLAN if needed</li>



<li>Configure DNS servers</li>
</ul>



<h2 class="wp-block-heading">5. Post-Installation Optimization</h2>



<p>After installation, I&#8217;ve found these optimizations crucial for better performance:</p>



<h3 class="wp-block-heading">Performance Tweaks:</h3>



<ol>
<li>Enable SSH permanently:</li>
</ol>



<pre class="wp-block-code"><code>vim /etc/vmware/service.xml</code></pre>



<p>Find the SSH service section and set:</p>



<pre class="wp-block-code"><code>&lt;startup&gt;automatic&lt;/startup&gt;</code></pre>



<ol start="2">
<li>Optimize memory management:</li>
</ol>



<pre class="wp-block-code"><code>esxcli system settings advanced set -o /Mem/AllocGuestLargePage -i 0
esxcli system settings advanced set -o /Mem/ShareForceSalting -i 0</code></pre>



<ol start="3">
<li>Configure power management:</li>
</ol>



<pre class="wp-block-code"><code>esxcli system settings advanced set -o /Power/CpuPolicy -s "High Performance"</code></pre>



<h3 class="wp-block-heading">Storage Optimization:</h3>



<ol>
<li>Enable SSH and configure advanced storage settings:</li>
</ol>



<pre class="wp-block-code"><code>esxcli system settings advanced set -o /DataMover/HardwareAcceleratedMove -i 0
esxcli system settings advanced set -o /DataMover/HardwareAcceleratedInit -i 0</code></pre>



<ol start="2">
<li>Adjust queue depths for better SSD performance:</li>
</ol>



<pre class="wp-block-code"><code>esxcli system settings advanced set -o /Disk/QFullSampleSize -i 32
esxcli system settings advanced set -o /Disk/QFullThreshold -i 8</code></pre>



<h2 class="wp-block-heading">6. Troubleshooting Common Issues</h2>



<p>Based on my experience, here are solutions to the most common problems:</p>



<h3 class="wp-block-heading">Purple Screen of Death (PSOD):</h3>



<ul>
<li>Usually caused by incompatible drivers</li>



<li>Solution: Boot with <code>noIOMMU=TRUE</code> parameter</li>



<li>Add to /etc/vmware/boot.cfg:</li>
</ul>



<pre class="wp-block-code"><code>kernelopt=noIOMMU=TRUE</code></pre>



<h3 class="wp-block-heading">Network Issues:</h3>



<ul>
<li>Missing NICs: Install community network drivers</li>



<li>Random disconnects: Disable power management</li>
</ul>



<pre class="wp-block-code"><code>esxcli system settings advanced set -o /Power/UseCStates -i 0</code></pre>



<h3 class="wp-block-heading">Storage Problems:</h3>



<ul>
<li>Drives not detected: Try different SATA ports</li>



<li>Poor performance: Enable high performance mode</li>
</ul>



<pre class="wp-block-code"><code>esxcli storage core device set -d naa.XXXXX -O on</code></pre>



<h2 class="wp-block-heading">7. Creating Your First VMs</h2>



<p>Now that everything&#8217;s running, let&#8217;s set up some VMs:</p>



<ol>
<li>Configure VM Network:</li>
</ol>



<ul>
<li>Create a new vSwitch</li>



<li>Add physical NICs</li>



<li>Create port groups for different networks</li>
</ul>



<ol>
<li>Optimize VM Settings:</li>
</ol>



<pre class="wp-block-code"><code>esxcli system settings advanced set -o /Config/HostAgent/plugins/solo/enableMob -i 1</code></pre>



<ol start="3">
<li>Create VM Templates:</li>
</ol>



<ul>
<li>Install your preferred OS</li>



<li>Install VMware Tools</li>



<li>Update and configure</li>



<li>Convert to template</li>
</ul>



<h2 class="wp-block-heading">Conclusion</h2>



<p>While installing ESXi 8 on unsupported hardware requires some work, it&#8217;s entirely possible for a lab environment. I&#8217;ve been running this setup for several months now without issues. Remember to:</p>



<ul>
<li>Keep regular backups</li>



<li>Monitor system stability</li>



<li>Document any custom configurations</li>



<li>Join the VMware community for support</li>
</ul>



<p>Feel free to reach out in the comments if you need help. Happy virtualizing!</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p><em>Disclaimer: This guide is intended for lab and testing environments only. Running ESXi 8 on unsupported hardware in production environments is not recommended and may violate VMware&#8217;s terms of service.</em></p>
</div><!-- .vgblk-rw-wrapper -->]]></content:encoded>
					
					<wfw:commentRss>https://agileops.co.uk/installing-vmware-esxi-8-on-unsupported-hardware-a-comprehensive-lab-guide/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">16901</post-id>	</item>
		<item>
		<title>Get Started with VMware vSphere 8</title>
		<link>https://agileops.co.uk/get-started-with-vmware-vsphere-8/</link>
		
		<dc:creator><![CDATA[Ibrahim Quraishi]]></dc:creator>
		<pubDate>Mon, 02 Dec 2024 16:58:30 +0000</pubDate>
				<category><![CDATA[Cisco UCS M3 Blades]]></category>
		<category><![CDATA[Vmware]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[VMware Update Manager]]></category>
		<guid isPermaLink="false">https://agileops.co.uk/?p=16891</guid>

					<description><![CDATA[Introduction Key Features, Best Practices, and Upgrade Strategies VMware vSphere 8 is the latest iteration of VMware’s flagship virtualization platform, bringing enhanced performance, scalability, and security features. As businesses increasingly...]]></description>
										<content:encoded><![CDATA[<div class="vgblk-rw-wrapper limit-wrapper">
<p class="p1"></p>



<h2 class="wp-block-heading">Introduction</h2>



<p class="p4">Key Features, Best Practices, and Upgrade Strategies VMware vSphere 8 is the latest iteration of VMware’s flagship virtualization platform, bringing enhanced performance, scalability, and security features. As businesses increasingly rely on hybrid and multi-cloud environments, upgrading to vSphere 8 ensures that IT infrastructures remain agile, secure, and future-proof.</p>



<p class="p4">This blog explores the key features of vSphere 8, best practices for deployment, and strategies for a smooth upgrade. Whether you’re a system administrator, cloud engineer, or IT decision-maker, this guide will help you maximize the benefits of vSphere 8.</p>



<p class="p3"><strong>Key Features of VMware vSphere 8</strong></p>



<p class="p6"><strong>1. Performance Enhancements</strong></p>



<p class="p4">vSphere 8 introduces significant improvements in workload performance and efficiency. With better resource allocation and optimization, businesses can support more demanding applications while reducing latency and overhead.</p>



<p class="p6"><strong>2. Tanzu Kubernetes Grid (TKG) Advancements</strong></p>



<p class="p4">The new version enhances Kubernetes support, making it easier to run modern, containerized applications. With improved integration, IT teams can deploy and manage Kubernetes clusters seamlessly, reducing operational complexity.</p>



<p class="p6"><strong>3. Distributed Services Engine (DPU Acceleration)</strong></p>



<p class="p4">One of the standout features of vSphere 8 is the Distributed Services Engine, which offloads network and storage functions to Data Processing Units (DPUs). This innovation reduces CPU usage, improves performance, and enhances security for workloads running in virtualized environments.</p>



<p class="p6"><strong>4. vSphere Lifecycle Manager (vLCM) Enhancements</strong></p>



<p class="p4">Managing updates and patches is now more streamlined with vLCM. Administrators can automate upgrades across multiple clusters, ensuring consistency and reducing downtime.</p>



<p class="p6"><strong>5. Security Enhancements</strong></p>



<p class="p4">Security is a top priority in vSphere 8. Some notable enhancements include:</p>



<p class="p7">• TPM 2.0 and vTPM Support: Strengthened encryption and integrity checks</p>



<p class="p7">• Secure Boot Enhancements: Ensuring only trusted software runs in the virtual environment</p>



<p class="p7">• Improved Role-Based Access Control (RBAC): Granular security policies for different user roles</p>



<p class="p3"><strong>Best Practices for VMware vSphere 8 Deployment</strong></p>



<p class="p4">Upgrading to vSphere 8 requires careful planning to avoid disruptions and ensure a smooth transition. Here are some best practices to follow:</p>



<p class="p6"><strong>1. Assess Your Environment</strong></p>



<p class="p7">• Check VMware’s Compatibility Guide to ensure your hardware and software stack supports vSphere 8.</p>



<p class="p7">• Evaluate the impact on existing workloads and dependencies before initiating the upgrade.</p>



<p class="p6"><strong>2. Backup and Disaster Recovery Readiness</strong></p>



<p class="p7">• Perform a full backup of your vCenter Server, ESXi hosts, and critical workloads.</p>



<p class="p7">• Test recovery processes to ensure minimal downtime in case of unexpected issues.</p>



<p class="p6"><strong>3. Optimize Storage and Networking</strong></p>



<p class="p7">• Review and adjust network configurations to take advantage of DPU Acceleration.</p>



<p class="p7">• Ensure storage policies align with new vSphere features for better performance and redundancy.</p>



<p class="p6"><strong>4. Security Hardening</strong></p>



<p class="p7">• Enable vTPM for guest VMs to protect against firmware attacks.</p>



<p class="p7">• Implement multi-factor authentication (MFA) and least privilege access policies.</p>



<p class="p7">• Regularly update security patches and monitor system logs for anomalies.</p>



<p class="p3">Upgrade Strategies: vSphere 7 to vSphere 8</p>



<p class="p4">A well-planned upgrade minimizes risks and ensures business continuity. Follow these steps for a seamless transition:</p>



<p class="p6"><strong>Assessment and Planning</strong></p>



<p class="p7">• Identify and document the current vSphere environment, including versions, configurations, and workloads.</p>



<p class="p7">• Use VMware vSphere Upgrade Planner to detect compatibility issues and required updates.</p>



<p class="p6"><strong>Step-by-Step Upgrade Process</strong></p>



<p class="p7">• Upgrade vCenter Server first, as it must be on vSphere 8 before upgrading ESXi hosts.</p>



<p class="p7">• Use vSphere Lifecycle Manager (vLCM) to automate ESXi host upgrades.</p>



<p class="p7">• Validate post-upgrade functionality and monitor performance closely.</p>



<p class="p6"><strong>Common Challenges and Troubleshooting</strong></p>



<p class="p7"><strong>• Incompatible Hardware:</strong> Check if your servers support vSphere 8 or require firmware updates.</p>



<p class="p7">•<strong> License Activation Issues:</strong> Ensure vSphere 8 licenses are properly configured before migration.</p>



<p class="p7"><strong>• VM Compatibility:</strong> Update VM hardware versions to match vSphere 8 features.</p>



<p class="p3"><strong>Conclusion</strong></p>



<p class="p4">VMware vSphere 8 is a game-changer, offering powerful enhancements in performance, security, and automation. By following best practices and a strategic upgrade plan, IT teams can unlock the full potential of vSphere 8 while ensuring business continuity.</p>
</div><!-- .vgblk-rw-wrapper -->]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">16891</post-id>	</item>
		<item>
		<title>Online Lab for VMware vSphere 7</title>
		<link>https://agileops.co.uk/online-lab-for-vmware-vsphere-7/</link>
					<comments>https://agileops.co.uk/online-lab-for-vmware-vsphere-7/#respond</comments>
		
		<dc:creator><![CDATA[Ibrahim Quraishi]]></dc:creator>
		<pubDate>Tue, 11 Aug 2020 02:39:29 +0000</pubDate>
				<category><![CDATA[VMware]]></category>
		<category><![CDATA[VMware nested esx servers]]></category>
		<category><![CDATA[VMware Update Manager]]></category>
		<category><![CDATA[VMware vExpert]]></category>
		<category><![CDATA[online lab for vsphere 7]]></category>
		<category><![CDATA[VMware online lab]]></category>
		<category><![CDATA[vsphere 7 lab]]></category>
		<category><![CDATA[vsphere7 home lab]]></category>
		<guid isPermaLink="false">https://agileops.co.uk/?p=16261</guid>

					<description><![CDATA[Hey All, Great news guys, I have now got online labs available for you. Advantages of having this lab is No cost of buying an expensive server and noisy servers....]]></description>
										<content:encoded><![CDATA[<div class="vgblk-rw-wrapper limit-wrapper">
<p>Hey All,</p>



<p>Great news guys, I have now got online labs available for you.</p>



<p>Advantages of having this lab is </p>



<ol><li><strong> No cost of buying an expensive server and noisy servers.</strong></li><li><strong> Save Electricity cost. </strong></li><li><strong>Save time on setting up and troubleshooting.  </strong>start learning immidately. </li></ol>



<p>What’s included?  you will get access to your own cluster with 2 EXS hosts you can connect to the vCenter directly and start practising without wasting any time.  I have seen people who can&#8217;t setup a lab loose interest very soon, and if you struggle to get the lab running that can put you off too. This is the idea behind my Online lab this lets you start practising without wasting time troubleshooting issues. </p>



<p>I have had a lot of request in the past few months especially after I started the sessions for vSpehre 7 about how to get access to labs.</p>



<p>I would like to keep this for the people who are very interested in learning however they do not have a setup at home to create a home lab. with my experience, we need at least 32 GB of memory to be able to configure a proper vSphere 7 lab.</p>



<p>To give you an idea this is the minimal resources you will need to give to setup a decent lab to practice. </p>



<p>12 GB Memory for vCenter Server </p>



<p>4 GB at least for ESX1 </p>



<p>4 GB at least for ESX2</p>



<p>4 GB for Windows AD server ( optional if you don&#8217;t want to use DNS)  alternate you can use a Linux DNS server too.</p>



<p>8 GB for the setup of shared storage, in my lab I have used FreeNAS to set up shared storage. </p>



<p>So it all adds up to 32 GB, If you don&#8217;t have this kind of hardware and you really want to practice, do reach out to me and I might be able to offer you some discount for early birds trying out my virtual datacenter for a small price. </p>



<p>The price is only to cover the cost of the expensive hardware I have put in and the running electricity cost and internet charges. if you want to discuss this you can reach out to me on my email ibrahim@agileops.co.uk</p>



<p>So, you may ask how do I get the access? </p>



<p>Very simple you will just use Microsoft Remote Desktop client from your laptop or computer. </p>



<p>you will get an RDP login to enter the domain name to connect to my label which is <strong>agileops.loginto.me</strong>. hang on before that you need to contact me so that I can set up your account once I have sent you the details for login you are good to go. you will have full access to your own ESXi and vCetner to practice and learn on your own time. I will send an email with all the instructions on how to login and access the environment. </p>



<p>as you can see the setup below, you can connect to an RDP JUMP server which will allow you to use single sign-on to connect tot he vCenter Environment, it will be ready to use form the point you login. </p>



<div class="wp-block-image"><figure class="aligncenter size-large"><img fetchpriority="high" decoding="async" width="553" height="479" data-attachment-id="16262" data-permalink="https://agileops.co.uk/online-lab-for-vmware-vsphere-7/lab-layout/" data-orig-file="https://agileops.co.uk/wp-content/uploads/2020/08/Lab-Layout.jpg" data-orig-size="553,479" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;Ibrahim Quraishi&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;1597111330&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Lab Layout" data-image-description="&lt;p&gt;online lab layout&lt;/p&gt;
" data-image-caption="&lt;p&gt;online lab layout&lt;/p&gt;
" data-medium-file="https://agileops.co.uk/wp-content/uploads/2020/08/Lab-Layout-300x260.jpg" data-large-file="https://agileops.co.uk/wp-content/uploads/2020/08/Lab-Layout.jpg" tabindex="0" role="button" src="https://agileops.co.uk/wp-content/uploads/2020/08/Lab-Layout.jpg" alt="Online Lab" class="wp-image-16262" srcset="https://agileops.co.uk/wp-content/uploads/2020/08/Lab-Layout.jpg 553w, https://agileops.co.uk/wp-content/uploads/2020/08/Lab-Layout-300x260.jpg 300w, https://agileops.co.uk/wp-content/uploads/2020/08/Lab-Layout-466x404.jpg 466w, https://agileops.co.uk/wp-content/uploads/2020/08/Lab-Layout-350x303.jpg 350w" sizes="(max-width: 553px) 100vw, 553px" /><figcaption>online lab layout</figcaption></figure></div>



<p>How to Pay and when will I get access?</p>



<p>first, before you book email me and let me know which lab you need as there are only limited labs I can offer do not pay first. </p>



<p>You can pay after I have confirmed to you select what pass you want I have created three options for you too select.</p>



<ol><li><strong>An online Day pass is for 24</strong>, and we have two choices RTU which is <strong>Ready to Use </strong>or BIY <strong>Build it yourself. </strong></li><li><strong>Online Week Pass is for one whole week</strong> offering two choices RTU which is <strong>Ready to Use </strong>or BIY <strong>Build it yourself.  </strong></li><li><strong>Online Month pass is for one whole month</strong> offering two choices RTU which is <strong>Ready to Use</strong> or BIY <strong>Build it yourself.</strong>  </li></ol>



<p>you can use paypay to pay easily don&#8217;t forgot to mention the lab name as the lab will be created for the specific option.   https://paypal.me/agileops</p>



<p> I have also included CISCO UCS Platform Emulator for anyone who wants to learn Cisco Unified Computing system </p>



<figure class="wp-block-table is-style-stripes"><table class=""><tbody><tr><td>
  <strong>Technology</strong>
  </td><td class="has-text-align-right" data-align="right">
  <strong>LAB</strong>
  </td><td>
  <strong>Duration</strong>
  </td><td> </td><td>
  <strong>What do I get </strong>
  </td><td>  </td><td>
  <strong>&nbsp;</strong>
  </td></tr><tr><td>
  VMware
  </td><td class="has-text-align-right" data-align="right">
  Online-Day-Pass-RTU
  </td><td>
  24 hours
  </td><td>    </td><td>
  Ready to use 
  </td><td></td><td>
  &nbsp;
  </td></tr><tr><td>
  VMware
  </td><td class="has-text-align-right" data-align="right">
  Online-Day-Pass-BIY
  </td><td>
  24 hours 
  </td><td>    </td><td>
  Built it yourself 
  </td><td>   </td><td>
  &nbsp;
  </td></tr><tr><td>
  VMware
  </td><td class="has-text-align-right" data-align="right">
  Online-Week-Pass-RTU
  </td><td>
  1 Week
  </td><td>   </td><td>
  Ready to use 
  </td><td><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=ibrahim.quraishi@outlook.com&amp;item_name=Online-Week-Pass-RTU-1Week&amp;item_number=RTU1W&amp;no_shipping=1&amp;no_note=1&amp;currency_code=GBP&amp;bn=PP-BuyNow&amp;charset=UTF-8&amp;lc=US&amp;amount=75">  </a></td><td>
  &nbsp;
  </td></tr><tr><td>
  VMware
  </td><td class="has-text-align-right" data-align="right">
  Online-Week-Pass-BIY
  </td><td>
  1 Week
  </td><td>   </td><td>
  Build it yourself
  </td><td> <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=ibrahim.quraishi@outlook.com&amp;item_name=Online-Week-Pass-BIY-1Week&amp;item_number=BIY1W&amp;no_shipping=1&amp;no_note=1&amp;currency_code=GBP&amp;bn=PP-BuyNow&amp;charset=UTF-8&amp;lc=US&amp;amount=75"> </a></td><td>
  &nbsp;
  </td></tr><tr><td>
  VMware
  </td><td class="has-text-align-right" data-align="right">
  Online-Month-Pass-RTU
  </td><td>
  1 Month
  </td><td>    </td><td>
  Ready to use
  </td><td><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=ibrahim.quraishi@outlook.com&amp;item_name=Online-Month-Pass-RTU-1Month&amp;item_number=RTU1M&amp;no_shipping=1&amp;no_note=1&amp;currency_code=GBP&amp;bn=PP-BuyNow&amp;charset=UTF-8&amp;lc=US&amp;amount=200"> </a></td><td>
  &nbsp;
  </td></tr><tr><td>
  VMware
  </td><td class="has-text-align-right" data-align="right">
  Online-Month-Pass-BIY
  </td><td>
  1 Month
  </td><td> </td><td>
  Ready to use
  </td><td>    </td><td>
  &nbsp;
  </td></tr><tr><td>
  &nbsp;
  </td><td class="has-text-align-right" data-align="right">
  &nbsp;
  </td><td>
  &nbsp;
  </td><td>
  &nbsp;
  </td><td>
  &nbsp;
  </td><td>
  &nbsp;
  </td><td>
  &nbsp;
  </td></tr><tr><td>
  Cisco 
  </td><td class="has-text-align-right" data-align="right">
  UCSPE-Day-Pass
  </td><td>
  24 hours 
  </td><td>    </td><td>
  Emulator for Cisco UCS
  </td><td><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=ibrahim.quraishi@outlook.com&amp;item_name=UCSPE-Day-Pass-24Hours&amp;item_number=UCSPE24H&amp;no_shipping=1&amp;no_note=1&amp;currency_code=GBP&amp;bn=PP-BuyNow&amp;charset=UTF-8&amp;lc=US&amp;amount=24">  </a></td><td>
  &nbsp;
  </td></tr><tr><td>
  Cisco
  </td><td class="has-text-align-right" data-align="right">
  UCSP-Week-Pass
  </td><td>
  1 Week
  </td><td>     </td><td>
  Emulator for Cisco UCS
  </td><td></td><td>
  &nbsp;
  </td></tr><tr><td>
  Cisco
  </td><td class="has-text-align-right" data-align="right">
  UCSPE-Month-Pass
  </td><td>
  1 Month
  </td><td>     </td><td>
  Emulator for Cisco UCS
  </td><td>  <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=ibrahim.quraishi@outlook.com&amp;item_name=UCSPE-Day-Pass-1Month&amp;item_number=UCSPE1M&amp;no_shipping=1&amp;no_note=1&amp;currency_code=GBP&amp;bn=PP-BuyNow&amp;charset=UTF-8&amp;lc=US&amp;amount=200https://www.paypal.com/paypalme/agileops"> </a></td><td>
  &nbsp;
  </td></tr></tbody></table></figure>



<p>You can follow one of the YouTube Session to practice one topic or try and configure everything from scratch. This is the best way to learn and I have a very reasonable price for each lab. </p>



<p>If you like it share it with others so that they can benefit it. </p>
</div><!-- .vgblk-rw-wrapper -->]]></content:encoded>
					
					<wfw:commentRss>https://agileops.co.uk/online-lab-for-vmware-vsphere-7/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">16261</post-id>	</item>
		<item>
		<title>VMware Update Manager</title>
		<link>https://agileops.co.uk/vmware-update-manager/</link>
					<comments>https://agileops.co.uk/vmware-update-manager/#respond</comments>
		
		<dc:creator><![CDATA[Ibrahim Quraishi]]></dc:creator>
		<pubDate>Sun, 23 Feb 2020 23:20:00 +0000</pubDate>
				<category><![CDATA[Vmware]]></category>
		<category><![CDATA[VMware Update Manager]]></category>
		<category><![CDATA[ESX Host patching]]></category>
		<category><![CDATA[Patching]]></category>
		<category><![CDATA[Upgrading ESX host]]></category>
		<category><![CDATA[Upgrading vCenter Server]]></category>
		<category><![CDATA[VUM]]></category>
		<guid isPermaLink="false">https://agileops.co.uk/?p=15456</guid>

					<description><![CDATA[In this session, we will focus on patching an Esx host with a live demo showing how I patch 2 ESXi host. Agenda Step process for updating the Esxi host....]]></description>
										<content:encoded><![CDATA[<div class="vgblk-rw-wrapper limit-wrapper">
<p>In this session, we will focus on patching an Esx host with a live demo showing how I patch 2 ESXi host. <br />
Agenda<br />
Step process for updating the Esxi host.<br />
Configuration<br />
Download the updates<br />
Download the ISO to upgrade old host<br />
Create a baseline or baseline group<br />
Attach a baseline or baseline group<br />
Scan a baseline<br />
Review the Scan<br />
Stage the patches <br />
Remediate the patches.</p>



<p>The VMware Update Manager is built into the vCenter Server Appliance (VCSA) since 6.5<br />
This is automatically enabled on the vCenter once it&#8217;s installed.<br />
VUM allows you to Install ESX from version 6 to 6.5 or 6.5 to 6.7 <br />
VUM allows you to patch the ESXi host for a bug fix.</p>



<p>Note: it&#8217;s important to understand the patches so read the release notes before deploying it.</p>



<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe title="VMware Tutorial for Beginners | Session 31 VMware Update Manager VUM Demo" width="1400" height="788" src="https://www.youtube.com/embed/UIxwzEODl_U?feature=oembed" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div><figcaption>Get started with VMware Update Manager</figcaption></figure>



<ol><li>Configuration<br />
Configure the Update Manager Download sources<br />
Sources from the internet<br />
From a shared repository <br />
Manual upload ( import patches) and extensions pac files and zip files.</li><li>Download the updates<br />
Download the host patches extensions<br />
Default settings are VUM contacts, Vmware or third-party sources to gather the latest information (metadata) about available updates, patches and extensions</li><li>Import ISO to upgrade old Host<br />
You can upgrade the hosts in your environment to ESXi 6.7 by using host upgrade baselines. <br />
To create a host upgrade baseline, you must first upload at least one ESXi 6.7 .iso image to the Update Manager repository</li><li>Create baselines<br />
Baselines contain a collection of one or more patches, extensions, service packs, bug fixes, or upgrades, and can be classified as a patch, extension, or upgrade baselines. <br />
There are two types of baselines <br />
Baseline<br />
and <br />
Baseline Group</li><li>Attach a baseline to object <br />
To use baselines and baseline groups, you must attach them to selected inventory objects such as container objects, virtual machines, or hosts</li><li>Scan the vSphere Object<br />
Scanning is the process in which attributes of a set of hosts or virtual machines are evaluated against all patches, extensions, and upgrades from an attached baseline or baseline group, depending on the type of scan you select</li><li>Review the Scan<br />
Update Manager scans vSphere objects to determine how they comply with baselines and baseline groups that you attach. </li><li>Staging the patches and extension<br />
You can stage patches and extensions before remediation to ensure that the patches and extensions are downloaded to the host. <br />
Note: Staging patches and extensions is an optional step that can reduce the time during which hosts are in maintenance mode.</li><li>Remediate the patches<br />
Remediation is the process in which Update Manager applies for patches, extensions, and upgrades to ESXi hosts and virtual machines after a scan is complete.</li></ol>



<figure class="wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe title="VMware Tutorial for Beginners | Session 33 updating or patching a ESXi host" width="1400" height="788" src="https://www.youtube.com/embed/ilhocBFKi2Y?feature=oembed" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div><figcaption>Upgrading ESX host from 6.5 to 6.7 </figcaption></figure>



<p>Reach me out on twitter @ibrahimquraishi <br />
My blog: www.agileops.co.uk<br />
Questions of the day?</p>



<p>What is the acronym of VMware Update Manager?</p>



<p>Leave a comment with your response.</p>



<p>Don’t forget to #subscribe Enjoy watching and keep #sharing!</p>



<p>#VMware #vSphere #vExpert #vCommunity </p>



<p>Ref:https://docs.vmware.com/en/VMware-vSp…</p>
</div><!-- .vgblk-rw-wrapper -->]]></content:encoded>
					
					<wfw:commentRss>https://agileops.co.uk/vmware-update-manager/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">15456</post-id>	</item>
	</channel>
</rss>
