ESXI系统启动10分钟过慢-优化提速


在阿里云导出ecs的镜像在本地ESXI中启动,发现引导到login时间超长。大约要引导10分钟才能进入login界面

从阿里云ecs导出镜像raw到本地运行,经过qemu镜像转换为vmdk,再由vmdk转为厚置备thin模式。开启虚拟机发现引导系统长达10分钟。 服务器维护

通过查看系统服务时间具体消耗情况:

systend-analyze critical-chain

![成都服务器维护](/img/systend-analyze critical-chain.jpg)

发现时间主要集中在cloud-init上,于是关闭cloud-init。

关闭方法一

touch /etc/cloud/cloud-init.disabled
reboot

关闭方法二

apt purge cloud-init -y
rm -rf /etc/cloud
reboot

重启后,进入系统时间大大提升。大约只需要8s即完成!

Devops