: 일단 로그인 하면 콘솔창에서 그냥
:
: > 이렇게만 뜨거든요.
:
: 근데 이거 말구요...
: 이렇게 뜨게 하고 싶거든요...
:
: [myname@localhost /] 으로 되도록 변경 시키고 싶거든요.
: 어캐 해야 하죠?
~/.bashrc // 유저만 변경
/etc/profile // 시스템 전체
이 파일을 열어서
변경해주세요..
제 bashrc 는..
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files for examples
# If running interactively, then:
if [ "$PS1" ]; then
# enable color support of ls and also add handy aliases
eval `dircolors`
alias ls='ls --color=auto '
alias ll='ls -l'
alias la='ls -A'
alias l='ls -CF'
alias dir='ls --color=auto --format=vertical'
alias vdir='ls --color=auto --format=long'
# set a fancy prompt
PS1='[u@h w]$ ' // u 는 유저이름, h는 호스트명, w 현재 디렉토리 입니다.
fi
-.-; 아~ 쑥스럽네요..--나는 리눅스가 좋다!