ssh连接上去后,发现终端颜色不对
对比阿里云上的alias输出
vi .bashrc
增加
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'
alias grep='grep --color=auto'
alias l='ls -CF'
alias la='ls -A'
alias ll='ls -alF'
alias ls='ls --color=auto'
securecrt配置
securecrt 的 terminal 选择 xterm,并勾选 ANSI color
时区配置
三种方法:
参考:
https://www.cnblogs.com/keithtt/p/7339929.html
一、使用 dpkg-reconfigure 修改
dpkg-reconfigure tzdata 选择 Asia 和 Shanghai
该操作会修改两个文件:
/etc/timezone #该文本文件可直接修改
/etc/localtime #该文件可通过软链接修改
二、手动修改以上两个文件
$ vim /etc/timezone
Asia/Shanghai
$ ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
或者
$ cp -a /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
三、使用 timedatectl 修改
timedatectl set-timezone Asia/Shanghai 标签:Shanghai,etc,color,linode,Asia,alias,ls,ubuntu,securecrt From: https://www.cnblogs.com/cute/p/16853310.html