求EM7455驱动安装程序
Tofloor
poster avatar
湘局潭段
deepin
2020-10-13 23:02
Author
在官网下载了EM7455的LINUX驱动,解压后始终无法安装,求救各位大神,是否有EM7455驱动的deb安装程序
Reply Favorite View the author
All Replies
Shinglee
deepin
2020-10-13 23:07
#1
像驱动这种几乎不可能提供deb安装包的,基本全是源码编译安装,把你无法安装的问题截图出来,解决你的安装问题
Reply View the author
湘局潭段
deepin
2020-10-14 20:50
#2
https://bbs.deepin.org/post/189881#
请大侠移步
Reply View the author
Shinglee
deepin
2020-10-14 21:20
#3
https://bbs.deepin.org/post/203763
https://bbs.deepin.org/post/189881#
请大侠移步

lspci -k | grep Network
把这个命令输出的内容截图或者复制出来
Reply View the author
湘局潭段
deepin
2020-10-15 04:27
#4
https://bbs.deepin.org/post/203763
lspci -k | grep Network
把这个命令输出的内容截图或者复制出来

04:00.0 Network controller: Intel Corporation Wi-Fi 6 AX200 (rev 1a)

只找到了WLAN网卡,没有WWAN网卡
Reply View the author
Shinglee
deepin
2020-10-15 07:34
#5
本帖最后由 shinglee 于 2020-10-14 23:46 编辑
https://bbs.deepin.org/post/203763
04:00.0 Network controller: Intel Corporation Wi-Fi 6 AX200 (rev 1a)

只找到了WLAN网卡,没有WWAN网 ...

有了网卡名字,这问题不就简单起来了
https://www.intel.com/content/www/us/en/support/articles/000005511/network-and-i-o/wireless.html
网址表格中第二个就是你的驱动
直接执行下面命令:
  1. cd ~/Desktop/
  2. wget https://wireless.wiki.kernel.org/_media/en/users/drivers/iwlwifi/iwlwifi-cc-46.3cfab8da.0.tgz
  3. tar -xvf iwlwifi-cc-46.3cfab8da.0.tgz
  4. cd iwlwifi-cc-46.3cfab8da.0
  5. sudo cp -f iwlwifi-cc-a0-46.ucode /lib/firmware
  6. sudo reboot
Copy the Code

如果重启后出现以下错误
1
2
error: XXX has invalid signature
error: you need to load the kernel first

去BIOS设置,将Secure Boot关闭.
Reply View the author
湘局潭段
deepin
2020-10-15 17:11
#6
https://bbs.deepin.org/post/203763
有了网卡名字,这问题不就简单起来了
https://www.intel.com/content/www/us/en/support/articles/0000055 ...

INTEL网卡使用正常,但是图示的ID 1199:9079 Sierra Wireless的网卡无法使用,使用ls usb可以看到这个硬件,但ls pci-e看不到,这个网卡接口是M.2
Reply View the author
Shinglee
deepin
2020-10-15 17:27
#7
https://bbs.deepin.org/post/203763
INTEL网卡使用正常,但是图示的ID 1199:9079 Sierra Wireless的网卡无法使用,使用ls usb可以看到这个硬 ...


明白了,你加了块网卡,这个额外添加的不太行,这个问题有两个解决方法
1. 可以尝试升级内核,一般来说越新的内核支持的硬件越多
  1. echo 'deb http://deb.xanmod.org releases main' | sudo tee /etc/apt/sources.list.d/xanmod-kernel.list && wget -qO - https://dl.xanmod.org/gpg.key | sudo apt-key add -
  2. sudo apt update && sudo apt install linux-xanmod
Copy the Code

2. lshw  使用这个命令能看到更为详细的硬件品牌型号,找到你的无线网卡的型号,截图或复制出来
Reply View the author
Shinglee
deepin
2020-10-15 18:08
#8
本帖最后由 shinglee 于 2020-10-16 10:12 编辑
https://bbs.deepin.org/post/203763
INTEL网卡使用正常,但是图示的ID 1199:9079 Sierra Wireless的网卡无法使用,使用ls usb可以看到这个硬 ...

链接:https://pan.baidu.com/s/1eY0elK4zldBfChWA5lTo7g 提取码:bv32
下载 SierraLinuxQMIdriversS2.42N2.63.tar.bz2 ,放在桌面(我特么,什么破官网卡的要命,还要注册账号才能下载
右键桌面,打开终端输入以下命令:
  1. sudo mkdir -p /usr/src/SierraLinuxQMIdrivers-S2.42N2.63
  2. sudo tar -xvf SierraLinuxQMIdriversS2.42N2.63.tar.bz2 -C /usr/src/SierraLinuxQMIdrivers-S2.42N2.63/
  3. sudo cp -f /usr/src/SierraLinuxQMIdrivers-S2.42N2.63/dkms/dkms.conf /usr/src/SierraLinuxQMIdrivers-S2.42N2.63/
  4. sudo dkms add --verbose -m SierraLinuxQMIdrivers -v S2.42N2.63
  5. sudo dkms build --verbose -m SierraLinuxQMIdrivers -v S2.42N2.63
  6. sudo dkms install --verbose -m SierraLinuxQMIdrivers -v S2.42N2.63
  7. sudo dkms status --verbose -m SierraLinuxQMIdrivers -v S2.42N2.63
Copy the Code
执行最后一条命令,上面应该会输出 SierraLinuxQMIdrivers xxxx installed 这种
然后重启机器
最后吐槽下,你另外发的帖子,下载的不是驱动,下载的是sdk
Reply View the author
湘局潭段
deepin
2020-10-17 16:55
#9
https://bbs.deepin.org/post/203763
链接:https://pan.baidu.com/s/1eY0elK4zldBfChWA5lTo7g 提取码:bv32
下载 SierraLinuxQMIdriversS2.42N2 ...

感谢大神!!总算识别出来硬件了

Reply View the author