Skip to content

Commit

Permalink
feat: Add LinuxNotes.md (closes #638)
Browse files Browse the repository at this point in the history
  • Loading branch information
RalphHightower committed Jan 30, 2023
1 parent 3795938 commit d287451
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions LinuxNotes.md
@@ -0,0 +1,21 @@
# Linux Notes

## Directories

| Directory | Description | Separate File System |
|----|----|----|
| / | (root filesystem) The root filesystem is the top-level directory of the filesystem. It must contain all of the files required to boot the Linux system before other filesystems are mounted. It must include all of the required executables and libraries required to boot the remaining filesystems. After the system is booted, all other filesystems are mounted on standard, well-defined mount points as subdirectories of the root filesystem. | N |
| /bin | The /bin directory contains user executable files. | N |
| /boot | Contains the static bootloader and kernel executable and configuration files required to boot a Linux computer. | N |
| /dev | This directory contains the device files for every hardware device attached to the system. These are not device drivers, rather they are files that represent each device on the computer and facilitate access to those devices. | N |
| /etc | Contains the local system configuration files for the host computer. | N |
| /home | Home directory storage for user files. Each user has a subdirectory in /home. | Y |
| /lib | Contains shared library files that are required to boot the system. | N |
| /media | A place to mount external removable media devices such as USB thumb drives that may be connected to the host. | N |
| /mnt | A temporary mountpoint for regular filesystems (as in not removable media) that can be used while the administrator is repairing or working on a filesystem. | N |
| /opt | Optional files such as vendor supplied application programs should be located here. | N |
| /root | This is not the root (/) filesystem. It is the home directory for the root user. | N |
| /sbin | System binary files. These are executables used for system administration. | N |
| /tmp | Temporary directory. Used by the operating system and many programs to store temporary files. Users may also store files here temporarily. Note that files stored here may be deleted at any time without prior notice. | ? |
| /usr | These are shareable, read-only files, including executable binaries and libraries, man files, and other types of documentation. | Y |
| /var | Variable data files are stored here. This can include things like log files, MySQL, and other database files, web server data files, email inboxes, and much more. | Y |

0 comments on commit d287451

Please sign in to comment.