Halaman

Tampilkan postingan dengan label VMWare. Tampilkan semua postingan
Tampilkan postingan dengan label VMWare. Tampilkan semua postingan

Rabu, 02 April 2014

Install VMWare Tools on Debian

We must log in with root user. It is better if we start with update all the software in system first then reboot one time.

apt-get update && apt-get dist-upgrade
shutdown -r now
Install compiler and Linux Header with command
apt-get update && apt-get install build-essential linux-headers-$(uname -r) libglib2.0-0
Mount VMware Tools disc and extract file
mount /dev/cdrom /mnt
tar xvfz /mnt/VMwareTools-*.tar.gz -C /tmp/
Start installing VMware Tools with command
perl /tmp/vmware-tools-distrib/vmware-install.pl
Then press Enter to all the questions to use all default answer. Then reboot again and it will be done.
shutdown -r now

- See more at: http://www.wingfoss.com/content/how-to-install-vmware-tools-on-debian-ubuntu-centos

Reference Others : 
http://lgallardo.com/en/2013/10/14/como-instalar-vmware-tools-en-debian-7/
http://blog.rebelit.net/456
http://majornetwork.net/2013/03/installing-vmware-tools-on-debian-linux/

Jumat, 28 Maret 2014

Call “HostStorageSystem.ComputeDiskPartitionInfo” for object “storageSystem” on ESXi failed

On an internal VMware server we have for development machines we increased storage using a spare disk, but shortly after rebooting we received the following error: Call "HostStorageSystem.ComputeDiskPartitionInfo" for object "storageSystem" on ESXi "192.168.xxx.xxx" failed. It appears from searching around that ESXi is not correctly wiping the disk when it says it does.
Step 1 is to enable SSH access through theESXi console so that you can remotely access the server using something like PuTTY.
Step 2: Now try and find the name of the local disk:
~ # esxcfg-scsidevs -l

mpx.vmhba1:C0:T0:L0
   Device Type: CD-ROM
   Size: 0 MB
   Display Name: Local LG CD-ROM (mpx.vmhba1:C0:T0:L0)
   Multipath Plugin: NMP
   Console Device: /vmfs/devices/cdrom/mpx.vmhba1:C0:T0:L0
   Devfs Path: /vmfs/devices/cdrom/mpx.vmhba1:C0:T0:L0
   Vendor: LG        Model: CD-ROM CRD-8521B  Revis: 1.03
   SCSI Level: 5  Is Pseudo: false Status: on
   Is RDM Capable: false Is Removable: true
   Is Local: true  Is SSD: false
   Other Names:
      vml.0005000000766d686261313a303a30
   VAAI Status: unsupported
t10.ATA_____ST31000520AS________________________________________9VX0JTG0
   Device Type: Direct-Access
   Size: 953869 MB
   Display Name: Local ATA Disk (t10.ATA_____ST31000520AS________________________________________9VX0JTG0)
   Multipath Plugin: NMP
   Console Device: /vmfs/devices/disks/t10.ATA_____ST31000520AS________________________________________9VX0JTG0
   Devfs Path: /vmfs/devices/disks/t10.ATA_____ST31000520AS________________________________________9VX0JTG0
   Vendor: ATA       Model: ST31000520AS      Revis: CC32
   SCSI Level: 5  Is Pseudo: false Status: on
   Is RDM Capable: false Is Removable: false
   Is Local: true  Is SSD: false
   Other Names:
      vml.0100000000202020202020202020202020395658304a544730535433313030
   VAAI Status: unknown
t10.ATA_____WDC_WD2500JS2D75NCB3__________________________WD2DWMANK6029875
   Device Type: Direct-Access
   Size: 238418 MB
   Display Name: Local ATA Disk (t10.ATA_____WDC_WD2500JS2D75NCB3__________________________WD2DWMANK6029875)
   Multipath Plugin: NMP
   Console Device: /vmfs/devices/disks/t10.ATA_____WDC_WD2500JS2D75NCB3__________________________WD2DWMANK6029875
   Devfs Path: /vmfs/devices/disks/t10.ATA_____WDC_WD2500JS2D75NCB3__________________________WD2DWMANK6029875
   Vendor: ATA       Model: WDC WD2500JS-75N  Revis: 10.0
   SCSI Level: 5  Is Pseudo: false Status: on
   Is RDM Capable: false Is Removable: false
   Is Local: true  Is SSD: false
   Other Names:
      vml.0100000000202020202057442d574d414e4b36303239383735574443205744
   VAAI Status: unknown
Then you can see the partitions (the first line shows disk information rather than being the first partition):
# partedUtil get /dev/disks/t10.ATA_____WDC_WD2500JS2D75NCB3__________________________WD2DWMANK6029875

30394 255 63 488281250
1 63 488281247 165 128

("1" is partition number)
Now you should be able to delete the partition using: (important thing… you need to put partition # that you going to delete)
# partedUtil delete /dev/disks/t10.ATA_____WDC_WD2500JS2D75NCB3__________________________WD2DWMANK6029875 1
You can double check its been deleted by running the partedUtil command again:
~ # partedUtil get /dev/disks/t10.ATA_____WDC_WD2500JS2D75NCB3__________________________WD2DWMANK6029875
30394 255 63 488281250
Now when you run the VSphere Client the disk should be successfully created.