• Ubuntu 18.04 配置


    Ubuntu 18.04 配置IP-静态(UB与其他linux os不同)

    sudo netplan generate
    
    sudo vim /etc/netplan/50-cloud-init.yaml
    
    需修改以下参数:
    
    network:
    
      version: 2
    
      renderer: networkd
    
      ethernets:
    
            eno1:
    
                    dhcp4: no
    
                    dhcp6: no
    
                    addresses: [10.240.176.209/24]
    
                    gateway4: 10.240.176.129
    
                    nameservers:
    
                            addresses: [10.248.2.5,10.239.27.36]
    
     sudo netplan apply 开机自动配置ip(与其他OS不同)

    1、开机自动配置IP

    $ sudo vim /etc/network/interfaces

    auto eth39
    
    iface eth39 inet manual
    
    auto br0
    
    iface br0 inet static
    
    address 10.240.176.207
    
    netmask 255.255.255.128
    
    gateway 10.240.176.129
    
    dns-nameserver 10.248.2.5
    
    dns-nameserver 10.239.27.36
    
    dns-nameserver 172.17.6.9
    
    bridge_ports eth39

    2、重启网络服务生效

    service systemd-networkd restart

     设置镜像源 问题:下载包的时候可能会有以下error log,需重新设置镜像源

    Err 1http://cn.archive.ubuntu.com trusty Release.gpg
    
    W: Failed to fetch 1http://cn.archive.ubuntu.com/ubuntu/dists/trusty/InRelease

    解决方法:

    1、修改源 vim /etc/apt/source.list
    
    2、设置DNS,要不然不能通过域名访问地址
    
    $ sudo vim /etc/resolv.conf
    
    需修改以下参数:
    
    "nameserver 10.248.2.5
    
    nameserver 10.239.27.36
    
    nameserver 172.17.6.9"

     下载DPDK & DTS前需要设置代理

    方法一 终端运行exporthttp_proxy="http://用户名:密码@代理IP:代理端口"也可
    
    方法二 sudo vim /etc/apt/apt.conf    需将
    
    “ Acquire::http::proxy "http://proxy-prc.intel.com:911/";
    
    Acquire::https::proxy "https://proxy-prc.intel.com:911/";
    
    Acquire::ftp::proxy "ftp://proxy-prc.intel.com:911/; ”
    
    添加到以下路径文件中: :/C:Userswuchan4xDocumentsOS issueubuntu-infoapt.conf
  • 相关阅读:
    SAP ABAP dialog 获取屏幕字段值 F4搜索帮助
    IDEA快捷键大全
    其他21$nextTick
    其他18nvm安装
    vue基础16组件间传递
    其他22scoped、>>>、/deep/、::vdeep
    其他17解决onmouseover多次触发问题
    其他19实现vuex与表单数据动态改变
    其他20持久化存储
    VS 提示找不到某个类
  • 原文地址:https://www.cnblogs.com/eilinge/p/9238953.html
Copyright © 2020-2023  润新知