# 2020-09-26 #「Linux」- 在作業系統安裝後……

2583542425發表於2020-09-26

CentOS 7.x

# 每次安裝完 CentOS 之後,這幾個命令總要執行一下
yum install -y epel-release 
yum install -y bash-completion tmux yum-cron yum-utils
yum install -y sysstat procps-ng psmisc

# 取消「You have mail in /var/spool/mail/root」提示
echo 'unset MAILCHECK'  >> .bashrc

# 調整PS1變數
cat >> ~/.bashrc  <<EOF
export PS1="\e[01;31m\u@\h \w\e[00m""\e[34;1m\e[0m""\n""# "
EOF

# 重新登入一下
exec su - root

Debian-based Linux distributions

# 新增自定義設定
cat >> ~/.bashrc <<EOF

# 調整PS1變數
export PS1="\e[01;31m\u@\h \w\e[00m""\e[34;1m\e[0m""\n""# "

# 常用命令別名
alias ll='ls -l -a --color'
EOF

# 重新登入一下
exec su - root

相關文章