3

I downloaded Wireshark from the Ubuntu 11.10 software center and when I start it and want to select default interface for capture in the list of interfaces are blank. I can't select default interface. Please help me.

hingev
  • 6,596

2 Answers2

2

Run wireshark with sudo priveleges - gksudo wireshark. You will need super-user permission to capture packets from your network interface.

1

This command string worked in my case. I don't run anything as root if I don't have to.

sudo chgrp your username /usr/bin/dumpcap
sudo chmod 750 /usr/bin/dumpcap
sudo setcap cap_net_raw,cap_net_admin+eip /usr/bin/dumpcap
Oyibo
  • 1,919
Mack
  • 11
  • 1
  • Super helpful because this relates to anything using libpcap, not just dumpcap + wireshark. Got me out of a pinch, thanks! – Brannon Sep 24 '15 at 15:58