web-dev-qa-db-ja.com

WiFiが機能しない:Lenovo Z51ラップトップ上のUbuntu 16.04

私はここの一番上の答えの指示に従いました:

私のWi-Fi Qualcomm Atheros Device [168c:0041](rev 20)は、Lenovo flex 3 14上のUbuntu 14.04.3では表示されず動作しません

しかし:

(Reading database ... 323177 files and directories currently installed.)
Preparing to unpack backath10k-dkms_2.0_all.deb ...

------------------------------
Deleting module version: 2.0
completely from the DKMS tree.
------------------------------
Done.
Unpacking backath10k-dkms (2.0) over (2.0) ...
Setting up backath10k-dkms (2.0) ...
Loading new backath10k-2.0 DKMS files...
First Installation: checking all kernels...
Building only for 4.4.8-040408-generic
Building for architecture x86_64
Building initial module for 4.4.8-040408-generic
ERROR (dkms apport): kernel package linux-headers-4.4.8-040408-generic is not supported
Error! Bad return status for module build on kernel: 4.4.8-040408-generic (x86_64)
Consult /var/lib/dkms/backath10k/2.0/build/make.log for more information.

Make.logの内容を次のPastebinにリンクしました。 http://Pastebin.com/dnuAvDfE

私は何をすべきか?

編集: 'Sudo dkms remove backath10k/2.0 --all'を実行しましたが、次の結果が得られました: http://Pastebin.com/UVyiZTLp まだ接続できません。

編集:解決しました!下のジェレミーのコメントをご覧ください

1
gnulynnux

16.04カーネルは以前のバージョンよりも多くのデバイスをサポートしているため、Ubuntu 16.04ユーザーはバックポートまたはdkmsパッケージを使用しないでください。ほとんどの場合、skip_otpパラメーターを設定し、ファームウェアをインストールする必要があります。動作するファームウェアは https://github.com/atondwal/ath10k-firmware.git からです

持っている場合にのみこのファームウェアを使用してください

02:00.0 Network controller [0280]: Qualcomm Atheros Device [168c:0041] (rev 20)
    Subsystem: Lenovo Device [17aa:3545]
echo "options ath10k_core skip_otp=Y" | Sudo tee /etc/modprobe.d/ath10k_core.conf
git clone https://github.com/atondwal/ath10k-firmware.git
Sudo cp -r ath10k-firmware/ath10k/ /lib/firmware/
cd /lib/firmware/ath10k/QCA6164
Sudo cp -r hw2.1/ /lib/firmware/ath10k/QCA6174/
1
Jeremy31

|| Lenovo Z51-70のWifi問題を解決するためのステップワイズガイド||


  1. このリンクからWifi-70という名前のtar.gzファイルをダウンロードします- Wifi70.tar.gz

  2. 目的の場所/ディレクトリにtar.gzファイルを抽出します

(例:/ homeディレクトリ)

tar -xzvf Wifi-70.tar.gz -C /home
  1. ターミナルからWifi-70ディレクトリの-backports-20150731という名前のフォルダーに移動します。フォルダを右クリックしてターミナルで開くだけです

次に、次のコマンドを実行します(ここでコードをコンパイルしようとしています)

Sudo make install
  1. これが完了したら、Wifi-70のath10k-firmware-masterという名前のフォルダーに移動します。

次に、以下のコマンドを実行します

Sudo cp -R ath10k/ /lib/firmware/

Sudo bash -c 'echo "options ath10k_core skip_otp=y" > 
/etc/modprobe.d/ath10k.conf'
  1. システムを再起動します。再起動後、次のコマンドを実行します。

(再起動せずに実行するとエラーがスローされます)

Sudo modprobe ath10k_pci

希望、それはあなたの問題を解決します:)

1
ilLuSion

問題を解決するための手順;

1-ソフトウェアとアップデートを開き、追加のドライバーをクリックします

2-ネットワークカードに関連するドライバーをインストールします

3-リーボットシステム

追加の提案;

1-ターミナルを開いて-nm-connection-editor-と入力し、Enterキーを押します。

2- [追加]ボタンをクリックします-正しいネットワーク接続、つまりWiFiを選択したことを確認してください。

ドライバーとファームウェアの更新方法がわからない場合は、ウェルカム画面と呼ばれるubuntu mateのソフトウェアがあります;

端末に入力しますSudo apt install ubuntu-mate-welcome

その後、端末ubuntu-mate-welcomeにタイプをインストールします

次に、>はじめに>ドライバーをクリックします

これが問題の解決に役立つことを願っています!

0
Andy

ドライバーには、欠落しているファームウェアが必要です。

Direct firmware load for ath10k/QCA6174/hw2.1/board-2.bin failed with error -2

イーサネット、テザー、または可能なあらゆる手段によるインターネット接続が有効な状態で、ターミナルを開いて以下を実行してください。

Sudo apt-get update
Sudo apt-get install git
git clone https://github.com/kvalo/ath10k-firmware.git
cd ath10k-firmware/QCA6174/hw2.1
Sudo cp  *  /lib/firmware/ath10k/QCA6174/hw2.1
cd /lib/firmware/ath10k/QCA6174/hw2.1
Sudo mv firmware-5.bin_SW_RM.1.1.1-00157-QCARMSWPZ-1  firmware-5.bin

リブート。

0
chili555