zoukankan      html  css  js  c++  java
  • Win10 Bash更改默认用户

    Win10已经支持Ubuntu的Bash了。

    在cmd中输入bash就可以进入bash界面。但此时是普通用户登录的。

    如果希望更改默认的登录用户,可以在cmd中更改。

    具体的命令是:

    lxrun /setdefaultuser root
    Found UNIX user: root
    Default UNIX user set to: root

    lxrun是管理bash on win10的工具。可以install、uninstall或update。

    lxrun的help信息:

    lxrun -h
    Performs administrative operations on the LX subsystem
    
    Usage:
        /install - Installs the subsystem
            Optional arguments:
                /y - Do not prompt user to accept
        /uninstall - Uninstalls the subsystem
            Optional arguments:
                /full - Perform a full uninstall
                /y - Do not prompt user to accept
        /setdefaultuser - Configures the subsystem user that bash will be launched as. If the user does not exist it will be created.
            Optional arguments:
                username - Supply the username
                /y - If username is supplied, do not prompt to create a password
        /update - Updates the subsystem's package index

    比如安装Bash:

    lxrun /install
    -- Beta feature --
    This will install Ubuntu on Windows, distributed by Canonical
    and licensed under its terms available here:
    https://aka.ms/uowterms
    Type "y" to continue: y
    Downloading from the Windows Store... 100%
    Extracting filesystem, this will take a few minutes...
    Please create a default UNIX user account. The username does not need to match your Windows username.
    For more information visit: https://aka.ms/wslusers
    Enter new UNIX username: hengwei
    Enter new UNIX password:
    Retype new UNIX password:
    passwd: password updated successfully
    Installation successful!

    比如删除Bash:

    lxrun /uninstall
    This will uninstall Ubuntu on Windows.
    This will remove the Ubuntu environment as well as any modifications and new applications with the exception of:
    
    C:UsershengweiAppDataLocallxsshome
    C:UsershengweiAppDataLocallxss
    oot
    
    Type "y" to continue: y
    Uninstalling...

    比如更新Bash:

    lxrun /update
    Checking for updates...
    Ign http://archive.ubuntu.com trusty InRelease
    Get:1 http://security.ubuntu.com trusty-security InRelease [65.9 kB]
    Get:2 http://archive.ubuntu.com trusty-updates InRelease [65.9 kB]
    Get:3 http://security.ubuntu.com trusty-security/main amd64 Packages [606 kB]
    Hit http://archive.ubuntu.com trusty-backports InRelease
    ......
  • 相关阅读:
    hdu 1290 献给杭电五十周年校庆的礼物 (DP)
    hdu 3123 GCC (数学)
    hdu 1207 汉诺塔II (DP)
    hdu 1267 下沙的沙子有几粒? (DP)
    hdu 1249 三角形 (DP)
    hdu 2132 An easy problem (递推)
    hdu 2139 Calculate the formula (递推)
    hdu 1284 钱币兑换问题 (DP)
    hdu 4151 The Special Number (DP)
    hdu 1143 Tri Tiling (DP)
  • 原文地址:https://www.cnblogs.com/hengwei/p/6702732.html
Copyright © 2011-2022 走看看