VMware
VMware, Linux: scan your scsi host without rebooting
by Ali on May.01, 2015, under Linux, VMware
echo "- - -" > /sys/class/scsi_host/host#/scan
Replace host# with number of your scsi adapter… sda would be host1, sdb host2 and so on.
VMware: System logs are stored on non-persistent storage error during ESXi installation
by Ali on May.20, 2014, under VMware
I am not sure what your circumstances were, but I was using a Mac to RDP to a Windows server to install nested ESXi servers under VMware Workstation.
The culprit was Mac’s way of sending F keys to VMware after a keyboard grab and it switches screens on you. Instead of install page you get the diagnostic message that can be ignored completely. This is not an error, just a warning.
To send the right key to VMware go to your Mac System Preferences, Keyboard and check “Use all F1, F2, yada yada yada”. Then use the Command key + F11 combo. Do not hold any other key. Repeat with other combinations when needed.
VMware vSphere: Install ESX from bootable USB drive.
by Ali on Apr.22, 2011, under VMware
Google and download UNetbooin.
Run, select Diskimage, ISO and browse to installation DVD.
Select your USB drive letter and click OK.
Boot from the USB drive and you’re all set.
VMware: Install Intel ET 82575 and 82576 drivers on ESX 4 vSphere
by Ali on Apr.15, 2010, under VMware
Update: Drivers are included in vSphere 4.1.
Download the ISO with drivers from HERE.
Burn to a CD and insert in the drive. Logon to the console as root and mount:
mount /dev/cdrom /mnt
Browse to /mnt and find the file “INT-intel-lad-ddk-igb-1.3.19.12.1-offline_bundle-185976.zip”
Install the driver:
esxupdate --bundle=INT-intel-lad-ddk-igb-1.3.19.12.1-offline_bundle-185976.zip update
Reboot.
VMware – Linux: OS cannot mount /dev/sd* after a virtual machine is converted – Waiting for device /dev/sd* to appear… not found – fall back
by Ali on Apr.06, 2009, under Linux, VMware
This happened when I created a SLES 11 VM with VMware Workstation and then moved to to ESX for production. Problem was that VMware Workstation used LSILogic SCSI drives to emulate my disks, but for some reason it wasn’t made clear to ESX by VMware Converter during conversion.
To fix this browse to your datastore and download your guest’s configuration file <vmname>.vmx to your desktop (or use your root access and open it in vi through ssh). Open it with a text editor and add the following line above your SCSI devices:
scsi0.virtualDev = "lsilogic"
So the whole SCSI device section should look like this:
scsi0.present = "true"
scsi0.sharedBus = "none"
scsi0.virtualDev = "lsilogic"
scsi0:0.present = "true"
scsi0:0.fileName = "disk1.vmdk"
scsi0:0.deviceType = "scsi-hardDisk"
scsi0:1.present = "true"
scsi0:1.fileName = "disk2.vmdk"
scsi0:1.deviceType = "scsi-hardDisk"
Copy the config back to your datastore and start guest OS. You will be asked to confirm changes during post – answer yes to changes.
Disclaimer: Make sure you have a backup before making any change.