キラーn1525 wifiを搭載したgs70でのubuntu 14.10の新しいストックセットアップ。 lspciは両方を表示しますが、wifiは正しく認識されないようです:
04:00.0 Ethernet controller: Qualcomm Atheros Killer E220x Gigabit Ethernet Controller (rev 13)
05:00.0 Network controller: Qualcomm Atheros Device 003e (rev 20)
誰かがキラーn1525 wifiを動作させることができましたか?
どうもありがとう...
更新#2:4.1.0-wl-ath +カーネルフォークはもう必要ないはずです。私のWi-Fiは標準のLinux 4.3.0カーネルで動作します。カーネル4.3以降を実行しており、linux-fimwareパッケージにデバイスの正しいファームウェアファイルが含まれていることを確認してください
更新:ファームウェアが動作するようになりました!
Githubにath10kファームウェアリポジトリのフォークを作成し、ath10k/QCA6174/hw2.1/
の下に新しいファームウェアを追加しました
参照: https://github.com/sumdog/ath10k-firmware
以下は、ランチパッドバグトラッカーのlaagのコメントから引用したもので、Windowsドライバーからファームウェアを抽出する方法(上記のリポジトリで行った方法)とUbuntuで新しいカーネルをコンパイルする方法についての詳細な説明があります。 ath10k_coreモジュールのskip_otp=y
オプションが必要であることに注意してください!
I got it working as described in this thread: http://lists.infradead.org/pipermail/ath10k/2015-April/004958.html
Using xubuntu (14.10 upgraded to 15.04) Anyway distro shouldn't be much different. Basically to make it working you need to do (what i did):
1. Get the windows drivers from your notebook manufacturer, in my case MSI GS60. http://download.msi.com/nb_drivers/lan/KillerSuite_1.1.49.1068_Win7_Win81-MSI.Zip
2. Get the needed phyton scripts to extract windows firmware:
dissect.py https://Gist.github.com/kazikcz/8e5845ad84ca251aa295
assemble.py https://Gist.github.com/kazikcz/c970cbf3a863ebbc4495
3. Get kvalo's kernel tree from https://github.com/kvalo/ath
4. Unpack Killer suite and run the following commands: (run commands as root , Sudo / Sudo su)
python dissect.py < drivers/Production/Windows8.1-x64/k1525w81/qca61x420.bin
mkdir /lib/firmware/ath10k/QCA6174/hw2.1
python assemble.py killer-n1525-fw 0 fw-2.bin fw-1.bin 4 > /lib/firmware/ath10k/QCA6174/hw2.1/firmware-4.bin
cp drivers/Production/Windows8.1-x64/k1525w81/eeprom_qca9377_1p0_NFA435_olpc.bin /lib/firmware/ath10k/QCA6174/hw2.1/board.bin
5. Unpack kvalo's kernel and compile it with:
Sudo apt-get install libncurses5-dev gcc make git exuberant-ctags
To simplify things copy your current kernel config to ath-master root folder:
cp /boot/config-`uname -r`* .config
you can configure if you want with: (not needed)
make menuconfig
then compile with: (where X is the number of cores of you processor, i used 6)
make -jX
# then take a coffee or even better a cold beer, anyway it just took about 20 minutes for me.
6. Install the new kernel:
Sudo make modules_install install
7. Create config file with:
nano /etc/modprobe.d/ath10k.conf
Write to it:
options ath10k_core skip_otp=y
8. Reboot using your new kernel 4.x.x-wl-ath
9. Run ifconfig
10. Voila wlan0 should be there waiting for you, now try to connect to you AP.
If its not working try to check if you missed something, check log file (/var/log/dmesg) for more details of what failed.
Give thanks to the guys who made this possible for me: http://lists.infradead.org/mailman/listinfo/ath10k
手順に従いましたが、MSI WS-60で正常に機能しました。詳細については、下のコメント(#122)をご覧ください。
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1383184
最初に;私は完全なLinux初心者です。間違った用語や言葉を使用しても許されますが、QCA6174 Killer 1525を上記のすべての答えよりもはるかに簡単にラップトップで動作させることができました。または他の場所で見つけたもの。私が見つけた情報はすべて2014年のものであり、ほとんどの人は簡単に修正する方法を知っていると思いますが、私のようなユーザーにとってはそうです。これが私がしたことです。
KillerNetworkingの公式サポート情報(新しいカーネル全体のコンパイルに関する情報)に従いました。1)動作しませんでした。 tは何でもします)。
そこで、Ubuntu 15.10の新規インストールでQCA6174 1525を動作させるソリューションを紹介します。
抽出されたファイルに移動し、次の2つの.binファイルを見つけます。
/ath10k-firmware-master/ath10k/QCA6174/hw2.1
ここに2つのファイルがあります。-board.bin
およびfirmware-5.bin
最初に、これら2つのドライバーファイル用の新しいフォルダーを作成します。次のコマンドを使用します。
Sudo mkdir lib/firmware/ath10k/QCA6174/hw2.1
Sudo cp /ath10k-firmware-master/ath10k/QCA6174/hw2.1/{board.bin,firmware-5.bin} /lib/firmware/ath10k/QCA6174/hw2.1
cd /lib/firmware/ath10k/QCA6174/hw2.1
に移動し、そこに2つの.bin
ファイルがあることを確認します。マシンを再起動すると、準備完了です。
参照してください: http://ubuntuforums.org/showthread.php?t=2248919&highlight=n1525 この時点でこのデバイスを動作させる方法はありません。参照するバグレポートに追加することをお勧めします。
Ath10kドライバーの適切なサポートは、Linuxカーネル4.0(ex 3.20)で追加されたはずです。
私はまだそれをテストしていませんが、これは次のようにかなり明確なようです:
ニュース:
2015-01-27 QCA6174サポートが追加され、3.20になります。
ここ: https://wireless.wiki.kernel.org/en/users/drivers/ath10k
QCA6174はn1525に搭載されているチップであることに注意してください。以下を参照してください。 https://wikidevi.com/wiki/Qualcomm_Atheros_Killer_Wireless-AC_1525
したがって、最新のLinuxカーネルにアップグレードするだけです。