【linux】給linux開發(fā)板配置重啟后依然有效的靜態(tài)IP的方法。
親測(cè)有效!
使用vi打開/etc/profile文件。
在/etc/profile中增加如下代碼行:
保存修改后,重啟開發(fā)板,OK!
要改/etc/rc.local 也可以修改這個(gè)
#!/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 30000 > /proc/sys/vm/min_free_kbytes #ifconfig eth0 172.16.12.62 netmask 255.255.255.0 ifconfig eth0 192.168.1.154 netmask 255.255.255.0 /opt/StarPoint/start.sh > /dev/null & exit 0
*博客內(nèi)容為網(wǎng)友個(gè)人發(fā)布,僅代表博主個(gè)人觀點(diǎn),如有侵權(quán)請(qǐng)聯(lián)系工作人員刪除。