1. 程式人生 > >Intel Edison 換完Debian 後開機自動設定 Wifi

Intel Edison 換完Debian 後開機自動設定 Wifi

本人在韓國讀碩士 把上交的report 作為部落格記錄下來 希望能給大家做個參照

之前的wifi設定 請參照Intel Edison 換Debian 系統的博文

     重啟的時候 自動設定 wifi

在 putty上 以 root的方式登入 edison

nano/etc/rc.local

在 exit 0 之前 輸入 ifup wlan0 

#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.

echo 1 >/sys/devices/virtual/misc/watchdog/disable

#/sbin/first-install.sh

ifup wlan0

exit 0