Forked from MinaMikhailcom/gist:0825906230cbbe478faf4d08abe9d11a
Last active
April 9, 2019 08:07
-
-
Save Prototype-X/db9a3c68d68b2639b74c9e424a2e9576 to your computer and use it in GitHub Desktop.
Fix for "couldn't run /usr/bin/dumpcap in child process: permission denied"
This file contains hidden or 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 dpkg-reconfigure wireshark-common #Select "Yes" | |
chmod +x /usr/bin/dumpcap | |
sudo setcap 'CAP_NET_RAW+eip CAT_NET_ADMIN+eip' /usr/bin/dumpcap | |
or | |
`sudo setcap 'CAP_NET_RAW+eip CAT_NET_ADMIN+eip' $(which dumpcap)' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment