http://askubuntu.com/questions/74059/how-do-i-run-wireshark-with-root-privileges
debian默认情况下是不允许普通用户抓包的,可通过重新配置wireshark-common包来实现
sudo dpkg-reconfigure wireshark-common
之后选择“YES”,这样就新增了wireshark用户组
然后将要抓包的用户加入该组,可能还需要一些与网络相关的用户组
sudo usermod -G netdev,vboxusers,wireshark -a username
PS: 可能需要注销下才能看到新的用户组列表