0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【VMware ESXi】OSのバージョンアップデート方法について【コマンド】

Posted at

VMware ESXiのバージョンアップデート

#VMwareのバージョン確認
vmware -l

#メンテナンスモードの確認
esxcli system maintenanceMode get

#メンテナンスモードの有効化
esxcli system maintenancemode set --enable true

#メンテナンスモードの無効化
esxcli system maintenanceMode set --enable false

#===================================#
#  ソフトウェアプロファイルの確認   #
#===================================#

esxcli software source profile list -d /vmfs/volumes/<Volume_Label>/VMware-ESXi-6.7.0-8169922-depot.zip

#===================================#
#	ドライランの実行	    #
#===================================#

esxcli software profile update --dry-run --depot=/vmfs/volumes/<Volume_Label>/VMware-ESXi-6.7.0-8169922-depot.zip --profile=ESXi-6.7.0-8169922-standard

#===================================#
#	アップデート実行	    #
#===================================#

#esxkr10
esxcli software profile update -d /vmfs/volumes/<Volume_Label>/VMware-ESXi-6.7.0-8169922-depot.zip -p ESXi-6.7.0-8169922-standard

#再起動
reboot

#VMwareのバージョン確認
vmware -l

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?