web-dev-qa-db-ja.com

ワイヤレスAPを作成できません

this を使用してAPを作成しようとし、問題を解決しようとしました

$ iw list
nl80211 not found.

this を使用しますが、makeを起動するとエラーが発生します

~/hostapd-2.0/hostapd$ make
../src/drivers/driver_nl80211.c:19:31: fatal error: netlink/genl/genl.h: No such file or directory
compilation terminated.
make: *** [../src/drivers/driver_nl80211.o] Error 1

何か案は?

Broadcomワイヤレスカードを持っています。

1
tikend

あなたが投稿したリンク には次のように書かれています:

if this fails with errors like:

driver_nl80211.c:21:31: warning: netlink/genl/genl.h: No such file or directory
driver_nl80211.c:22:33: warning: netlink/genl/family.h: No such file or directory
driver_nl80211.c:23:31: warning: netlink/genl/ctrl.h: No such file or directory
driver_nl80211.c:24:25: warning: netlink/msg.h: No such file or directory
driver_nl80211.c:25:26: warning: netlink/attr.h: No such file or directory



you need to install/update libnl-1.0pre8 (or later). If all goes well and the 
compilation finishes, try the minimal hostapd again, see the section Using your
distributions hostapd above for that.

そう...

Sudo apt-get install libnl1 libnl-dev

その後、ビルドを実行します


私はこれをざっと読みましたが、あなたのカードがこれに役立つとは思いません

確かに、これを実行してください:

lspci | grep -i network

Broadcom 43 ....カードをお持ちの場合、このルートは機能しません。 こちらを参照

2
phipsalabim