Skip to main content

Funny Linux commands


Hi Folks, 

🙏 Namaste and Welcome to my blog 🙏

Hope this finds you safe and healthy! 


1) root@vinod$ xeyes
(firstly you have to install xeyes packages)

2) . Command: sl (Steam Locomotive)

You might be aware of command ‘ls‘ the list command and use
it frequently to view the contents of a folder but because
of miss-typing sometimes you would result in ‘sl‘,
how about getting a little fun in terminal and not “command not found“.

yum install sl
then run
root@vinod$ sl

3) root@vinod$ yum install fortune
root@vinod$ fortune

You're not my type. For that matter, you're not even my species!!!
Future looks spotty. You will spill soup in late evening.
You worry too much about your job. Stop it. You are not paid enough to worry.
Your love life will be... interesting.

4) Command: factor

Time for some Mathematics, this command output all
the possible factors of a given number.
root@vinod$ factor

5
5: 5

12
12: 2 2 3

1001
1001: 7 11 13

5442134
5442134: 2 2721067

5) Command: Cowsay

An ASCII cow in terminal that will say what ever you want.
Install Cowsay
root@vinod$ yum install cowsay (for Red Hat based OS)
root@vinod$ cowsay I Love nix


How about pipelineing ‘fortune command‘, described above with cowsay?
root@vinod$ fortune | cowsay

xcowsay is a graphical program which response similar to cowsay
but in a graphical manner, hence it is X of cowsay.


yum install xcowsay
root@vinod$ xcowsay I Love nix

cowthink is another command just run “cowthink Linux is sooo funny”
and see the difference in output of cowsay and cowthink.

yum install cowthink
root@vinod$ cowthink ....Linux is sooo funny


6) Command: toilet

what? Are u kidding, huhh no! Definitely not,
but for sure this command name itself is too funny,
and I don’t know from where this command gets it’s name.
Install toilet

root@vinod$ yum install toilet
root@vinod$ toilet tecm


7) Command: cmatrix

You might have seen Hollywood movie ‘matrix‘ and
would be fascinated with power, Neo was provided with,
to see anything and everything in matrix or you might
think of an animation that looks alike Hacker‘s desktop.
Install cmatrix
root@vinod$ yum install cmatrix
root@vinod$ cmatrix

8)Command: aafire

How about fire in your terminal. Just type “aafire”
in the terminal, without quotes and see the magic.
Press any key to interrupt the program.
Install aafire

root@vinod$ yum install libaa-bin
root@vinod$ aafire

9) Command: url

Won’t it be an awesome feeling for you if you can update you
twitter status from command line in front of your friend and
they seems impressed. OK just replace username, password and your
status message with your’s username, password and “your status message“
root@vinod$ url -u YourUsername:YourPassword -d status="Your status message" http://twitter.com/statuses/update.xml


I hope you all enjoy it



Cheers

VIK








Comments

Popular posts from this blog

Kubernetes common issues with scenarios and solutions 📘 Scenario #1: Zombie Pods Causing NodeDrain to Hang Category: Cluster Management Environment: K8s v1.23, On-prem bare metal, Systemd cgroups  Scenario Summary: Node drain stuck indefinitely due to unresponsive terminating pod. What Happened: A pod with a custom finalizer never completed termination, blocking kubectl drain. Even after the pod was marked for deletion, the API server kept waiting because the finalizer wasn’t removed. Diagnosis Steps:  • Checked kubectl get pods --all-namespaces -o wide to find lingering pods.  • Found pod stuck in Terminating state for over 20 minutes.  • Used kubectl describe pod to identify the presence of a custom finalizer.  • Investigated controller logs managing the finalizer – the controller had crashed. Root Cause: Finalizer logic was never executed because its controller was down, leaving the pod undeletable. Fix/Workaround: kubectl patch pod -p '{"metadata":{"fina...
  How to Configure AWS service API Gateway Hi Folks,  🙏  Namaste  and Welcome to my blog  🙏 Hope this finds you safe and healthy!  Today I will explain " How to Configure AWS service API Gateway " . Below are the steps which I will take during this session.  1) Briefing about API Gateway  2) Costing  3) Create API Gateway  4) Configuration  5) Code location on web server  1) Briefing about API Gateway Amazon API Gateway is an AWS service for creating, publishing, maintaining, monitoring, and securing REST, HTTP, and WebSocket APIs at any scale. API developers can create APIs that access AWS or other web services, as well as data stored in the AWS Cloud. As an API Gateway API developer, you can create APIs for use in your own client applications. Or you can make your APIs available to third-party app developers. 2)  Costing A) Free Tier The Amazon API Gateway free tier includes one million API calls received for R...
How to prepare for AWS SAA Certification Hi Folks, 🙏 Namaste and Welcome to my blog 🙏 Hope this finds you safe and healthy!  Here I will explain how to prepare for AWS SAA Certification. If you have started preparation for AWS Solution Architect Associate Exam, please go through all below mentioned link. When you will finish them you have completed the 70 % of course. 1) https://aws.amazon.com/certification/certification-prep/ 2) https://aws.amazon.com/whitepapers/ 3) https://aws.amazon.com/training/course-descriptions/architect/ 4) https://aws.amazon.com/training/self-paced-labs/ If you want real environment for practice then follow below URL:- https://qwiklabs.com/ 1) Create account 2) Start taking lab 3) Practice all free lab. -> AWS Certified Solutions Architect certification exam. -The exam is 55 multiple choice questions with a time limit of 80 minutes -And a minimum passing score of 65%. -Multiple choice and multiple answer questions -Available in English, Japan...