nanopi基础配置

x shell 新建会话 改名 nanopi(自己随便取 看个人喜好

在左侧找到 serial 点击 使用你接在电脑上的那个串口 波特率用 115200

配置静态ip:

命令是 :vi /etc/network/interfaces

allow-hotplug eth0
iface eth0 inet static   #static表示使用固定ip,dhcp表述使用动态ip
address 192.168.1.90   #设置ip地址 大家把ip发群里不要一样
netmask 255.255.255.0  #设置子网掩码
gateway 192.168.1.1    #设置网关
dns-nameservers 8.8.8.8  #8.8.8.8就是一台位于美国的DNS服务器地址 是谷歌的公共DNS服务器地址

最后离开的时候记得关机

猜你喜欢

转载自blog.csdn.net/qq_38313246/article/details/81412165