I've installed Wireshark in Ubuntu 16.04 with the command:
sudo apt-get install wiresharkAfter program start, Start Capture and Stop Capture buttons are disabled. Even opening Capture Options window, I can't see any interfaces to capture packets from. They don't show even with menu Capture > Refresh Interfaces.
Where are all machine's interfaces?
Edit:
I also noticed there's a message in the main screen:
Couldn't run /usr/bin/dumpcap in child process: Permission denied
1 Answer
Even though you could run wireshark as root, it should be avoided.
Instead, try this:
sudo dpkg-reconfigure wireshark-commonSelect YES to the question
Then add your user to newly created wireshark group with this
sudo adduser $USER wiresharkFinally log out, and log back in and you should be able to capture packets.
4