美文网首页玩转大数据
【linux编程】win10下linux系统的安装和装机配置

【linux编程】win10下linux系统的安装和装机配置

作者: leadingsci | 来源:发表于2017-12-03 14:39 被阅读0次
    ubuntu

    1. 系统安装

    参考链接:
    百度经验——win10下linux系统的安装(开启)和使用
    https://jingyan.baidu.com/article/39810a23957df3b636fda6cb.html


    2. 进入系统

    1,打开cmd

    ctrl+r 输入cmd Enter进入cmd窗口


    2,进入linux系统

    输入bash进入系统
    user@host:/mnt/c/Users/Dell$


    3.配置

    1. 配置root用户名和密码

    root 用户名默认为root
    密码:为空,需设置密码
    输入sudo passwd root

    验证密码是否正确
    输入su root
    输入密码
    成功切换为root,则正确


    2. tree目录软件

    安装sudo apt-get tree

    查看当前目录——所有层级
    tree

    指定层级——指定当前第一层
    tree -L 1


    3. 文件路径

    进入linux系统后,显示当前目录:

    user@host:/mnt/c/Users/Dell$ pwd
    /mnt/c/Users/Dell
    

    显然这个目录不是我们常规保存文件的目录。

    如果直接进入某个目录下。

    则对对应win文件夹,按shift,鼠标右键,在此处打开命令窗口则直接进入对应目录

    F:\bioinfo>


    4. 查看linux系统的文件结构

    输入
    cd /
    tree -L 1

    显示结果

    ├── acct
    ├── bin
    ├── boot
    ├── cache
    ├── data
    ├── dev
    ├── etc
    ├── home
    ├── lib
    ├── lib64
    ├── lost+found
    ├── media
    ├── mnt
    ├── opt
    ├── proc
    ├── root
    ├── run
    ├── sbin
    ├── srv
    ├── sys
    ├── tmp
    ├── usr
    └── var
    

    进入home目录,可以找对用户目录


    5. linux下进入win目录

    输入命令,可以看到对应的win盘符

    root@DELL5577:/mnt# cd /mnt/ && ls
    c  d  e  f  g  h  i  j  l  ls  m  n
    

    ubuntu系统将win的目录切换为/来分隔的目录
    如果要进入某个目录,则在/mnt/即可访问

    root@DELL5577:/mnt/f/bioinfo# pwd
    /mnt/f/bioinfo
    

    6. 查看系统空间

    自动分配,各位63G

    root@DELL5577:/mnt/f/bioinfo# df -h
    Filesystem      Size  Used Avail Use% Mounted on
    rootfs          119G   57G   63G  48% /
    tmpfs           119G   57G   63G  48% /run
    none            119G   57G   63G  48% /run/lock
    none            119G   57G   63G  48% /run/shm
    none            119G   57G   63G  48% /run/user
    

    7. 查看linux版本

    Ubuntu 14.04.5 LTS稳定版,竟然不是最新的16.04稳定版

    root@DELL5577:/mnt/f/bioinfo# lsb_release -a
    No LSB modules are available.
    Distributor ID: Ubuntu
    Description:    Ubuntu 14.04.5 LTS
    Release:        14.04
    Codename:       trusty
    

    查看内核版本

    root@DELL5577:/mnt/f/bioinfo# uname -a
    Linux DELL5577 3.4.0+ #1 PREEMPT Thu Aug 1 17:06:05 CST 2013 x86_64 x86_64 x86_64 GNU/Linux
    

    8. win10内置linux远程访问设置

    1. 禁止查看当前linux系统的ip,
      使用本机ip地址,xshell也无法连接
    root@DELL5577:/mnt/f/bioinfo# ifconfig
    Warning: cannot open /proc/net/dev (No such file or directory). Limited output.
    
    1. 设置ssh
    # 1.安装ssh
    apt-get install openssh-server
    # 2.修改配置文件
    cp /etc/ssh/sshd_config /etc/ssh/sshd_config.bak
    vim /etc/ssh/sshd_config
    #=======(修改以下选项内容)=========#
    # Port 23(22端口已被占用)        #
    # (取消注释)ListenAddress 0.0.0.0 #
    # UsePrivilegeSeparation no      #
    # PermitRootLogin yes            #
    # (注释)StrictModes yes         #
    # PasswordAuthentication yes     #
    #================================#
    # 3.启动ssh
    service ssh start
    # 4.如果提示“sshd error: could not load host key”,则用下面的命令重新生成
    rm /etc/ssh/ssh*key
    dpkg-reconfigure openssh-server
    
    
    1. 使用xshell登录
      输入
      主机地址:127.0.0.1
      端口:23
      linux用户名
      linux用户密码

    登录成功


    9. win10内置linux卸载

    linux系统卸载
    输入命令
    lxrun /uninstall /full

    1. 系统安装

    参考链接:
    百度经验——win10下linux系统的安装(开启)和使用
    https://jingyan.baidu.com/article/39810a23957df3b636fda6cb.html


    2. 进入系统

    1,打开cmd

    ctrl+r 输入cmd Enter进入cmd窗口


    2,进入linux系统

    输入bash进入系统
    user@host:/mnt/c/Users/Dell$


    3.配置

    1. 配置root用户名和密码

    root 用户名默认为root
    密码:为空,需设置密码
    输入sudo passwd root

    验证密码是否正确
    输入su root
    输入密码
    成功切换为root,则正确


    2. tree目录软件

    安装sudo apt-get tree

    查看当前目录——所有层级
    tree

    指定层级——指定当前第一层
    tree -L 1


    3. 文件路径

    进入linux系统后,显示当前目录:

    user@host:/mnt/c/Users/Dell$ pwd
    /mnt/c/Users/Dell
    

    显然这个目录不是我们常规保存文件的目录。

    如果直接进入某个目录下。

    则对对应win文件夹,按shift,鼠标右键,在此处打开命令窗口则直接进入对应目录

    F:\bioinfo>


    4. 查看linux系统的文件结构

    输入
    cd /
    tree -L 1

    显示结果

    ├── acct
    ├── bin
    ├── boot
    ├── cache
    ├── data
    ├── dev
    ├── etc
    ├── home
    ├── lib
    ├── lib64
    ├── lost+found
    ├── media
    ├── mnt
    ├── opt
    ├── proc
    ├── root
    ├── run
    ├── sbin
    ├── srv
    ├── sys
    ├── tmp
    ├── usr
    └── var
    

    进入home目录,可以找对用户目录


    5. linux下进入win目录

    输入命令,可以看到对应的win盘符

    root@DELL5577:/mnt# cd /mnt/ && ls
    c  d  e  f  g  h  i  j  l  ls  m  n
    

    ubuntu系统将win的目录切换为/来分隔的目录
    如果要进入某个目录,则在/mnt/即可访问

    root@DELL5577:/mnt/f/bioinfo# pwd
    /mnt/f/bioinfo
    

    6. 查看系统空间

    自动分配,各位63G

    root@DELL5577:/mnt/f/bioinfo# df -h
    Filesystem      Size  Used Avail Use% Mounted on
    rootfs          119G   57G   63G  48% /
    tmpfs           119G   57G   63G  48% /run
    none            119G   57G   63G  48% /run/lock
    none            119G   57G   63G  48% /run/shm
    none            119G   57G   63G  48% /run/user
    

    7. 查看linux版本

    Ubuntu 14.04.5 LTS稳定版,竟然不是最新的16.04稳定版

    root@DELL5577:/mnt/f/bioinfo# lsb_release -a
    No LSB modules are available.
    Distributor ID: Ubuntu
    Description:    Ubuntu 14.04.5 LTS
    Release:        14.04
    Codename:       trusty
    

    查看内核版本

    root@DELL5577:/mnt/f/bioinfo# uname -a
    Linux DELL5577 3.4.0+ #1 PREEMPT Thu Aug 1 17:06:05 CST 2013 x86_64 x86_64 x86_64 GNU/Linux
    

    8. win10内置linux远程访问设置

    1. 禁止查看当前linux系统的ip,
      使用本机ip地址,xshell也无法连接
    root@DELL5577:/mnt/f/bioinfo# ifconfig
    Warning: cannot open /proc/net/dev (No such file or directory). Limited output.
    
    1. 设置ssh
    # 1.安装ssh
    apt-get install openssh-server
    # 2.修改配置文件
    cp /etc/ssh/sshd_config /etc/ssh/sshd_config.bak
    vim /etc/ssh/sshd_config
    #=======(修改以下选项内容)=========#
    # Port 23(22端口已被占用)        #
    # (取消注释)ListenAddress 0.0.0.0 #
    # UsePrivilegeSeparation no      #
    # PermitRootLogin yes            #
    # (注释)StrictModes yes         #
    # PasswordAuthentication yes     #
    #================================#
    # 3.启动ssh
    service ssh start
    # 4.如果提示“sshd error: could not load host key”,则用下面的命令重新生成
    rm /etc/ssh/ssh*key
    dpkg-reconfigure openssh-server
    
    
    1. 使用xshell登录
      输入
      主机地址:127.0.0.1
      端口:23
      linux用户名
      linux用户密码

    登录成功


    9.启动bash计划

    发现cmd窗口关闭后,远程连接的xshell也无法登陆了。也就是win系统关闭了linux。

    解决方法1——临时激活ssh:

    1,在cmd窗口中,输入bash,此时xshell还不能远程连接

    2,激活ssh
    输入
    sudo service ssh start,此时xshell可以远程连接linux了。

    每次开机都要这样输入会比较麻烦,需要让 bash每次开机都运行。

    解决方法2——wsl开机启动

    让bash每次开机都启动

    在linux用户家目录下

    1,切换用户为root,,创建文件
    vim boot.sh
    chmod 777 boot.sh

    编辑

    #!/bin/sh
    service ssh start   # 移动服务
    $SHELL  # 让bash一直运行
    

    2, 创建文件目录

    cd /usr
    mkdir anyesu
    

    3,移动文件

    mv /home/用户家目录/boot.sh /usr/anyesu/
    
    

    在win系统D盘下
    4,创建文件
    D:\linux\wsl.vbs

    输入

    Set ws = CreateObject("Wscript.Shell")
    ws.run "bash /usr/anyesu/boot.sh",vbhide
    

    5,创建计划任务

    在开始菜单输入计划任务

    image.png

    创建基本任务


    image.png

    输入


    image.png

    触发器


    image.png

    操作


    image.png

    输入脚本


    image.png

    完成

    查看设置显示

    image.png

    10. win10内置linux卸载

    linux系统卸载
    输入命令
    lxrun /uninstall /full

    相关文章

      网友评论

        本文标题:【linux编程】win10下linux系统的安装和装机配置

        本文链接:https://www.haomeiwen.com/subject/ruyabxtx.html