zoukankan      html  css  js  c++  java
  • D01 Win10 WSL Ubuntu16 安装和配置

    TOC


    1. 启用wsl并安装ubuntu 16.04

    1. 安装ubuntu 16.04

    1. win10 设置 -- 更新和安全 -- 开发者选项 -- 开发人员模式
    2. 控制面板 -- 程序 -- 启用或者关闭windows功能 -- 适用于Linux的Windows子系统
    3. Microsoft Store -- Ubuntu 16.04 , 不要安装18.04 安装出现问题,安装ubuntu ,设置用户名密码
      或者通过这个链接唤醒进入store,安装ubuntu16 https://www.microsoft.com/zh-cn/p/ubuntu-1604-lts/9pjn388hp8c9?activetab=pivot%3Aoverviewtab
    4. cmd -- bash -- 进入ubuntu

    1.2 ubuntu16 开启sshd服务SecureCRT 访问

    开启sshd服务,SecureCRT 或者 Xshell 直接访问

    sudo su -
    apt-get install openssh-server
    service ssh start
    
    
    vim /etc/ssh/sshd_config
    
    #PermitRootLogin prohibit-password
    PermitRootLogin yes
    
    #PasswordAuthentication no
    PasswordAuthentication yes
    
    service ssh stop && service ssh start

    2. Ubuntu apt换源

    sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
    sudo vim /etc/apt/sources.list

    #deb包
    deb http://mirrors.aliyun.com/ubuntu/ xenial main restricted universe multiverse  
    deb http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted universe multiverse  
    deb http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted universe multiverse  
    deb http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse  
    ##测试版源  
    deb http://mirrors.aliyun.com/ubuntu/ xenial-proposed main restricted universe multiverse  
    # 源码  
    deb-src http://mirrors.aliyun.com/ubuntu/ xenial main restricted universe multiverse  
    deb-src http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted universe multiverse  
    deb-src http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted universe multiverse  
    deb-src http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse  
    ##测试版源  
    deb-src http://mirrors.aliyun.com/ubuntu/ xenial-proposed main restricted universe multiverse  

    sudo apt-get update

  • 相关阅读:
    字符串匹配的KMP算法(转)
    二分查找谜题
    快排的优化--说说尾递归
    ZR提高失恋测4
    CF1209
    ZR普转提2
    ZR提高失恋测3
    ZR提高失恋测2(9.7)
    ZR9.8普转提
    CF1214
  • 原文地址:https://www.cnblogs.com/jesper/p/10870564.html
Copyright © 2011-2022 走看看