libvmi / python

LibVMI Python bindings
http://libvmi.com/
GNU Lesser General Public License v3.0
30 stars 22 forks source link

libvmi.libvmi.LibvmiError: DRIVER_NOT_DETECTED #72

Open CodingSheep4848 opened 3 years ago

CodingSheep4848 commented 3 years ago

I am trying to run process-list.py on my win7, host os is ubuntu server 18.04 in VMWare. 图片

Wenzel commented 3 years ago

recompile libvmi with debug info for CORE and KVM:

cd libvmi
cmake -DVMI_DEBUG='(VMI_DEBUG_KVM | VMI_DEBUG_CORE)' -B build
cmake --build build
sudo cmake --build build --target install

and retry

CodingSheep4848 commented 3 years ago

but there is no "build" directory and the "CMakeList.txt",should I write one? 图片

Wenzel commented 3 years ago

I mean recompile the libvmi C library. python-libvmi is just a wrapper on top of it.