另外(樹莓派直連電腦,設(shè)置靜態(tài)ip)可參考 http://blog.csdn.net/liang890319/article/details/8639128
樹莓派默認使用的是dhcp自動分配ip
而且默認打開SSH服務(wù)
當(dāng)沒有顯示器的時候
我們可以啟動樹莓派,并用軟件掃描局域網(wǎng)找到Raspberry pi的ip地址
然后用putty登錄
當(dāng)有些情況下我們不想掃描ip那么可以考慮將樹莓派的ip設(shè)為固定ip這樣我們每次就能準(zhǔn)確訪問
而不需要掃描ip
設(shè)置樹莓派為靜態(tài)ip的方法和debian linux修改是一樣的
只需要修改文件sudo vi /etc/network/interfaces文件即可
我的pi操作系統(tǒng)是2013-02-09-wheezy-raspbian.img
/etc/network/interfaces原文件為dhcp獲取ip,內(nèi)容為
auto lo
iface lo inet loopback
iface eth0 inet dhcp
allow-hotplug wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp
修改此文件的辦法:
1,樹莓派接顯示器,用鍵盤鼠標(biāo)打開終端 修改文件
2,用ssh/VNC登錄樹莓派修改此文件
3,在linux下直接用讀卡器讀取SD卡 修改/etc/network/interfaces文件
(你可以先備份這個文件sudo cp /etc/network/interfaces /etc/network/interfaces.bk)
想設(shè)置為靜態(tài)ip需要這么做
直接將iface eth0 inet dhcp
替換為
iface eth0 inet static
address 192.168.1.88
netmask 255.255.255.0
gateway 192.168.1.1
然后刪除這一行
iface default inet dhcp(否則 ip是固定的但是無法連外網(wǎng))
修改后的文件為
auto lo
iface lo inet loopback
iface eth0 inet static
address 192.168.1.88
netmask 255.255.255.0
gateway 192.168.1.1
allow-hotplug wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
然后重啟服務(wù)或系統(tǒng)
sudo reboot
root@raspberrypi:~# sudo service networking restart
樹莓派為靜態(tài)ip而且可以連接外網(wǎng)
測試是否能聯(lián)網(wǎng):
pi@raspberrypi ~ $ sudo apt-get update
命中 http://archive.raspberrypi.org wheezy InRelease
獲取:1 http://mirrordirector.raspbian.org wheezy InRelease [12.5 kB]
命中 http://archive.raspberrypi.org wheezy/main armhf Packages
忽略 http://archive.raspberrypi.org wheezy/main Translation-zh_CN
如果你想修改DNS那么你需要修改此文件
root@raspberrypi:~# sudo cat /etc/resolv.conf
改成類似的即可
nameserver 8.8.8.8
nameserver 8.8.4.4
nameserver 208.67.220.220
nameserver 208.67.222.222
nameserver 10.10.10.10
root@raspberrypi:~# sudo service networking restart
聯(lián)系客服