Alterando o nome do terminal em centos

3

Eu sou muito novo neste terminal centos e aws. Gostaria de perguntar como alterar o nome do terminal e substituir o nome padrão por ec2user @ ip. Por favor me ajude.

    
por user617081 14.07.2016 / 09:32

1 resposta

2

Estamos falando sobre o prompt do terminal? Se assim for, você está olhando para a variável PS1 . A partir do bash, isso pode ser alterado emitindo, por exemplo, export PS1=\u@\h\$ (que provavelmente é semelhante ao que você já tem). Mude a peça depois de = para o que você quiser.

Dependendo do que você deseja como seu prompt, você precisa de variáveis diferentes na exportação. Aqui está uma lista dos disponíveis:

 \d   The date, in "Weekday Month Date" format (e.g., "Tue May 26"). 
 \h   The hostname, up to the first . (e.g. deckard) 
 \H   The hostname. (e.g. deckard.SS64.com)
 \j   The number of jobs currently managed by the shell. 
 \l   The basename of the shell's terminal device name. 
 \s   The name of the shell, the basename of $0 (the portion following the final slash). 
 \t   The time, in 24-hour HH:MM:SS format. 
 \T   The time, in 12-hour HH:MM:SS format. 
 \@   The time, in 12-hour am/pm format. 
 \u   The username of the current user. 
 \v   The version of Bash (e.g., 2.00) 
 \V   The release of Bash, version + patchlevel (e.g., 2.00.0) 
 \w   The current working directory. 
 \W   The basename of $PWD. 
 \!   The history number of this command. 
 \#   The command number of this command. 
 \$   If you are not root, inserts a "$"; if you are root, you get a "#"  (root uid = 0) 
 \nnn   The character whose ASCII code is the octal value nnn. 
 \n   A newline. 
 \r   A carriage return. 
 \e   An escape character (typically a color code). 
 \a   A bell character.
 \   A backslash. 
 \[   Begin a sequence of non-printing characters. (like color escape sequences). This
      allows bash to calculate word wrapping correctly.
 \]   End a sequence of non-printing characters.

Experimente vários valores no PS1 e, depois de encontrar o conjunto de que gosta, você pode colocar o comando em ~/.bashrc para tornar a alteração permanente.

    
por 14.07.2016 / 09:45