To find the wireless WiFi driver and chipset information on a Linux system, you can use the lspci
command.
The lspci
command displays a list of all PCI devices on the system, including the wireless WiFi adapter. To display only the information about the wireless WiFi adapter, you can use the grep
command to filter the output of lspci
.
For example, to find the wireless WiFi adapter on a system, you can use the following command:
lspci | grep -i wireless
This will display a line with the information about the wireless WiFi adapter, including the vendor and device ID, as well as the driver that is being used.
Alternatively, you can use the iwconfig
command to display information about the wireless interfaces on the system. For example:
iwconfig
This will display a list of all wireless interfaces on the system, along with their configuration and status.