越来越觉得Linux好玩了,以后遇到好玩的就分享在这里咯…嘿嘿嘿
1、Linux及远程登陆画面设置
首先终端输入:cat /etc/issue
你会看见默认的设置,比如:
\S
Kernel \r on an \m
这个就是你的默认开机提示,如何改呢?
加入如下:
\d:本地时间
\l:显示第几个终端
\m:硬件的等级(i386/i486…)
\n:显示主机网络
\t:显示本地终端时间的
\S:操作系统的名称
\v:操作系统的版本
额当然还有很多,这是一些,给大家展示写好玩的。
加入
_ooOoo_
o8888888o
88" . "88
(| -_- |)
O\ = /O
____/`---'\____
.' \\| |// `.
/ \\||| : |||// \
/ _||||| -:- |||||- \
| | \\\ - /// | |
| \_| ''\---/'' | |
\ .-\__ `-` ___/-. /
___`. .' /--.--\ `. . __
."" '< `.___\_<|>_/___.' >'"".
| | : `- \`.;`\ _ /`;.`/ - ` : | |
\ \ `-. \_ __\ /__ _/ .-` / /
======`-.____`-.___\_____/___.-`____.-'======
`=---='
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
佛祖保佑 永不死机
心外无法 法外无心
或者你也可以晚上搜索加入进去。。。
哈哈哈好玩吧!!!
如果是远程的服务器,将以上内容加入到
文件**/etc/motd** 中去,记得一定得是root权限哦!!!
2、sl (Steam Locomotive)蒸汽机
(In Debian like OS)
apt-get install sl
(In Red Hat like OS)
yum -y install sl
终端敲上sl
,不是ls
哦。蒸汽小火车就会从右至做左飞驰而过。
3、奶牛说(cowsay)
这个比较容易安装了:
centos:yum -y install cowsay
ubuntu等其他:sudo apt-get update;sudo apt-get install cowsay
使用很简单
cowsay hello world
[root@centos code_test]$ cowsay hello world
_____________
< hello world >
-------------
\ ^__^
\ (oo)\_______
(__)\ )\/\
||----w |
|| ||
使用其他小动物显示:
[root@centos code_test]$ cowsay -f hellokitty helloworld
____________
< helloworld >
------------
\
\
/\_)o<
| \
| O . O|
\_____/
查看所有小动物:
for i in $(cowsay -l); do cowsay -f $i "$i"; done
4、黑客帝国特效(cmatrix)
参见我的另一篇博客,相信很多centos系统的小伙伴都没搞成功,使用我的方法百分百有效!
另外想学习这个源码的的小伙伴也不可错过哦!
链接:https://blog.csdn.net/weixin_43083491/article/details/111289938