Scratch Reset

On ne compte plus le nombre de références détaillant comment configurer un chemin pour rentre la fameuse “scratch” d’ESXi persistante, la meilleure étant la kb VMware Creating a persistent scratch location. Paradoxalement, aucune référence n’indique comment remettre le paramétrage par défaut, à savoir *blank* traduit en “/tmp/scratch” par ESXi :

Du coup, on a bêtement essayé mais évidement ça aurait été trop beau :

C’est dans une autre kb VMware que nous trouvons la solution :

Deleting the /etc/vmware/locker.conf file is not a supported method of removing the link to the scratch location. To remove the scratch location reference, empty the file rather than deleting it.

En vidant le fichier /etc/vmware/locker.conf c’est effectivement beaucoup plus efficace et on fini par un petit “flush firmware configuration” pour forcer un backup de la conf :

#vim-cmd hostsvc/advopt/view ScratchConfig.ConfiguredScratchLocation
#cat /etc/vmware/locker.conf
#cat /dev/null > /etc/vmware/locker.conf
#cat /etc/vmware/locker.conf
#vim-cmd hostsvc/advopt/update ScratchConfig.ConfiguredScratchLocation string ""
#vim-cmd hostsvc/advopt/view ScratchConfig.ConfiguredScratchLocation
#vim-cmd hostsvc/firmware/sync_config

Leave a Reply