2016年1月19日 星期二

Raspberry Pi 2 安裝Hypriot Docker

  • 安裝Hypriot

下載Hypriot Docker Image檔
http://blog.hypriot.com/downloads/























解壓縮 hypriot-rpi-20151115-132854.img.zip

下載Win32 Disk Imager
http://sourceforge.net/projects/win32diskimager/
PS. 指定Device時要注意磁碟ID,以免刪除磁碟資料














將OS寫入之SD插入Pi後開機,
帳號:root 密碼:hypriot


  • 設定固定IP
vi /etc/network/interface

iface eth0 inet static
        address 172.16.37.219
        netmask 255.255.255.0
        gateway 172.16.37.254


  • 設定Wifi 固定IP

vi /etc/network/interface

allow-hotplug wlan0
iface wlan0 inet static
        address 192.168.1.101
        netmask 255.255.255.0
        gateway 192.168.1.1


vi /etc/wpa_supplicant/wpa_supplicant.conf
加入下面資訊
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1

network={
    ssid="輸入SSID "
    proto=RSN
    key_mgmt=WPA-PSK
    pairwise=CCMP TKIP
    group=CCMP TKIP
    psk="輸入密碼"
}
重新啟動無線網卡介面

# sudo ifdown wlan0
# sudo ifup wlan0
使用putty試試看是否可以登入



沒有留言:

張貼留言