ベリーパイはワイヤレスカードを使用しています

2720 ワード

タオバオで販売されている樹莓派免駆の無線LANカードがあり、チップはRTL 8188 CUSです.
以下は、ベリーパイ1世代の操作です.
ワイヤレスカードの接続
1世代はUSBを差し込むとデバイスが再起動するようですが、それは待ってください.
まず、デバイスを確認します.
$ lsusb
Bus 001 Device 004: ID 0bda:8176 Realtek Semiconductor Corp. RTL8188CUS 802.11n WLAN Adapter
Bus 001 Device 003: ID 0424:ec00 Standard Microsystems Corp. SMSC9512/9514 Fast Ethernet Adapter
Bus 001 Device 002: ID 0424:9512 Standard Microsystems Corp. LAN9500 Ethernet 10/100 Adapter / SMSC9512/9514 Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

中にRTL8188CUS 802.11n WLAN Adapterが現れているのが見えます.
ワイヤレス接続の表示
このとき、ifconfigwlan0が現れたかどうかを見ることができます.
$ ifconfig
...
wlan0     Link encap:Ethernet  HWaddr e8:4e:06:25:xx:xx
...

ワイヤレスカードで検索できるネットワークを確認できます.
$ iwlist wlan0 scan

ワイヤレス接続の設定
それぞれ2つのファイルは、次のようになります.
$ sudo vim /etc/network/interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)

# Please note that this file is written to be used with dhcpcd
# For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf'

# Include files from /etc/network/interfaces.d:
source-directory /etc/network/interfaces.d

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet dhcp

allow-hotplug wlan0
iface wlan0 inet manual
    wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
$ sudo vim /etc/wpa_supplicant/wpa_supplicant.conf
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1

network={
    ssid="your_ssid"
    psk="your_password"
}

ワイヤレスネットワークの再起動とチェック
もう一度ifconfigをやり直して、IPアドレスがあるかどうか見てみましょう.
$ ifconfig wlan0
wlan0     Link encap:Ethernet  HWaddr e8:4e:06:25:xx:xx
          inet addr:192.168.1.11  Bcast:192.168.1.255  Mask:255.255.255.0
...

ここまでで設定が完了するはずです.その後再起動すると自動的にそのWiFiに接続されます.
その他の構成関連
新しいRaspbianシステムは、WiFi:WiFi-Raspberry Pi Documentationをグラフィックインタフェースで構成することができます.
マルチワイヤレスカードの場合
ベリーパイ3はワイヤレスカードを持っていますが、ネットが足りないとか、他の理由でワイヤレスカードを買う必要があると思ったら、他の問題を考えなければならないかもしれません.後で話しましょう.
リファレンス
ベリーパイネットワーク関連:
  • 樹莓派学習ノート——USB wifi配置ガイド-モノネットIoT経験分かち合い小站-ブログチャンネル-CSDN.NET
  • Setting up Wifi with the Graphic Interface | Adafruit's Raspberry Pi Lesson 3. Network Setup | Adafruit Learning System
  • Setting WiFi up via the command line - Raspberry Pi Documentation
  • Wi-fi on Raspberry Pi, a simple guide - RaspyFi

  • ifconfigコマンド関連:
  • ifconfig-ウィキペディア、フリー百科事典
  • Bringing interfaces up/down
  • 鳥兄のLinuxプライベートルーム料理--Linux常用ネットワーク指令紹介