I have windows xp; I have this error; The temporary file to which the capture would be saved ("") could not be opened: No such file or directory. how to solve? asked 14 Sep '12, 12:52 albs edited 14 Sep '12, 12:53 |
One Answer:
Wireshark writes a temp file while capturing (to be able to recover from crashes). The path for the TEMP directory is retrieved by reading some environment variables via the glib function g_get_tmp_dir().
So, if you defined one of these variables with an empty string, you will get that error message. Please check those variables:
If you see something like the output below, you will get the error message (verified on WinXP).
Regards answered 17 Sep '12, 12:53 Kurt Knochner ♦ |