Qual é a diferença entre “su” com e sem hífen?

72

Sou bastante novo no terminal Linux e não sei ao certo qual é a diferença entre su com um hífen e su sem hífen, por exemplo: su - username vs. su username .

Eu procurei na documentação mas lá, isso não foi mencionado. Alguém poderia me ajudar?

    
por user574183 26.07.2012 / 18:39

2 respostas

70

A diferença entre "-" e "sem hífen" é que o último mantém seu ambiente existente (variáveis, etc); o primeiro cria um novo ambiente (com as configurações do usuário atual, não do seu).

https://wiki.archlinux.org/index.php/Su

The hyphen has two effects:

1) switches from the current directory to the home directory of the new user (e.g., to /root in the case of the root user) by logging in as that user

2) changes the environmental variables to those of the new user as dictated by their ~/.bashrc. That is, if the first argument to su is a hyphen, the current directory and environment will be changed to what would be expected if the new user had actually logged on to a new session (rather than just taking over an existing session).

    
por 26.07.2012 / 18:43
2

su - inicia um shell de login para root. Para as diferenças de um shell normal, consulte este site por exemplo .

    
por 26.07.2012 / 18:43

Tags