lspci: /usr/share/misc/pci.ids: No such file or directory
时间: 2023-07-31 22:09:09 浏览: 211
Windows版的lspci/setpci源代码
This error message suggests that the system cannot find the "pci.ids" file. This file is used by the "lspci" command to display information about the PCI devices in the system.
To resolve this issue, you can try installing the "pciutils" package, which should include the "pci.ids" file. You can do this by running the following command:
```
sudo apt-get install pciutils
```
If the package is already installed, you can try reinstalling it to ensure that all necessary files are present:
```
sudo apt-get --reinstall install pciutils
```
Once the package is installed or reinstalled, try running the "lspci" command again to see if the error has been resolved.
阅读全文