Em “Windows Subsystem for Linux”, como posso mudar de usuário root para usuário simples?

1

no linux como posso mudar de usuário root para usuário simples?

Quando inicializo no bash no Windows 10, vejo agora:

"root @ STANSTOY: / home / wojowhisky #"

como faço para inicializar:

"wojowhiskey @ STANSTOY: ~ $"?

    
por wojowhiskey 26.12.2016 / 01:32

2 respostas

1

Para mudar para um usuário no Linux:

su - wojowhiskey

Para tornar seu usuário um sudoer:

sudo visudo

Em seguida, adicione ou edite a seguinte linha:

wojowhiskey ALL=(ALL) ALL
    
por 26.12.2016 / 01:42
0

No prompt de comando do Windows: (não digite em bash.exe )

lxrun /setdefaultuser wojowhiskey

lxrun é muito poderoso, confira:

C:\> lxrun /?
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
    
por 05.01.2017 / 05:32