ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • LINUX profile 절대경로 표시하는 방법
    System of Infra/Linux System 2020. 12. 15. 20:58
    반응형

    리눅스로고이미지

     

    LINUX profile 절대 경로 표시하는 방법

    [root@localhost /]#vi /etc/bashrc
    ...(생략)
    shopt -s histappend
    	history -a
    	# Turn on checkwinsize
    	shopt -s checkwinsize
    	[ "$PS1" = "\\s-\\v\\\$ " ] && PS1="[\u@\h \W]\\$ "
    	[ "$PS1" = "\\s-\\v\\\$ " ] && PS1='[\u@\h][$PWD]\\$ '(변경)
    	# You might want to have e.g. tty in prompt (e.g. more virtual machines)
    	# and console windows
    	# If you want to do so, just add e.g.
    	# if [ "$PS1" ]; then
    	#   PS1="[\u@\h:\l \W]\\$ "
    	# fi
    	# to your custom modification shell script in /etc/profile.d/ directory

    -> root계정뿐만아니라 유저 계정 모두 profile을 동일하게 적용시키고 싶다면 /etc/bashrc의 경로에서  user, hostname, path의 순서로 설정 후 위와 같이 변경을 해줍니다.

    [root@localhost /]#vi /home/centos/.bash_profile
    # .bash_profile
    
    # Get the aliases and functions
    if [ -f ~/.bashrc ]; then
            . ~/.bashrc
    fi
    export PS1='[\u@\h][\$PWD]\\$'(추가)
    
    # User specific environment and startup programs

    -> root계정이 아닌 user계정마다 profile을 변경하여 설정하기 위해서는 현재 centos라는 유저 계정의 /home/centos/.bash_profile에 위와 같이 추가를 해줍니다.

    [root@localhost][/etc/udev/rules.d]$
    [centos@localhost][/root]$

    -> 설정 후 재로그인을 하게 되면 root계정일 경우와 일반계정의 경우 적용된 profile이 적용된것을 확인할 수 있습니다.

     

    PS. 포스팅의 내용은 제 기준으로 작성한 것이기 때문에 참고해서 보시면 감사하겠습니다.

    포스팅 과정의 오류 및 오타 그리고 궁금한 점에 대해서는 댓글 남겨주세요.

    반응형

    댓글

Designed by Tistory.