ESXi 설치 관리자에는 처음 발견한 디스크에 표준 설치를 수행하는 기본 설치 스크립트가 포함되어 있습니다.

기본 ks.cfg 설치 스크립트는 초기 RAM 디스크에서 /etc/vmware/weasel/ks.cfg 위치에 있습니다. ks=file://etc/vmware/weasel/ks.cfg 부팅 옵션을 사용하여 기본 ks.cfg 파일의 위치를 지정할 수 있습니다. 부팅 옵션을 입력하여 설치 또는 업그레이드 스크립트 시작를 참조하십시오.

ks.cfg 스크립트를 사용하여 ESXi를 설치할 경우 기본 루트 암호는 mypassword입니다.

설치 미디어에 있는 기본 스크립트는 수정할 수 없습니다. 설치를 완료하면 vSphere Web Client를 사용하여 ESXi 호스트를 관리하는 vCenter Server에 로그인한 후 기본 설정을 수정할 수 있습니다.

기본 스크립트에는 다음과 같은 명령이 포함되어 있습니다.

#
# Sample scripted installation file
#

# Accept the VMware End User License Agreement
vmaccepteula

# Set the root password for the DCUI and Tech Support Mode
rootpw mypassword

# 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() )