web-dev-qa-db-ja.com

インテル®Centrino®Wireless-N 1000-Wifi接続が非常に遅い-構成または修正するにはどうすればよいですか?

私は新しいUbuntuユーザーで、私のwifiを適切に動作させようとしています。

ダウンロードしたドライバーをインストールするにはどうすればよいですか?

ルーターの一部の構成を変更した後、ラップトップで5Mbpsを取得できます(ただし、スマートフォンでは+ 100Mbps)

私も この全体のチュートリアル に従いましたが、まだ全速力を発揮していません。

最近、私は 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
1
RobertoOSantos

ごめん、みんな!私の間違い。

実行することにより:$ nmcli dev wifi list

1.ルーター構成であることに気づきました。

802.11bのみでした(11mbpsに制限されています)。

802.11nに変更しました(最大130mbps)。

2.私も気づきました

Intel Support for Linux Page にバグがあります。インテル®Centrino®Wireless-N 1000ファームウェアバージョンは、カーネルバージョン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/
1
RobertoOSantos