vi /etc/network/inte***ces
//可以看到如下內容# wired or wireless inte***ces
auto eth0
iface eth0 inet dhcp
iface eth1 inet dhcp
這段**表示網絡卡設定動態獲取ip,我們把eth0注釋掉。
# wired or wireless inte***ces
auto eth0
#iface eth0 inet dhcp //注釋這一行
iface eth1 inet dhcp
然後在檔案內新增如下指令
iface eth0 inet static //設定eth0為靜態的ip位址方式
address 192.168.1.111 //你的ip位址
netmask 255.255.255.0 //子網掩碼
gateway 192.168.1.1 //閘道器
broadcast 192.168.1.255 //廣播
整個檔案如下:
# /etc/network/inte***ces -- configuration file for ifup(8), ifdown(8)
# the loopback inte***ce
auto lo
iface lo inet loopback
# wireless inte***ces
iface wlan0 inet dhcp
wireless_mode managed
wireless_essid any
wpa-driver wext
wpa-conf /etc/wpa_supplicant.conf
iface atml0 inet dhcp
# wired or wireless inte***ces
auto eth0
#iface eth0 inet dhcp
iface eth1 inet dhcp
iface eth0 inet static
address 192.168.1.111
netmask 255.255.255.0
gateway 192.168.1.1
broadcast 192.168.1.255
# ethernet/rndis gadget (g_ether)
# ... or on host side, usbnet and random hwaddr
iface usb0 inet static
address 192.168.7.2
netmask 255.255.255.0
network 192.168.7.0
gateway 192.168.7.1
# bluetooth networking
iface bnep0 inet dhcp
/etc/init.d/networking restart
在/etc/init.d/rc下修改
在檔案的最後加入以下命令就可以了
ifconfig eth0 192.168.1.111 netmask 255.255.255.0
route add default gw 192.168.1.1
也可以通過以下命令追加到檔案中:
echo "ifconfig eth0 192.168.***.*** netmask 255.255.255.0" | tee -a /etc/init.d/rc
echo "route add default gw 192.168.***.1" | tee -a /etc/init.d/rc
IMX6ULL開發板 終極者 開發板使用前裝配流程
開發板使用前裝配流程 1.電源介面卡乙個 2.mini usb資料線兩根 3.網線一根 現在我們來看一下開發板的組裝 1.連線除錯串列埠 首先我們使用配帶的mini usb資料線連線開發板的usb uart到電腦的usb介面,該介面是開發板的除錯串列埠。連線好該串列埠可以參照4.5章節 安裝ch34...
迅為IMX6ULL開發板C程式呼叫shell
本章節介紹的是在 linux 系統環境下 linux c 呼叫 shell 命令控制gpio輸入輸出步驟。shell 作為linux 作業系統的外殼,為使用者提供使用作業系統的介面。它是命令語言 命令解釋程式及程式語言的統稱,它解釋由使用者輸入的命令並且把它們送到核心。使用shell命令直接操作 s...
imx 6ull開發板(野火 原子)問題解決手冊
持續更新中。硬體 野火imx6ull pro 預售版本 時間修改點 2019.11.03 增加問題1,2,3,4,5 2019.11.04 補充問題6 2019.12.09 補充問題7 2020.01.05 補充問題8 2020.03.26 補充問題9 2020.04.12 補充問題10 2020....