<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Virtual Image Advanced Options 3 in HPE Morpheus VM Essentials Software</title>
    <link>https://community.hpe.com/t5/hpe-morpheus-vm-essentials/virtual-image-advanced-options-3/m-p/7254354#M813</link>
    <description>&lt;P&gt;1. Is the "agent" in "Install agent?" the same as the one installed by (Infrastructure &amp;gt; Compute &amp;gt; Virtual Machines &amp;gt; Select any VM &amp;gt; Actions &amp;gt; Install Agent)?&lt;/P&gt;&lt;P&gt;2. I don't understand what "Install agent?" does. Whether I check it when provisioning an instance or&lt;BR /&gt;when creating a clone, the version doesn't appear when I check "Agent version" on the virtual machine overview screen.&lt;BR /&gt;What happens when and under what circumstances is "Install agent?" checked?&lt;/P&gt;&lt;P&gt;3. Is "Sysprep /Generalized image?" only available on Windows? I tried using "virt-sysprep" on Linux, then "Import as image," checking "Sysprep /Generalized image?", and provisioning a virtual machine, but the hostname didn't change like it does on Windows.&lt;/P&gt;&lt;P&gt;*This is a machine translation, so I apologize if it's difficult to understand.&lt;/P&gt;</description>
    <pubDate>Wed, 13 Aug 2025 20:01:02 GMT</pubDate>
    <dc:creator>dya</dc:creator>
    <dc:date>2025-08-13T20:01:02Z</dc:date>
    <item>
      <title>Virtual Image Advanced Options 3</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-vm-essentials/virtual-image-advanced-options-3/m-p/7254354#M813</link>
      <description>&lt;P&gt;1. Is the "agent" in "Install agent?" the same as the one installed by (Infrastructure &amp;gt; Compute &amp;gt; Virtual Machines &amp;gt; Select any VM &amp;gt; Actions &amp;gt; Install Agent)?&lt;/P&gt;&lt;P&gt;2. I don't understand what "Install agent?" does. Whether I check it when provisioning an instance or&lt;BR /&gt;when creating a clone, the version doesn't appear when I check "Agent version" on the virtual machine overview screen.&lt;BR /&gt;What happens when and under what circumstances is "Install agent?" checked?&lt;/P&gt;&lt;P&gt;3. Is "Sysprep /Generalized image?" only available on Windows? I tried using "virt-sysprep" on Linux, then "Import as image," checking "Sysprep /Generalized image?", and provisioning a virtual machine, but the hostname didn't change like it does on Windows.&lt;/P&gt;&lt;P&gt;*This is a machine translation, so I apologize if it's difficult to understand.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Aug 2025 20:01:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-vm-essentials/virtual-image-advanced-options-3/m-p/7254354#M813</guid>
      <dc:creator>dya</dc:creator>
      <dc:date>2025-08-13T20:01:02Z</dc:date>
    </item>
    <item>
      <title>Re: Virtual Image Advanced Options 3</title>
      <link>https://community.hpe.com/t5/hpe-morpheus-vm-essentials/virtual-image-advanced-options-3/m-p/7254365#M820</link>
      <description>&lt;P&gt;To start, it is not mandatory to install the Morpheus Agent in the VM's.&amp;nbsp; My "personal" recommendation is to install it.&lt;BR /&gt;&lt;BR /&gt;1.&amp;nbsp; Yes, that's the same.&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. When enabled in the Virtual Image, VME will try to install the agent during deployment of every VM based on this image.&amp;nbsp; You can however still "Skip Agent install" during deployment of a VM where "Agent Install" has been enabled in the Virtual Image it's based on.&lt;/P&gt;&lt;P&gt;Agent install will install the Morpheus Agent in the VM.&amp;nbsp; This gives you some additional metrics,logs,... about the VM in VME.&amp;nbsp; If you don't see the agent version, the agent is not installed.&lt;BR /&gt;The agent install can happen in different ways/methods, depending on how your environment and Virtual Images are configured.&amp;nbsp; Every method comes with its own requirements.&amp;nbsp; See&amp;nbsp;&lt;A href="https://support.hpe.com/hpesc/public/docDisplay?docId=sd00006560en_us&amp;amp;page=GUID-6DB649A1-ECB0-4341-A395-FBB24F386BFD.html" target="_blank"&gt;https://support.hpe.com/hpesc/public/docDisplay?docId=sd00006560en_us&amp;amp;page=GUID-6DB649A1-ECB0-4341-A395-FBB24F386BFD.html&lt;/A&gt; for more information.&lt;/P&gt;&lt;P&gt;3. Sysprep/Generalized Image is Windows only (AFAIK).&amp;nbsp; On Linux, you should use cloudinit, which is also very strong and easy to configure.&lt;BR /&gt;You can find some good examples on&amp;nbsp;&lt;A href="https://cloudinit.readthedocs.io/en/latest/reference/examples.html" target="_blank"&gt;https://cloudinit.readthedocs.io/en/latest/reference/examples.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Here is a sample example I use in my environment for Debian12 Installations.&amp;nbsp; It sets my proxy, does a full update of the server, installs some additional packages, sets NTP and timezone.&lt;BR /&gt;The Virtual Image needs to have "cloudinit enabled".&amp;nbsp; I also check the "Install Agent" but as said above, it has some dependencies so that's why I e.g. install the qemu-agent via cloudinit.&lt;/P&gt;&lt;P&gt;The hostname is autoset and when you have configured your own user under "User Settings - Linux Settings", this user will also be created on your new VM.&lt;BR /&gt;You also need to fill in the cloudinit settings under "Settings - Provisioning"&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;#cloud-config
write_files:
  - path: /etc/apt/apt.conf.d/00-proxy
    permissions: 0640
    owner: root
    content: |
      Acquire::http { Proxy "http://123.45.6.78:3128"; };
      Acquire::https { Proxy "http://123.45.6.78:3128"; };
      Acquire::http::Pipeline-Depth "23";
      Acquire::Languages "none";

package_update: true
package_upgrade: true
package_reboot_if_required: true

packages:
  - qemu-guest-agent
  - lsd
  - btop
  - htop
  - mc
  - lsof
  - rsyslog
  
runcmd:
 - systemctl enable --now qemu-guest-agent
 - systemctl status qemu-guest-agent

ntp:
  servers: [123.45.6.78', '123.45.6.78', 'ntp.ubuntu.com']
timezone: Europe/Brussels&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Aug 2025 08:24:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/hpe-morpheus-vm-essentials/virtual-image-advanced-options-3/m-p/7254365#M820</guid>
      <dc:creator>Arnout_Verbeken</dc:creator>
      <dc:date>2025-08-13T08:24:22Z</dc:date>
    </item>
  </channel>
</rss>

