利用putty进入嵌入式linux系统,然后输入:
vi /etc/network/interfaces 编辑这个文件
#iface eth0 inet dhcp 找到修改这个,前面加#
iface eth0 inet static 改为静态分配ip
address 192.168.60.199(这是自己设置的目标ip)
netmask 255.255.255.0
gateway 192.168.60.254
保持,然后reboot
附vi最基本用法:
在linux界面中输入vi filename,之后输入i进行编辑,按esc结束编辑,再输入:wq保存并退出。