Linux Profile 설정하기
in Programming on DevOps
linux user가 사용하는 환경변수 및 단축키 등을 profile을 수정하여 적용할 수 있다.
profile 수정
vim ~/.profile
vim ~/.bashrc
수정 파일은 linux 종류에 따라 다르다. profile 혹은 bash profile을 vim으로 편집한다. (centOS는 bashrc)
profile 적용
source ~/.profile
source ~/.bashrc
수정 후 source 명령어를 적용해줘야 profile이 완벽하게 적용된다.