Quote:
|
Originally Posted by Kenshin How to use the airsnort ? i can't open the program either. An error "This application has failed to start because libgobject-2.0-0.dll was not found." |
Well then. let's try to find that DLL.
What operating system are you running?
First, try this command:
Code:
find / -name libgobject-2.0-0.dll -print
Or, if you are running Microsoft Windows, you must issue this command from your root directory:
Code:
DIR /S/P libgobject-2.0-0.dll
If you have that file, then perhaps it is just in the wrong location. If you don't have that file, then perhaps you have a
compatible file.
Let's try to find other versions of this DLL:
Code:
find / -name "libgobject-*.dll" -print
Or, in Windows, from your root directory:
Code:
DIR /S/P libgobject-*.dll
I
often have good luck, in Unix, using a newer (or ocasionally older) DLL in place of the desired version. In Unix, I do this by linking the DLL to the desired filename. In Windows, you would have to copy the DLL to the new filename.
Or, perhaps even better, DLLDump has
libgobject-2.0-0.dll available for download. Unfortunately, they do not state what platform this DLL is compiled for.