터미널 제목에서 종결자와 "/bin/bash"를 변경하시겠습니까?

터미널 제목에서 종결자와 "/bin/bash"를 변경하시겠습니까?

터미네이터와 터미널 제목의 텍스트를 /bin/bash로 변경하고 싶습니다. root@kali어떻게 해야 합니까?

여기에 이미지 설명을 입력하세요.

답변1

구성 파일을 생성하려면 다음을 실행하세요.

terminator -l init;

파일 편집 config:

nano ~/.config/terminator/config

창/터미널에 대한 새 제목 추가: e, g:

[global_config]
[keybindings]
[profiles]
  [[default]]
    cursor_color = "#aaaaaa"
[layouts]
  [[default]]
    [[[window0]]]
      type = Window
      parent = ""
      title = "window title here"
    [[[child1]]]
      type = Terminal
      parent = window0
      profile = default
      title = "terminal title here"
      command = ""
[plugins]

대안: Ctrl + Alt + w창 제목 설정 및 Ctrl + Alt + x터미널 제목 설정용.

답변2

.bash_profile에서 이것을 실행하면 트릭이 수행됩니다.

echo -n "^[]2;root@kali^G"

"^["는 이스케이프 문자입니다.

관련 정보