项目地址:https://github.com/abishekvashok/cmatrix
安装:
1、运行此命令检查ncurses的版本,如果你没有得到输出,那么你需要安装ncurses。
ldconfig -p | grep ncurses
2、安装依赖
yum install gcc* make ncurses-devel -y
3、下载源码并解压
wget https://github.com/abishekvashok/cmatrix/releases/download/v2.0/cmatrix-v2.0-Butterscotch.tar
tar -xvf cmatrix-v2.0-Butterscotch.tar
4、创建安装目录
mkdir -pv /usr/local/cmatrix-v2.0
5、编译安装
cd cmatrix
autoreconf -i
./configure --prefix=/usr/local/cmatrix-v2.0
make
make install
6、配置环境变量
cat >> /etc/profile << 'EOF'
export Cmatrix_HOME=/usr/local/cmatrix_2.0
export PATH=${Cmatrix_HOME}/bin:${PATH}
EOF
source /etc/profile
报错解决:
1、 -bash: autoreconf: 未找到命令
解决:yum -y install autoconf
2、Can't exec "aclocal": 没有那个文件或目录 at /usr/share/autoconf/Autom4te/FileUtils.pm line 326
解决:yum -y install libtool
cmatrix常用命令:
cmatrix-a :异步滚动(默认)
cmatrix-b :随机粗体
cmatrix-B :全部粗体
cmatrix-o :使用旧风格滚动
cmatrix-x :X window 模式
cmatrix-V :显示版本信息
cmatrix-u :刷新频率,0-9,也就是滚动的快慢
cmatrix-C :显示的颜色,支持green(默认),red,blue,white,yellow,cyan,
magenta and black
例如:使用红色
cmatrix -b -C red
使用蓝色
cmatrix -b -C blue