zoukankan      html  css  js  c++  java
  • 树莓派4B-初始化网络-静态ip

    连接有线网络启动

    系统启动以后停到用户名密码画面,等待3分钟所有,或者连续数据多次用户名密码

    用户名密码都是ubuntu

    输入正确后,会提示修改用户密码,先输入旧密码,在连续输入2次新密码,进入系统

    修改静态ip

    ip addr 查看网络地址,可以看到网路地址已经存在:

    但是每次启动有可能会变,改为固定ip

    使用netplan修改

    vi /etc/netplan/50-cloud-init.yaml

    编辑内容如下:

    # This file is generated from information provided by the datasource.  Changes
    # to it will not persist across an instance reboot.  To disable cloud-init's
    # network configuration capabilities, write a file
    # /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg with the following:
    # network: {config: disabled}
    network:
        ethernets:
            eth0:
                dhcp4: false
                optional: true
                addresses: [192.168.0.17/24]
                gateway4: 192.168.0.1
                nameservers:
                        addresses: [192.168.0.1]
        version: 2

    高亮部分为修改或增加部分,注意要符合yaml规范,如果写对了会自动缩进。

    保存退出【esc】 【:wq】

    应用网络

    netplan apply
  • 相关阅读:
    noi.openjudge——2971 抓住那头牛
    P1265 公路修建 洛谷
    P2330 [SCOI2005] 繁忙的都市 洛谷
    P1331 海战 洛谷
    P1464 Function 洛谷
    基于Manhattan最小生成树的莫队算法
    zoj3659
    poj1182
    hdu1325
    hdu3635
  • 原文地址:https://www.cnblogs.com/liubin0509/p/14725529.html
Copyright © 2011-2022 走看看