新闻  |   论坛  |   博客  |   在线研讨会
【linux】给linux开发板配置重启后依然有效的静态IP的方法。
电子禅石 | 2020-11-04 15:40:20    阅读:1096   发布文章

亲测有效!

  1. 使用vi打开/etc/profile文件。

vi /etc/profile1
  1. 在/etc/profile中增加如下代码行:

ifconfig eth0 192.168.0.200 netmask 255.255.255.0 up1
  1. 保存修改后,重启开发板,OK!

要改/etc/rc.local  也可以修改这个

#!/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


*博客内容为网友个人发布,仅代表博主个人观点,如有侵权请联系工作人员删除。

参与讨论
登录后参与讨论
属于自己的技术积累分享,成为嵌入式系统研发高手。
推荐文章
最近访客