answered
2014-06-04 17:24:57 +0200
Kontio 4995 ●58 ●54 ●63 moderator
If you have developer mode enabled (which I assume you have, since you are searching for these tools), you can add the mer-tools repository, which contains tcpdump (and other Linux tools which normally are not needed on a phone):
ssu ar mer-tools
pkcon refresh force
# if you want to search for it... you can also straight install it...
pkcon search name tcpdump
you can then install it with:
pkcon install tcpdump
traceroute
is considered to be deprecated by many network engineers. Use tracepath
resp. tracepath6
instead, these 2 commands are available by default on the device. It does more or less the same, instead of ICMP it used UDP.
If you capture a network dump with tcpdump
(-w filename
) and write it to a file you can then download the dump to your computer and analyse the dump in Wireshark. So there is no need for Wireshark on the device.
Wireshark is such a complex program with a lot of UI goodies (not optimized for touch screen UIs), it would not make sense to try to run that on a touch screen device.