Update 'README.md'

This commit is contained in:
2023-01-05 15:19:34 +00:00
parent 6f74f421df
commit dd3b12cb66

View File

@@ -11,7 +11,31 @@
### Structure ### Structure
- `/` (root) ```bash
$ ls -l
/bin
/boot
/dev
/etc
/home
/lib
/media
/mnt
/opt
/run
/sbin
/srv
/tmp
/proc
/sys
/var
/lost+found
/root
/usr
```
- `/` - This is the beginning of the Linux filesystem hierarchy. All the file paths originate from the root.
- `/bin` - Stores essential command binaries which can be used by both system administrator and the user such as cat,ls,mv,ps,mount etc. - `/bin` - Stores essential command binaries which can be used by both system administrator and the user such as cat,ls,mv,ps,mount etc.
- `/boot` - This directory contains all the files necessary for the system to boot up - `/boot` - This directory contains all the files necessary for the system to boot up
- `/dev` - Contains device files for all the physical and virtual devices mounted in the system. - `/dev` - Contains device files for all the physical and virtual devices mounted in the system.
@@ -36,6 +60,12 @@
### Attributes ### Attributes
#### Owneship attributes
- **user**
- **group**
- **other**
## Shell ## Shell
### Types ### Types