j'ai installé Hardware probe, pas mal du tout (en passant) il ma listé tous le contenu de mon PC et les pilotes qui en faisaient partie.
il m'a signalé plusieurs erreurs dont la carte wifi.
D'après lui Linux Pop-os_19.10 serait le plus adapter a mon PC et sinon je dois réparer les drivers (enfin, les changer).
en version courte ça donne pour la carte wifi :
Code : Tout sélectionner
Device 'Wireless 3165'
ID PCI 8086:3165:8086:8110
Class 02-80 »
Type net/wireless »
Vendor Intel »
Name Wireless 3165
Subsystem Intel / Dual Band Wireless-AC 3165
Find drivers for your hardware by creating a probe.
Kernel Drivers
The device is supported by kernel versions 4.2 and newer according to the LKDDb:
Ver Source Config ID Class
4.2 - 4.4 drivers/net/wireless/iwlwifi/pcie/drv.c CONFIG_IWLWIFI CONFIG_WLAN 8086:3165:*:8110 *
4.5 - 5.9 drivers/net/wireless/intel/iwlwifi/pcie/drv.c CONFIG_IWLWIFI CONFIG_WLAN CONFIG_WLAN_VENDOR_INTEL 8086:3165:*:8110 *
dans le driver:
Code : Tout sélectionner
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/module.h>
#include <linux/pci.h>
#include <linux/acpi.h>
#include "fw/acpi.h"
#include "iwl-trans.h"
#include "iwl-drv.h"
#include "iwl-prph.h"
#include "internal.h"
#define IWL_PCI_DEVICE(dev, subdev, cfg) \
.vendor = PCI_VENDOR_ID_INTEL, .device = (dev), \
.subvendor = PCI_ANY_ID, .subdevice = (subdev), \
.driver_data = (kernel_ulong_t)&(cfg)
* 3165 Series */
{IWL_PCI_DEVICE(0x3165, 0x4010, iwl3165_2ac_cfg)},
{IWL_PCI_DEVICE(0x3165, 0x4012, iwl3165_2ac_cfg)},
{IWL_PCI_DEVICE(0x3166, 0x4212, iwl3165_2ac_cfg)},
{IWL_PCI_DEVICE(0x3165, 0x4410, iwl3165_2ac_cfg)},
{IWL_PCI_DEVICE(0x3165, 0x4510, iwl3165_2ac_cfg)},
{IWL_PCI_DEVICE(0x3165, 0x4110, iwl3165_2ac_cfg)},
{IWL_PCI_DEVICE(0x3166, 0x4310, iwl3165_2ac_cfg)},
{IWL_PCI_DEVICE(0x3166, 0x4210, iwl3165_2ac_cfg)},
{IWL_PCI_DEVICE(0x3165, 0x8010, iwl3165_2ac_cfg)},
{IWL_PCI_DEVICE(0x3165, 0x8110, iwl3165_2ac_cfg)},
il m'a fait un rapport complet du PC avec toutes les anomalies.
Je me suis dit que ça pourrais peut-être servir a quelqu'un d'utilisé ça.