Linux file system explained

Search for a command to run...

No comments yet. Be the first to comment.
YAML Ain't a Markup Language. This is the full form of YAML. Why YAML ? YAML is a serialization language. Means that it is used to transfer the data from one end to other like from the backend to the frontend and it is also used to store data in k...

Creating Modules As our program grows we should split our code across multiple files. We refer to each file as a module. A module should contain related data, functions, and objects. def calc_tax(): pass def calc_shipping(): pass Importi...

Step 1: Install it sudo npm i -g npkill Or you can use it without installing with npx npx npkill Step 2: Go the directory where you want to scan for node_modules folder npkill # if you have installed it npx npkill # if you have not install...

Classes All the functions in a class should have at least one parameter and by default, we call it self. self is a reference to the current object # CREATEING CLASS class Point: def draw(self): print("draw") # CREATING OBJECT FROM THE...

This is not like pop notifications. This is more like a customized alert notification. Click here to visit the official GitHub page of this project. How to use react-toastify Step 1: Install it npm i react-toastify Step 2: Import it in app.js ...

This is the top-level directory and it contains all the other directories.
it contains
binaries or executables that are essential to the entire operating system.
The code for commands such as gzip, curl, wget, ls, etc that we use via shell is inside this directory.
It contains system binaries that should only be executed by the root user like mount or deluser(delete user).
The binaries inside the bin/ and the sbin/ folder share some common libraries that are stored inside the lib/ folder.
This contains the data related to the user like this has its own bin/ folder that contains the executables that are available only for the current user.
The user/ folder also has a local/ folder that also has a bin/ folder to store the binaries that are compiled by the user.
This folder has text-based config files to edit the software settings of the software that are installed on the system.
This folder contains a folder on the name of each user that is registered on the system.
The user can modify the files that are inside his folder and not any other folder.
The folder home/ is also denoted by
~
This folder contains the files that are necessary for the system to boot.
This folder represents the hardware. This folder contains the files that represent hardware.
This folder contains the variable files that will change as the operating system is in use.
This folder is to store temp files.
This folder does not exist on the disk and is created on the fly as the OS is booted up. This helps to keep track of the running processes.