Linux-1 1
Linux-1 1
system (like Ubuntu, CentOS, Amazon Linux, etc.) in the cloud using Amazon Web
Services (AWS).
Instead of setting up and maintaining a physical server, you can launch and manage
a Linux server on AWS in just a few clicks. AWS provides the infrastructure and
resources, while you can focus on your server and applications.
To break it down:
AWS gives you a remote server in the cloud.
You can choose a Linux OS to run on that server.
You have full control over the server to install, configure, and run software as
needed.
It's flexible, scalable, and you only pay for what you use.
In short, it's a way to run a Linux-based server without having to own or maintain
physical hardware, and it's all hosted on AWS's powerful infrastructure.
1. sudo su
What it does:
sudo gives you superuser (root) privileges.
su stands for "substitute user" and switches the user context to the root user.
Correct example:
sudo su — This switches you to the root user (superuser) in the terminal.
Example usage:
sudo su
After running this, you'll have root access (you can modify anything on the
system).
5. ll (Long List)
What it does: Displays detailed information (permissions, owner, size, etc.) about
files and directories.
Example:
ll
This shows a detailed list of files, including permissions, owner, group, size, and
modification date.