Through cloud computing, anything can be accessed through the internet. If someone doesn't have a good GPU to play games, he can play those games online. He does not need a PC because it can be run on a mobile device. Not only that, if I am building an application and my PC does not have the power to compile it, then cloud computing will be the solution. Even if someone needs to train a large amount of data for machine learning, cloud computing can provide all the resources you want and train the data for you. Also, in many cases, running some applications on the local machine might be dangerous, or if I want to test the thing in a different environment, I can do that using cloud computing. Not to mention, most people use cloud computing to host a website or application.
**ls**
→ to list all the files and folders in a directory.
**cd**
→ to move from one directory to another.
help
→ to know what any command does.
man
→ to get a manual of any command. It might not work for many commands.
mkdir
→ to create a new directory.
touch
→ to create a new file.
**nano**
→ to open any file on the nano text editor.
cat
→ to read a file.
rm
→ to remove a file.
rmdir
→ to remove a directory.
whoami
→ to know the name of the current user.
ping
→ to test the latency.
pwd
→ to know the name of the current directory.
chmod
→ to give extra permission to user/group/admin.
**mv**
→ to rename a file or move a file from one directory to another.
**whatis**
→ to know the description of a command in a single line.
**wget**
→ to download a file from online.