minicom和开发板ip配置

环境:AT91sam9x25,开发板操作系统:debian,vmware workstation 中安装redhat.

第一步:minicom配置

1、pc与开发板串口必须采用交叉线相连(pc与AT91sam9x25如此)。2、serial port2对应ttyS1,serial port3对应ttyS2,以此类推。3、pc的com1是主机后的九针串口。

第二步:配置开发板的ip。

1、修改 /etc/network/interfaces
auto eth0                       
iface eth0 inet static      #静态  
address 192.168.0.220        #接口地址
netmask 255.255.255.0   #掩码
gateway 192.168.0.1   #网关

2、 添加默认网关。
#route add default gw 192.168.0.1

3、修改/etc/resolv.conf,配置dns.

nameserver 192.168.0.1

4、重启网络服务,/etc/init.d/networking restart或ifdown eth0 和ifup eth0或reboot重启系统。




你可能感兴趣的:(minicom,debian开发板ip配置)