zoukankan      html  css  js  c++  java
  • Ubuntu ip及apt源设置

    • 配置静态ip及DNS

    sodu vim /etc/network/interfaces

    auto ens32

    iface ens32 inet static

    address 10.0.0.111

    netmask 255.255.255.0

    gateway 10.0.0.2

    /etc/init.d/networking restart

    vi /etc/resolv.conf

    nameserver 10.0.0.2

    nameserver 8.8.8.8

    • 允许root登录

    vim /etc/ssh/sshd_config

    PermitRootLogin yes

    /etc/init.d/ssh restat

    • 配置apt源

    mv /etc/apt/sources.list /etc/apt/sources.list.bak

    vi /etc/apt/sources.list

    deb http://mirrors.163.com/ubuntu/ xenial main restricted universe multiverse

    deb http://mirrors.163.com/ubuntu/ xenial-security main restricted universe multiverse

    deb http://mirrors.163.com/ubuntu/ xenial-updates main restricted universe multiverse

    deb http://mirrors.163.com/ubuntu/ xenial-proposed main restricted universe multiverse

    deb http://mirrors.163.com/ubuntu/ xenial-backports main restricted universe multiverse

    deb-src http://mirrors.163.com/ubuntu/ xenial main restricted universe multiverse

    deb-src http://mirrors.163.com/ubuntu/ xenial-security main restricted universe multiverse

    deb-src http://mirrors.163.com/ubuntu/ xenial-updates main restricted universe multiverse

    deb-src http://mirrors.163.com/ubuntu/ xenial-proposed main restricted universe multiverse

    deb-src http://mirrors.163.com/ubuntu/ xenial-backports main restricted universe multiverse

    apt-get update

  • 相关阅读:
    Phone List(字典树)
    Dating with girls(1)(二分+map+set)
    Color the ball(树状数组+线段树+二分)
    python模块导入总结
    Python爬虫之定时抢购淘宝商品
    Celery多队列配置
    python垃圾回收机制
    python变量、对象和引用你真的明白了吗
    使用 supervisor 管理 Celery 服务
    Supervisor的作用与配置
  • 原文地址:https://www.cnblogs.com/jacob-tian/p/7100221.html
Copyright © 2011-2022 走看看