This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

Where can i find the executable file of wireshark in wireshark directory?

0

I my testing my dissector using kcahegrind. For testing i need executable file.

asked 16 Nov '12, 02:08

Akhil's gravatar image

Akhil
53272831
accept rate: 0%


3 Answers:

1

LOL search for wireshark.exe ffs -.-

answered 16 Nov '12, 02:16

gateau's gravatar image

gateau
16112
accept rate: 0%

didn't find wireshark.exe

I found wireshark.exe.manifest.in

are both same

(16 Nov '12, 02:35) Akhil

0

I'm assuming that if you're using KCacheGrind then you're developing on some form of Linux (as your previous questions also indicate) and if so are you not aware that files on Linux don't use an extension as a method of indicating the type of file? The Wireshark executable on Linux will be "wireshark".

If you built your own version then initially it will be in the top level of the source tree if built using make or in the build directory indicated if using CMake.

After install it will be wherever the installer has directed it to go.

answered 16 Nov '12, 03:57

grahamb's gravatar image

grahamb ♦
19.8k330206
accept rate: 22%

0

If you're building on Linux (as Graham said) and if you're running from the build directory (and you're using autofoo as opposed to cmake) then use libtool to run it. For example, you can run valgrind on Wireshark through libtool like this:

libtool --mode=execute valgrind wireshark

answered 16 Nov '12, 07:25

JeffMorriss's gravatar image

JeffMorriss ♦
6.2k572
accept rate: 27%