The instructions from README.Debian actually do work (except it's missing the step that tells you to log out and then back in). The dpkg-reconfigure
command creates the wireshark
group (so you don't need to), but then you need to add your user to the group, and re-login.
These commands work for me with Wireshark 1.6.2 on Ubuntu Server 11.10 (64-bit):
$ sudo apt-get install wireshark
$ sudo dpkg-reconfigure wireshark-common
$ sudo usermod -a -G wireshark $USER
$ sudo reboot
METHOD TWO:
Complete solution found at http://cmc.site11.com/?p=2165
sudo addgroup -system wireshark
sudo chown root:wireshark /usr/bin/dumpcap
sudo setcap cap_net_raw,cap_net_admin=eip /usr/bin/dumpcap
sudo usermod -a -G wireshark YOUR_USER_NAME
转载地址:http://ask.wireshark.org/questions/7523/ubuntu-machine-no-interfaces-listed