All Posts

How to solve this problem I'm trying to set up a Virtual Machine according to this video tutorial >https://www.youtube.com/watch?v=IQ2mbwENV78  
Hi Please Help Me. I'm looking for a guide on how to download a compatible toolkit - which allows macOS to run - on a Vmare Workstation Pro Virtual Machine for an AMD Processor. I looked up Video T... See more...
Hi Please Help Me. I'm looking for a guide on how to download a compatible toolkit - which allows macOS to run - on a Vmare Workstation Pro Virtual Machine for an AMD Processor. I looked up Video Tutorial on YouTube - but I'm still having trouble booting/starting from macOS on Vmare on my AMD.   I sincerely apologize if I posted in the correct section - if it is possible, I ask the moderator to move my post to another section.   https://www.youtube.com/watch?v=IQ2mbwENV78
I want to do VMI (virtual machine introspection) with vmware, how can I get the guest vm state ( such as CPU register or instructions)   Thannks a lot
Hi, I want to trace all driver's memory writes. (The driver runs on ESXi hypervisor) Is Vprobe a good solution?
I shut down a vm so that I could export OVF. My plan was to export it from our onsite vcentre to our offsite vcentre so that we have a backup in place. However, once I had finished exporting ... See more...
I shut down a vm so that I could export OVF. My plan was to export it from our onsite vcentre to our offsite vcentre so that we have a backup in place. However, once I had finished exporting the OVF, I spun the onsite vm backup and it's saying this PXE-E53: No boot filename received PXE-M0F: Exiting Intel PXE ROM Operating System not found. I'm really unsure what to do, i've never had an issue with this vm. I'm currently importing the OVF to the offsite vcentre so i'm hoping it will spin up there. Any ideas what has gone wrong? I've found these in the log files if it helps. Cannot open file "/usr/lib/vmware/config": No such file or directory. DictionaryLoad: Cannot open file "//.vmware/config": No such file or directory ConfigDB: Failed to load ~/.vmware/config EDIT: I've just gone into DHCP and reserved it's mac address to give it an IP address. (the one it was using before I shut it down), as it seems like its problem is that it cannot connect to the network to find the hard drives to boot up from.......thats my take on it anyway. So i've done this and now i'm getting this message (though the server its on has its own built in scsi storage, so who knows...) PXE-E53 No boot filename received
I'm trying to run two probes at the same time, but it results in the following error: vmware-vprobe: Cannot load script: Error: A general system error occurred: Failed to join lower layer. Is... See more...
I'm trying to run two probes at the same time, but it results in the following error: vmware-vprobe: Cannot load script: Error: A general system error occurred: Failed to join lower layer. Is that the limitation we currently have? Here is the example command: vprobe -m 1 -m 2 -c 'VMXLoad {printf("Hello world"); exit(); }'
Hi everyone, I've recently started to learn vprobes and currently using Vmware Workstation Pro 14.0. I'm curious if there is any up-to-date programming reference? The repository on github looks l... See more...
Hi everyone, I've recently started to learn vprobes and currently using Vmware Workstation Pro 14.0. I'm curious if there is any up-to-date programming reference? The repository on github looks like hasn't been updated in a while. Dmitry
Hi all, I want to create a vprobe script (bettere if written with hemmet) that trace a particular process X. The vprobe documentation is old and poor and I can't find nothing useful. To be more ... See more...
Hi all, I want to create a vprobe script (bettere if written with hemmet) that trace a particular process X. The vprobe documentation is old and poor and I can't find nothing useful. To be more precise the trace script must print (or write into a file) every function called by the process X. I know how to implement the core process but I don't know which probe intercept. What can I do?
vprobe test.vp vmware-vprobe: Failed to load script in vmkernel: cannot enable probe "VMM1Hz" Not found Looks like vp scripts are no longer preferred and Emmet (.emt) is the way to do things.... See more...
vprobe test.vp vmware-vprobe: Failed to load script in vmkernel: cannot enable probe "VMM1Hz" Not found Looks like vp scripts are no longer preferred and Emmet (.emt) is the way to do things.  At least, my super quick experiment here has been much more productive with emmett than with vp. Try creating test.emt with the following contents:    VMM:VMM1Hz printf("testing\n"); then run:    vprobe -m /vmfs/volumes/<volume>/linux/linux.vmx test.emt and it should be up and running.  The -m option accepts either a full path to the .vmx file or the VMID of the vm, as shown by the vim-cmd vmsvc/getallvms command at the ESXi shell. and this error vprobe -c test.vp -m /vmfs/volumes/<volume number>/linux/linux.vmx vmware-vprobe: Compile error: Syntax error: <cmdline>: line 1, token '.' You don't want the -c option here... that tells the vprobe utility to use the next argument as the literal text of an Emmett script to run.  In your case, you end up trying to run a script consisting of the literal text test.vp (not the contents of the file with that name), hence the error reported at the '.' token (which doesn't even exist within the file test.vp... but does exist in the text "test.vp"). For instance, you can run a "hello world" Emmett script against VMID 1 like this:    vprobe -m 1 -c 'VMM:VMM1Hz printf("Hi there\n");' Cheers, -- Darius
It's like you said! The vprobe command it's the way to execute the vp scripts but when I create a simple vp script like this below (vprobe VMM1Hz      (printf "testing\n")) I obtain this e... See more...
It's like you said! The vprobe command it's the way to execute the vp scripts but when I create a simple vp script like this below (vprobe VMM1Hz      (printf "testing\n")) I obtain this error vprobe test.vp vmware-vprobe: Failed to load script in vmkernel: cannot enable probe "VMM1Hz" Not found and this error vprobe -c test.vp -m /vmfs/volumes/<volume number>/linux/linux.vmx vmware-vprobe: Compile error: Syntax error: <cmdline>: line 1, token '.' but the file is the same! The config is ok, I think, because I've set the vprobe.allow in /etc/vmware/config and the vprobe.enable in /vmfs/volumes/<volume number>/linux/linux.vmx
The ESXi 6.5 shell simply has a vprobe command, with much the same capabilities.  Its help text says that it's called vmware-vprobe, but it looks like the help text is wrong... Cheers, -- Da... See more...
The ESXi 6.5 shell simply has a vprobe command, with much the same capabilities.  Its help text says that it's called vmware-vprobe, but it looks like the help text is wrong... Cheers, -- Darius
Thanks! To solve this problem I've installed the ESXi 6.5 but the host console still doesn't recognize the vmrun command or the vprobe commands...
... aaaaaaand I was bitten by my assumption. It looks like we no longer support vprobes on Windows hosts as of Workstation 12.  It's now only supported through the vmware-vprobe program on Lin... See more...
... aaaaaaand I was bitten by my assumption. It looks like we no longer support vprobes on Windows hosts as of Workstation 12.  It's now only supported through the vmware-vprobe program on Linux hosts and on VMware Fusion and on the ESX hypervisor... looks like it's everything but Windows hosts.  Sorry for the misleading advice and the bad news. Thanks, -- Darius
Workstation 12 no longer uses "vmrun" for vprobes control.  There should be a separate "vmware-vprobe" program for the purpose.  I don't have a Windows installation handy to check, but I'd expect... See more...
Workstation 12 no longer uses "vmrun" for vprobes control.  There should be a separate "vmware-vprobe" program for the purpose.  I don't have a Windows installation handy to check, but I'd expect it's just a vmware-vprobe.exe inside the VMware Workstation folder in Program Files.  On a Linux host, there's /usr/bin/vmware-vprobe . The same capabilities should be available through the new vmware-vprobe program, albeit with slightly different command-line syntax. Please let us know if that meets your needs! Cheers, -- Darius
Goodmorning I'm using VMware workstation pro 12 on windows 10 and I'm trying to extract some information from the hypervisor with the vprobe script. I've added the vprobe.allow = "TRUE" on th... See more...
Goodmorning I'm using VMware workstation pro 12 on windows 10 and I'm trying to extract some information from the hypervisor with the vprobe script. I've added the vprobe.allow = "TRUE" on the following files C:\ProgramData\VMware\VMware Workstation\config.ini C:\ProgramData\VMware\VMware Workstation\settings.ini C:\Users\smais\AppData\Roaming\VMware`config.ini C:\Users\smais\Documents\Virtual Machines\ubuntu\Ubuntu 64-bit.vmx  The cpnfig.ini is the following file: installerDefaults.simplifiedUI = "no" authd.client.port = "902" authd.proxy.nfc = "vmware-hostd:ha-nfc" installerDefaults.autoSoftwareUpdateEnabled = "yes" installerDefaults.autoSoftwareUpdateEnabled.epoch = "14622" installerDefaults.componentDownloadEnabled = "yes" installerDefaults.dataCollectionEnabled = "yes" installerDefaults.dataCollectionEnabled.epoch = "14622" vprobe.allow = "TRUE" When I run vmrun with some vprobe command (vprobeListProbes, vprobeLoad, ect) I have the same result every time: Error: Unrecognized command vmrun is working because I can manage the vm without problems.     What can I do?
I want to learn low level programming. What i need is to emulate a software CPU in vmware and log all x86 instructions. I also want to pause/resume CPU and see physical and logical memory conte... See more...
I want to learn low level programming. What i need is to emulate a software CPU in vmware and log all x86 instructions. I also want to pause/resume CPU and see physical and logical memory contents at any time Is there a way to do this with vmware? Thanks.
Hi everyone, I am using Ubuntu 15.10 (64-Bit) and have installed Vmware Workstation 12.1.0. I have also installed Ubuntu 15.04 (64-Bit) in a VM. I added the line: vprobe.allow = "TRUE" to t... See more...
Hi everyone, I am using Ubuntu 15.10 (64-Bit) and have installed Vmware Workstation 12.1.0. I have also installed Ubuntu 15.04 (64-Bit) in a VM. I added the line: vprobe.allow = "TRUE" to the file /etc/vmware/config and the line: vprobe.enable = "TRUE" to the vmx file of the only VM I have installed. However, when I run the command: vmrun vprobeVersion <VM path> I get this error: Error: Unrecognized command: vprobeVersion No other vprobe command is executing. My vmrun version is 1.15.2 build-3272444 and I believe this version doesn't support vprobes. If so, how do I upgrade to the newer version which supports vprobes? Thanks.
I am running on VMWare Workstation 11: (vprobe GUEST:0x8173ae25         (printf "Syscall %s\n" (curprocname))) C:\Program Files (x86)\VMware\VMware Workstation>vmrun vprobeLoadFile "C:\Use... See more...
I am running on VMWare Workstation 11: (vprobe GUEST:0x8173ae25         (printf "Syscall %s\n" (curprocname))) C:\Program Files (x86)\VMware\VMware Workstation>vmrun vprobeLoadFile "C:\Users\ admin\Documents\Virtual Machines\Windows 10\Windows 10.vmx" "C:\Users\admin\Desk top\test.vp" vprobeLoadFile: error: invalid static probe: GUEST:0x8173ae25 vprobeLoadFile: 0 warnings, 1 errors Error: Unknown error Kind Regards Joe
Hi guys,               I've a windows 7 machine and installed VMware workstation v10. My guest OS is XP service pack 3, these are the files has been created after installing XP in the VMware. ... See more...
Hi guys,               I've a windows 7 machine and installed VMware workstation v10. My guest OS is XP service pack 3, these are the files has been created after installing XP in the VMware. My intention is i want to use these files in another VMware installed machine. I've tried it before a long time, I think I got an error. Would it possible? If possible how to overcome the error? Thanks...
Veeam will not support a free version of ESXi, you need at least a trial version. A workaround is to reimage the ESXi (you get a 60-day evaluation period) or use Unitrends. I haven't tried this,... See more...
Veeam will not support a free version of ESXi, you need at least a trial version. A workaround is to reimage the ESXi (you get a 60-day evaluation period) or use Unitrends. I haven't tried this, but check this for Veeam and evaluation licensed ESXi: Veeam Does it work with Evaluation version of ESXi 5.0 | view topic