Created
March 20, 2019 00:31
-
-
Save oxygen/aaa9cf24621a1709220440ad1dafc989 to your computer and use it in GitHub Desktop.
Wireshark non-root permissions Ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install wireshark libcap2-bin | |
sudo groupadd wireshark | |
sudo usermod -a -G wireshark $USER | |
sudo chgrp wireshark /usr/bin/dumpcap | |
sudo chmod 755 /usr/bin/dumpcap | |
sudo setcap cap_net_raw,cap_net_admin=eip /usr/bin/dumpcap |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From here https://osqa-ask.wireshark.org/questions/1949/wireshark-says-there-are-no-interfaces-on-which-a-capture-can-be-done-how-do-i-fix-this/44929