-
Notifications
You must be signed in to change notification settings - Fork 257
Debugging DRAKVUF
Tamas K Lengyel edited this page May 20, 2016
·
3 revisions
If you encounter problems with DRAKVUF, the best option is to enable the printing of additional debug information so that the root cause of your problem can potentially be spotted. For this, you will need to recompile DRAKVUF and run it again the VM you have experienced the error on.
git clean -xdf
git reset --hard
./autogen.sh
./configure --enable-debug
make
Make sure you add the -v
option to the inputs you are passing to DRAKVUF to activate the debug output printing.
If you suspect that a certain plugin is causing the problem, you should turn off all other plugins to better isolate the problem, which you can do with the --disable-plugin-<pluginname>
configure option. For example:
./configure --enable-debug --disable-plugin-syscalls
Make sure to include this debug log in any issue you open up so that others can better help you figuring out the problem.