在启动wireshark时,我收到以下错误:
sudo wireshark
This application failed to start because it could not find or load the Qt platform plugin "xcb".
Available platform plugins are: linuxfb, minimal, offscreen, xcb.
Reinstalling the application may fix the problem.
Aborted (core dumped)安装xcb之后,我仍然会得到相同的错误。
我正在使用Ubuntu 16.04
以下链接的解决方案对我无效:
发布于 2018-04-24 01:21:12
根据给定的信息,我建议完全重新安装wireshark,如下所示:
sudo apt-get remove --purge wireshark
sudo apt-get autoremove
sudo apt-get update
sudo apt-get install libcap2-bin wireshark
sudo dpkg-reconfigure wireshark-common选择Yes,以便非超级用户能够使用wireshark ( Wireshark推荐的实践)
sudo chgrp YOUR_USER_NAME /usr/bin/dumpcap
sudo chmod 750 /usr/bin/dumpcap
sudo setcap cap_net_raw,cap_net_admin+eip /usr/bin/dumpcap链接:
https://askubuntu.com/questions/1026921
复制相似问题