After installing Wireshark in Deepin store, it will be an error to catch the packet, which is a privilege issue, which is not used.
Because the core file of the Wireshark parser is the/usr/bin/dumpcap executable file, it is mainly to set permissions on this file, in order to facilitate management, through a Wireshark user group to manage all users using Wireshark will be more convenient.
Add Wireshark User Group
sudo groupadd Wireshark
Change Dumpcap to Wireshark user group sudo chgrp wireshark/usr/bin/dumpcap
Let the Wireshark user group have root privileges to use Dumpcap.
sudo chmod 4755/usr/bin/dumpcap
Add the user name you want to use to the Wireshark user group, and my username is MD5
sudo gpasswd-a lwj Wireshark
Now open the Wireshark already can crawl the current NIC's information normally.
Deepin Linux solves Wireshark permissions issues