<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>The Wombelix Post - Leap</title><link href="https://dominik.wombacher.cc/" rel="alternate"/><link href="/feeds/tag_leap.atom.xml" rel="self"/><id>https://dominik.wombacher.cc/</id><updated>2022-03-10T00:00:00+01:00</updated><entry><title>openSUSE Leap 15.3 on VMware vSphere 6.7: Get Guest Customization working</title><link href="https://dominik.wombacher.cc/posts/opensuse_leap_15-3_on_vmware_vsphere_6-7_get_guest_customization_working.html" rel="alternate"/><published>2022-03-10T00:00:00+01:00</published><updated>2022-03-10T00:00:00+01:00</updated><author><name>Dominik Wombacher</name></author><id>tag:dominik.wombacher.cc,2022-03-10:/posts/opensuse_leap_15-3_on_vmware_vsphere_6-7_get_guest_customization_working.html</id><summary type="html">&lt;!-- SPDX-FileCopyrightText: 2023 Dominik Wombacher &lt;dominik@wombacher.cc&gt; --&gt;
&lt;!--  --&gt;
&lt;!-- SPDX-License-Identifier: CC-BY-SA-4.0 --&gt;
&lt;p&gt;Technically &lt;em&gt;openSUSE Leap 15.3&lt;/em&gt; is equal to &lt;em&gt;SUSE Linux Enterprise Server 15 SP3&lt;/em&gt;, both share the same code and binary packages,
the only difference is community vs. commercial support  ... &lt;a class="read-more" href="/posts/opensuse_leap_15-3_on_vmware_vsphere_6-7_get_guest_customization_working.html"&gt; [read more]&lt;/a&gt;&lt;/p&gt;</summary><content type="html">&lt;!-- SPDX-FileCopyrightText: 2023 Dominik Wombacher &lt;dominik@wombacher.cc&gt; --&gt;
&lt;!--  --&gt;
&lt;!-- SPDX-License-Identifier: CC-BY-SA-4.0 --&gt;
&lt;p&gt;Technically &lt;em&gt;openSUSE Leap 15.3&lt;/em&gt; is equal to &lt;em&gt;SUSE Linux Enterprise Server 15 SP3&lt;/em&gt;, both share the same code and binary packages,
the only difference is community vs. commercial support. It's even possible to quickly
&lt;a class="reference external" href="https://en.opensuse.org/SDB:How_to_migrate_to_SLE#Migration_from_openSUSE_Leap_to_SUSE_Linux_Enterprise_Server"&gt;migrate from Leap 15.3 to SLES 15 SP3&lt;/a&gt;
(Archive: &lt;a class="reference external" href="https://web.archive.org/web/20220210180820/https://en.opensuse.org/SDB:How_to_migrate_to_SLE"&gt;[1]&lt;/a&gt;,
&lt;a class="reference external" href="https://archive.today/2022.03.10-225629/https://en.opensuse.org/SDB:How_to_migrate_to_SLE"&gt;[2]&lt;/a&gt;)
if you decide vendor support is preferred at a later point.&lt;/p&gt;
&lt;p&gt;VMWare still doesn't officially support Leap 15.3 as VM on vSphere neither allows Guest Customization,
but for sure, when you run SLES 15 SP3 it's not a problem and fully supported?!&lt;/p&gt;
&lt;p&gt;As explained &lt;a class="reference external" href="https://cstan.io/?p=12416&amp;amp;lang=en"&gt;here&lt;/a&gt;
(Archive: &lt;a class="reference external" href="https://web.archive.org/web/20210420173348/https://cstan.io/?p=12416&amp;amp;lang=en"&gt;[1]&lt;/a&gt;,
&lt;a class="reference external" href="https://archive.today/2022.03.10-225051/https://cstan.io/?p=12416&amp;amp;lang=en"&gt;[2]&lt;/a&gt;) in regards to Leap 15.2,
one option is to replace to content of &lt;code&gt;/etc/issue&lt;/code&gt; with &lt;code&gt;SUSE Linux Enterprise Server 15&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Keep in mind that &lt;code&gt;/etc/issue&lt;/code&gt; is a symlink to &lt;code&gt;/run/issue&lt;/code&gt;, a &lt;em&gt;volatile and temporary file&lt;/em&gt;,
managed by systemd service &lt;code&gt;issue-generator&lt;/code&gt;. So you have to remove the symlink and create a new
&lt;code&gt;/etc/issue&lt;/code&gt; file, otherwise your changes will be lost after the next reboot.&lt;/p&gt;
&lt;pre class="code text literal-block"&gt;
sudo rm /etc/issue &amp;amp;&amp;amp; echo &amp;quot;SUSE Linux Enterprise Server 15&amp;quot; &amp;gt; /etc/issue

&lt;/pre&gt;
&lt;p&gt;In addition I had to change the OS Type in the VM Settings on vSphere to &amp;quot;SUSE Linux Enterprise Server 15&amp;quot; as well,
otherwise the Guest Customization couldn't even be started without an error message.&lt;/p&gt;
&lt;p&gt;I like the generated issue file and the additional information, so after the new deployed VM is up and running, let's just revert the change:&lt;/p&gt;
&lt;pre class="code text literal-block"&gt;
sudo rm /etc/issue &amp;amp;&amp;amp; ln -s /run/issue /etc/issue

&lt;/pre&gt;
&lt;p&gt;Little more complicated, but also possible, is to replace &lt;code&gt;/etc/os-release&lt;/code&gt; with the content
from a SLES 15 SP3 System. It has the same effect as changing &lt;code&gt;/etc/issue&lt;/code&gt;, the Guest
Customization will think it's a SUSE Linux Enterprise Server and apply all settings.&lt;/p&gt;
&lt;pre class="code text literal-block"&gt;
NAME=&amp;quot;SLES&amp;quot;
VERSION=&amp;quot;15-SP3&amp;quot;
VERSION_ID=&amp;quot;15.3&amp;quot;
PRETTY_NAME=&amp;quot;SUSE Linux Enterprise Server 15 SP3&amp;quot;
ID=&amp;quot;sles&amp;quot;
ID_LIKE=&amp;quot;suse&amp;quot;
ANSI_COLOR=&amp;quot;0;32&amp;quot;
CPE_NAME=&amp;quot;cpe:/o:suse:sles:15:sp3&amp;quot;

&lt;/pre&gt;
</content><category term="Linux"/><category term="openSUSE"/><category term="Leap"/><category term="VMWare"/><category term="vSphere"/></entry></feed>