zoukankan      html  css  js  c++  java
  • 树莓CM3开机连接WIFI

    两年没玩树莓派了,最近拿了一块CM3,发现启动后不能连接WIFI,网上的文章都是针对3B的,修改/etc/network/interfaces文件和/etc/wpa_supplicant/wpa_supplicant.conf文件。

    这种方法对CM3不起作用,反而会丢失无线模块(执行ifconfig时看不到wlan0了,ifdown和ifup提示“没有那个设备”),要拨了再插才能发现。

    没办法,只能写个SH脚本放到/etc/rc.local中启动,具体方法如下:

    1、使用wpa_passphrase生成一个配置文件,此文件我放在/home/pi/wifi.conf(内容略)

    2、在桌面建立一个wifi.sh,内容如下:
    #!/bin/sh
    sudo wpa_supplicant -B -i wlan0 -Dwext -c /home/pi/wifi.conf

    3、修改/etc/rc.local
    在exit 0前面插入代码:
    sleep 30s #必须延时,30s为30秒,1m为1分钟
    sh /home/pi/Desktop/wifi.sh

    暂时就这样用着吧。

  • 相关阅读:
    SpringBoot04-web
    springboot03-日志功能
    SpringBoot02-自动配置原理
    SpringBoot02
    SpringBoot01
    八大排序算法
    SpringSecurity04
    SpringSecurity03
    SpringSecurity02
    SpringSecurity01
  • 原文地址:https://www.cnblogs.com/qq812256/p/11311497.html
Copyright © 2011-2022 走看看