


19 interesting Linux commands, the last one? ...I wouldn't dare try it even to death!
1. sl command
You will see a train going from the right side of the screen to the left...
Install
$ sudo apt-get install sl
Run
The$ sl
command has several options -a l F e,
-a An accident seems to happen. You'll feel pity for people who cry for help. -l shows little one. -F It flies. -e Allow interrupt by Ctrl+C.

can be given When someone plays a prank and he types ls, it will be very effective if you don’t know it
$alias ls=sl
2. fortune command
Output a sentence, including jokes, famous quotes, etc. (and Tang poetry and Song lyrics sudo apt-get install fortune-zh)
安装
$sudo apt-get install fortune
运行
$fortune

3. cowsay 命令
用ASCII字符打印牛,羊等动物,还有个cowthink,这个是奶牛想,那个是奶牛说,哈哈,差不多
安装
$sudo apt-get install cowsay
运行
$cowsay "I am not a cow, hahaha"

$cowsay -l 查看其它动物的名字,然后 -f 跟上动物名,如
$cowsay -f tux "坑爹啊"

还可以让cowsay说出fortune的内容,就像这样:
$fortune | cowsay

4. cmatrix 命令
这个很酷!《黑客帝国》那种矩阵风格的动画效果
安装
$ sudo apt-get install cmatrix
运行
$cmatrix

5. figlet 、toilet命令
艺术字生成器,由ASCII字符组成,把文本显示成标题栏。此外还有banner这个命令
安装
$sudo apt-get install figlet $sudo apt-get install toilet
运行
$figlet fuck you ! $toilet i love you

toilet 还可以添加颜色,里面的选项请自己 man 一下
$ toilet -f mono12 -F gay a girl

6. oneko 命令
桌面上出现一直喵星人,跟着你的鼠标跑,你不动了它就睡觉。哈哈,这个挺不错
安装
$sudo apt-get install oneko
运行
$oneko
要关掉这家伙,按ctrl+c 结束

7. xeyes 命令
在屏幕上出现一双眼睛,盯着你的鼠标指针
安装运行同上

8. yes 命令
输出无穷无尽的字符,按ctrl+c结束,如
$yes 我很NB
9. cal 9 1752
cal是打印日历,不过这个是很奇葩的一个月,

10. shred
覆盖搞乱文件,就是文档粉碎,哈哈,要把你私藏的大片种子和电影销毁,不被恢复出来,就靠它了
11. factor
分解因数,这个……小学生可以用一下

12. 挨个敲下面这一堆,aptitude 没有的可以安装上
aptitude moo aptitude -v moo aptitude -vv moo aptitude -vvv moo aptitude -vvvv moo aptitude -vvvvv moo aptitude -vvvvvv moo aptitude -vvvvvvv moo
13、高大上仪表盘blessed-contrib——假装自己指点江山,纵横捭阖
sudo apt-get install npm sudo apt install nodejs-legacy git clone https://github.com/yaronn/blessed-contrib.git cd blessed-contrib npm install node ./examples/dashboard.js
高大上黑客仪表盘
14、高大上仪表盘hollywood——假装自己日理万机,宵衣旰食
Dustin Kirkland 利用一个长途飞行的时间,编写了这个炫酷、有趣但也没什么实际作用的软件。
在其它Linux发行版中,可以通过以下命令安装并运行。
sudo apt-add-repository ppa:hollywood/ppa sudo apt-get install hollywood sudo apt-get install byobu hollywood
15、追逐鼠标的小猫oneko
在桌面的命令行界面输入
sudo apt-get install oneko oneko
然后输入oneko,即可看到效果。
16、ASCII艺术框:box命令
sudo apt-get install boxes echo "Tongji Univerisity" | boxes echo "Tongji Univerisity" | boxes -d dog fortune | boxes -d cat | lolcat
17、燃起字符串大火aafire在命令行界面输入
sudo apt-get install libaa-bin aafire
然后输入 aafire,即可看到效果
aafire字符串大火
18、图片转字符串
这条命令在树莓派上运行会出问题,建议在云主机或虚拟机上运行。
sudo apt-get install aview imagemagick wget http://labfile.oss.aliyuncs.com/courses/1/Linus.png asciiview Linus.png
19、从删库到跑路 sudo rm -rf /*
sudo rm -rf /* sudo:获取root管理员权限 rm:remove,即删除 -rf:r表示递归删除,即删除所有的子目录,f表示不需要再进行确认 /:根目录 *:所有文件
友情提示:千万不要轻易尝试这个命令,特别是在运行有网站服务器、数据库的Linux主机上 。
这些好玩的命令可以通过查 man 手册,然后在加上自己想出来的创意,改编成更多有趣的东西,哈哈,给别人捣乱也是挺好玩的……
The above is the detailed content of 19 interesting Linux commands, the last one? ...I wouldn't dare try it even to death!. For more information, please follow other related articles on the PHP Chinese website!

Linux maintenance mode is entered by adding init=/bin/bash or single parameters at startup. 1. Enter maintenance mode: Edit the GRUB menu and add startup parameters. 2. Remount the file system to read and write mode: mount-oremount,rw/. 3. Repair the file system: Use the fsck command, such as fsck/dev/sda1. 4. Back up the data and operate with caution to avoid data loss.

This article discusses how to improve Hadoop data processing efficiency on Debian systems. Optimization strategies cover hardware upgrades, operating system parameter adjustments, Hadoop configuration modifications, and the use of efficient algorithms and tools. 1. Hardware resource strengthening ensures that all nodes have consistent hardware configurations, especially paying attention to CPU, memory and network equipment performance. Choosing high-performance hardware components is essential to improve overall processing speed. 2. Operating system tunes file descriptors and network connections: Modify the /etc/security/limits.conf file to increase the upper limit of file descriptors and network connections allowed to be opened at the same time by the system. JVM parameter adjustment: Adjust in hadoop-env.sh file

This guide will guide you to learn how to use Syslog in Debian systems. Syslog is a key service in Linux systems for logging system and application log messages. It helps administrators monitor and analyze system activity to quickly identify and resolve problems. 1. Basic knowledge of Syslog The core functions of Syslog include: centrally collecting and managing log messages; supporting multiple log output formats and target locations (such as files or networks); providing real-time log viewing and filtering functions. 2. Install and configure Syslog (using Rsyslog) The Debian system uses Rsyslog by default. You can install it with the following command: sudoaptupdatesud

When choosing a Hadoop version suitable for Debian system, the following key factors need to be considered: 1. Stability and long-term support: For users who pursue stability and security, it is recommended to choose a Debian stable version, such as Debian11 (Bullseye). This version has been fully tested and has a support cycle of up to five years, which can ensure the stable operation of the system. 2. Package update speed: If you need to use the latest Hadoop features and features, you can consider Debian's unstable version (Sid). However, it should be noted that unstable versions may have compatibility issues and stability risks. 3. Community support and resources: Debian has huge community support, which can provide rich documentation and

This article describes how to use TigerVNC to share files on Debian systems. You need to install the TigerVNC server first and then configure it. 1. Install the TigerVNC server and open the terminal. Update the software package list: sudoaptupdate to install TigerVNC server: sudoaptinstalltigervnc-standalone-servertigervnc-common 2. Configure TigerVNC server to set VNC server password: vncpasswd Start VNC server: vncserver:1-localhostno

Configuring a Debian mail server's firewall is an important step in ensuring server security. The following are several commonly used firewall configuration methods, including the use of iptables and firewalld. Use iptables to configure firewall to install iptables (if not already installed): sudoapt-getupdatesudoapt-getinstalliptablesView current iptables rules: sudoiptables-L configuration

The steps to install an SSL certificate on the Debian mail server are as follows: 1. Install the OpenSSL toolkit First, make sure that the OpenSSL toolkit is already installed on your system. If not installed, you can use the following command to install: sudoapt-getupdatesudoapt-getinstallopenssl2. Generate private key and certificate request Next, use OpenSSL to generate a 2048-bit RSA private key and a certificate request (CSR): openss

Configuring a virtual host for mail servers on a Debian system usually involves installing and configuring mail server software (such as Postfix, Exim, etc.) rather than Apache HTTPServer, because Apache is mainly used for web server functions. The following are the basic steps for configuring a mail server virtual host: Install Postfix Mail Server Update System Package: sudoaptupdatesudoaptupgrade Install Postfix: sudoapt


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

SublimeText3 Mac version
God-level code editing software (SublimeText3)

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function