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
......
原文地址:https://www.cnblogs.com/hengwei/p/6702732.html