我是一个新的Ubuntu用户,试图让我的wifi正常工作。
如何安装下载的驱动程序?
在改变路由器的一些配置后,我可以在我的笔记本电脑上获得5 5Mbps (但在我的智能手机上是+100 5Mbps)
我也跟随了这个完整的教程,但我仍然没有达到全速。
最近我找到了intel.com上合适的驱动程序。
我已将iwlwifi-1000-3.ucode
文件复制到/libfirmware
但我猜我的wifi还在使用通用驱动程序。
$ lshw -C network
*-network
description: Wireless interface
product: Centrino Wireless-N 1000 [Condor Peak]
vendor: Intel Corporation
physical id: 0
bus info: pci@0000:03:00.0
logical name: wlp3s0
version: 00
serial: 00:26:c7:b2:b3:18
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
configuration: broadcast=yes driver=iwlwifi driverversion=5.4.0-29-generic firmware=39.31.5.1 build 35138 ip=192.168.1.36 latency=0 link=yes multicast=yes wireless=IEEE 802.11
$ cat /etc/os-release
$ lsb_release -a
$ hostnamectl
Distributor ID: Ubuntu
Description: Ubuntu 20.04 LTS
Release: 20.04
Codename: focal
root@roberto-HP-Pavilion-dm4-Notebook-PC:/home/roberto# hostnamectl
Static hostname: roberto-HP-Pavilion-dm4-Notebook-PC
Icon name: computer-laptop
Chassis: laptop
Machine ID: 4261b4ee39b7492d88bca690bdbcb8eb
Boot ID: 999a755c19264f008eb441c6607ab432
Operating System: Ubuntu 20.04 LTS
Kernel: Linux 5.4.0-29-generic
Architecture: x86-64
$ lspci -knn | grep Net -A3; rfkill list
03:00.0 Network controller [0280]: Intel Corporation Centrino Wireless-N 1000 [Condor Peak] [8086:0084]
Subsystem: Intel Corporation Centrino Wireless-N 1000 BGN [8086:1315]
Kernel driver in use: iwlwifi
Kernel modules: iwlwifi
0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
1: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
2: hp-bluetooth: Bluetooth
Soft blocked: no
Hard blocked: no
3: hp-wifi: Wireless LAN
Soft blocked: no
Hard blocked: no
发布于 2020-05-13 14:52:57
抱歉,伙计们!是我的错。
通过执行:$ nmcli dev wifi list
它只是802.11b (限制在11 11mbps)。
我已经更改为802.11n (高达130)。
英特尔对Linux页面的支持上有一个bug。无线-N1000固件版本在内核版本3.2+和2.6.30+之间切换。
然后是我遵循了这些步骤:
$ tar -xvzf iwlwifi-1000-ucode-39.31.5.1.tgz
$ cd iwlwifi-1000-ucode-39.31.5.1/
$ sudo cp iwlwifi-1000-5.ucode /lib/firmware/
https://askubuntu.com/questions/1238656
复制相似问题