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

  • 相关阅读:
    质量数据统计报表
    Gitlab CR
    搭建openstf平台的那些事
    wrk 使用记录及踩过的坑
    无题,表达一下心情
    theano中对图像进行convolution 运算
    4d tensor
    theano中的concolutional_mlp.py学习
    theano中的logisticregression代码学习
    利用Anaconda安装python后,如何安装opencv-python
  • 原文地址:https://www.cnblogs.com/jacob-tian/p/7100221.html
Copyright © 2011-2022 走看看