[转载]http://blog.csdn.net/ccwwff/article/details/6697258 在ubuntu安装wireshark, 在启动程序启动wireshark. 点captrue->interface, 出现: There are no interfaces on which a capture can be done. 解决方法: 命令行启动:(一定有root权限才行) $ sudo wireshark…
有的时候我们在Windows7的环境下使用Wireshark的时候,比如点击[Interface List]的时候,出现错误. 错误内容如下: There are no interfaces on which a capture can be done. 这个错误是因为系统没有启动NPF服务造成的. 解决的办法很简单: 01.在[开始]–>[运行] 02.输入:cmd 03.点击右键,选择[以管理员身份运行] 04.选择[是],输入[net start npf] 05.系统提示[NetGroup…
linux环境下 两种解决方案:    第一种方法:使用root用户登陆        xiaoshancun@xiaoshancun-VM500:~$ sudo wireshark    第二种方法: 通过guid形式使当前普通用户可以运行此程序. root@xiaoshancun-VM500:~# groupadd  -g 130  wireshark        #  新建一个名为wireshark的用户组, 130 是GID,此数字不是固定不变的, 请先查看/etc/group 文件查…
权限问题,简单的直接sudo就行. 更安全的做法是: # chmod 4755 /usr/bin/dumpcap dumpcap的所在目录可用whereis命令查看.…
I got the following error message when trying to open a network interface for capture using Wireshark on Mac OS X (Wireshark 1.5.1 Intel 64 beta and 1.4.6 Intel 64 show this behaviour): There are no interfaces on which a capture can be done. To solve…
Wireshark设置interface 时提示“There are no interfaces on which a capture can be done ” 解决方法: 今天在电脑上安装了WIRESHARK软件,在设置interface 时提示"There are no interfaces on which a capture can be done"  提示没有任何一个网络接口准备好.此提示明显是不对的, 我的网卡明明可以正常上网,网络接口怎么会没有准备好呢?  想着应该是和…
There are no interfaces on which a capture can be done 解决方法: Open a terminal by pressing Ctrl+Alt+T and type the following commands: sudo dpkg-reconfigure wireshark-common press the right arrow and enter for yes sudo chmod +x /usr/bin/dumpcap you sho…
There are no interfaces on which a capture can be done. 今天启动了Wireshark 但是提示→There are no interfaces on which a capture can be done. 右击→以管理员身份运行 Ok…
ubuntu下使用vi是方向键变乱码 退格键不能使用的解决方法 转载:http://blog.csdn.net/yao_qinwei/article/details/8761777 在插入模式下,按删除键没有任何反应,按方向键分别打印出A.B.C.D,每个字符一行. 一.编辑/etc/vim/vimrc.tiny 由于/etc/vim/vimrc.tiny的拥有者是root用户,所以要在root的权限下对这个文件进行修改.很简单,这个文件里面的倒数第二句话是“set compatible”,如下…
http://blog.csdn.net/cumirror/article/details/4694283 安装编译工具: $sudo apt-get install build-essential 为了成功编译Wireshark,您需要安装GTK+的开发文件和GLib库(libraries). $sudo apt-get install libgtk2.0-dev libglib2.0-dev 安装Checkinstall以便管理您系统中直接由源代码编译安装的软件. $sudo apt-get…