Das ESXi-Installationsprogramm enthält ein Standardinstallationsskript, das eine Standardinstallation auf der ersten erkannten Festplatte durchführt.

Das Standardinstallationsskript ks.cfg befindet sich auf der anfänglichen RAM-Disk unter /etc/vmware/weasel/ks.cfg. Sie können den Speicherort der Standarddatei ks.cfg mithilfe der Startoption ks=file://etc/vmware/weasel/ks.cfg angeben. Weitere Informationen hierzu finden Sie unter Eingeben von Startoptionen zum Starten eines Installations- oder Upgrade-Skripts.

Wenn Sie ESXi mithilfe des Skripts ks.cfg installieren, lautet das Standard-Root-Kennwort myp@ssw0rd.

Sie können das Standardskript auf dem Installationsmedium nicht ändern. Nach der Installation können Sie vSphere Client verwenden, um sich am vCenter-Server, der den ESXi-Host verwaltet, anzumelden, und die Standardeinstellungen ändern.

Das Standardskript enthält folgende Befehle:

#
# Sample scripted installation file
#

# Accept the VMware End User License Agreement
vmaccepteula

# Set the root password for the DCUI and Tech Support Mode
rootpw myp@ssw0rd

# Install on the first local disk available on machine
install --firstdisk --overwritevmfs

# Set the network to DHCP on the first network adapter
network --bootproto=dhcp --device=vmnic0

# A sample post-install script
%post --interpreter=python --ignorefailure=true
import time
stampFile = open('/finished.stamp', mode='w')
stampFile.write( time.asctime() )