17 lines
594 B
Plaintext
17 lines
594 B
Plaintext
xdg-icon-resource forceupdate --theme hicolor &> /dev/null
|
|
update-mime-database usr/share/mime &>/dev/null
|
|
|
|
|
|
getent group wireshark >/dev/null 2>&1 || groupadd -g 150 wireshark &>/dev/null
|
|
|
|
setcap 'CAP_NET_RAW+eip CAP_NET_ADMIN+eip' usr/bin/dumpcap
|
|
echo "NOTE: To run wireshark as normal user you have to add yourself into wireshark group"
|
|
|
|
getent group wireshark >/dev/null 2>&1 || groupadd -g 150 wireshark &>/dev/null
|
|
|
|
setcap 'CAP_NET_RAW+eip CAP_NET_ADMIN+eip' usr/bin/dumpcap
|
|
|
|
if getent group wireshark >/dev/null 2>&1; then
|
|
groupdel wireshark
|
|
fi
|