My Learning Blog

Basic Linux and aws - 9/15/2024

Linux can help you understand digital world better after you understading it

What is shell,teminal and bash?

Shell: A shell interprets the commands given by the user and passes them to the kernel for execution. There are different types of shells, such as Bash, Zsh, and Fish.

Terminal: A terminal (or terminal emulator) is a program that provides access to the shell. It allows you to type commands and see the output. The terminal itself doesn’t execute commands; it just displays the shell’s interface.

So if your terminal is just a program that lets you issue text-based commands and renders the output of those commands…What is the program that runs those commands???

That’s a shell.Shells are often referred to as “REPL”s. REPL stands for:

Read Eval (evaluate) Print Loop This is a fancy way of saying that shells are programs that:

Read the commands you type Evaluate those commands, usually by running other programs on your computer Print the output of those commands Give you a new prompt to type another command and repeat

Bash: Bash stands for Bourne Again Shell, and it’s one of the most widely used shells, especially on Linux and macOS systems. It’s a specific type of shell with its own syntax and built-in commands. In short:

In the client-server model analogy, the terminal acts as the client that sends requests (commands), and the shell acts as the server that processes those requests and returns responses (output).

Relationship between kernel,OS and shell

The kernel is the core part of the operating system.It controls all lower-level interactions with the computer’s hardware.

The OS is the complete system,including all tools, interfaces, and the kernel.The OS, through the kernel, performs all the necessary tasks:

The shell is the interface that users interact with to send commands to the kernel.

Difference Between a Process and a Program:

More about process

OS decides which process gets the processor(cpu), when and for how much time and allocates the processor to the precess.

When a user or another program requests to execute a program, the kernel creates a new process.This can occur when a user launches an application, when a parent process forks a child process, during system boot, or in response to external or scheduled events.

System Boot (Initialization Processes) When the system boots up, the kernel creates a special process called the init process (or systemd on modern Linux systems). This is the first process created by the kernel and is responsible for launching all other system processes, such as background services and daemons.

Virtualization,hypervisor,and VMI

Virtualization is the broader concept, In essence, it separates the hardware layer from the software running on it, enabling the running of multiple virtual machines (VMs) on a single physical machine.

Hypervisors are the critical technology that makes the concept a reality.

A Virtual Machine Image (VMI) is a file or collection of files that contain a pre-configured operating system, application software, and settings necessary to create a fully operational virtual machine.

A Virtual Machine Image simplifies the process of deploying and managing virtualized environments by providing a complete, ready-to-use snapshot of a system, which can be replicated and deployed across various platforms.

Amazon Machine Image (AMI): In AWS, an AMI is a type of virtual machine image that contains the OS and any other software needed to launch instances on Amazon EC2.

Root user, regular user, service user

The root account is already present by default. You can enable it or use sudo, and it is the superuser with UID 0.

Regular users: created with useradd -m username and granted sudo privileges if needed, which means regular user with sudo privileges can execute administrative commands as the root user by prefixing the command with sudo:

# If you want to give the new user administrative privileges, add them to the sudo group:
sudo usermod -aG sudo username

# to create a regular user: -m option creates a home directory for the user in /home/username.
sudo adduser username

A service user is typically a system account created for running a service or daemon. These accounts usually don’t have login capabilities and have limited permissions.

# -r for system account, -s nologin for no login capability.
sudo useradd -r -s /usr/sbin/nologin myserviceuser

Uers permission are related to reading, writing and executing files.

Redirection in Linux:

Every program has 3 built-in streams:

# Redirect stdin: This command will make the program read from input.txt instead of from the terminal.
$ program < input.txt

# Redirect stdout:This command will make the program's output go into output.txt instead of being displayed in the terminal.
$ program > output.txt

# Append to a file using stdout:This will append the program’s output to the file output.txt without overwriting its contents.
$ program >> output.txt
#Example:cat reads from file.txt (via stdin) and writes the result to output.txt (via stdout).
$ cat < file.txt > output.txt

Environment Variables

PATH is an environment variable,is a colon-separated list of directories that the shell searches through when you type a command.

It allows users to run programs without needing to provide the full path, and it can be customized by adding or modifying directories to make running programs more convenient.

Modifying the PATH

# To temporarily add a directory to your PATH (valid for the current session only):
export PATH=$PATH:/path/to/your/directory
export PATH=/path/to/your/directory:$PATH
# Permanently Modifying PATH: To make changes to PATH permanent, you can modify your shell configuration files (e.g .bashrc),command same as above:
export PATH=$PATH:/path/to/your/directory

Example: If you want to add the directory /home/user/myprograms to your PATH so that you can run programs located there without typing the full path, you would run:

export PATH=$PATH:/home/user/myprograms
# Now, if there's an executable called myapp in /home/user/myprograms, you can simply type:
myapp
# Instead of
/home/user/myprograms/myapp

socket tcp/ip http

A socket is an endpoint for communication between two machines. It is the programming interface that allows processes (programs) to send and receive data over a network.

Types of Sockets:

In a typical client-server architecture, the client and server communicate over a TCP/IP network, When a browser requests a web page via HTTP, it first establishes a TCP connection using sockets. HTTP requests and responses are sent over this TCP connection.

HTTP (HyperText Transfer Protocol) is an application-layer protocol built on top of the TCP/IP stack. It is used for transmitting hypertext (web pages) between clients (browsers) and servers (web servers).

How http Works:

Network in aws

In AWS, a VPC (Virtual Private Cloud) is a logically isolated network within the AWS cloud that you can use to define and control your own network environment.

Why Use a VPC?

Isolate your resources for security. Control inbound and outbound network traffic. Customize networking (IP addressing, routing, etc.). Secure communication between services in AWS.

Route Table vs Security Group

  1. Route Table 🔹 Controls network traffic routing at the subnet level (entire network). 🔹 Defines where traffic should go (e.g., within VPC, to the internet, to another VPC). 🔹 Each subnet must be associated with a route table.

  2. Security Group 🔹 Controls inbound and outbound traffic at the instance level (individual resources). 🔹 Works as a virtual firewall that defines what traffic can reach or leave an EC2 instance. 🔹 Stateful: If inbound traffic is allowed, the response is automatically allowed.

powerful tool

# find a file by name
find some_directory -name hello.txtc
# search files match a pattern
find some_directory -name "*.txt"
# Find all filenames that contain the word "chad"
find some_directory -name "*chad*"

man ls
# You'll notice that the manual is an interactive session. Page through the manual with the spacebar, and quit with q.

# type '/xx' to start searching

# press 'n' to jump to the next result

# press 'N' to go back if you went too far