현재 사용하고 있는 shell 확인 방법과 사용하는 shell을 변경하는 방법
페이지 정보
본문
현재 사용하고 있는 shell 확인 방법과 사용하는 shell을 변경하는 방법에 대해서 알려주세요!
- 이전글Re: IaaS 구축 가이드 with Openstack 로그인 질문 21.10.12
- 다음글Q. ss 명령어 21.10.08
댓글목록
jekim1님의 댓글
jekim1 작성일
◇ 현재 사용하고 있는 shell 확인 방법
[root@localhost ~]# echo $SHELL
/bin/bash
◇ 현재 설치되어 있는 쉘 확인하기 (=사용 가능한 쉘 리스트 알아보기)
[root@localhost ~]# cat /etc/shells
/bin/sh
/bin/bash
/usr/bin/sh
/usr/bin/bash
/bin/tcsh
/bin/csh
◇ shell을 변경하는 방법
[root@localhost ~]# chsh -s /bin/csh root
Changing shell for root.
Shell changed.
[root@localhost ~]# grep root /etc/passwd
root:x:0:0:root:/root:/bin/csh
바뀐 쉘은 다시 로그인 해야 적용됩니다.