Directories and their role

2 minutes read

Linux_logo_errorbits.com

As you already know, in Windows just after the install there are a few standard directories like: Windows, Program Files, Documents and Settings/Users. In Linux a similar structure exists but with much more directories. I will present you below the most important ones:

/home = contains user’s personal folders and files

/root = contains the files and folders of root user

/dev = special files for system hardware devices

/etc = system configuration files for operating system and applications

/tmp = here are stored the temporary files

/opt = additional installed software which is not part of the operating system – 3rd party software

/boot = contains a minimum number of files needed by the operating system to boot – a part of bootloader, bootmanager and the kernel

/proc = contains a pseudo file system which does not exists on the harddisk, all the resources under /proc are information that the kernel presents to the user as files, this way the user can access information about hardware, processes, settings and so on. Some of the files can be modified and the effect is replicated directly into the Kernel

/var = contains variable data/data that changes very often

/var/mail = contains the mailboxes if a webserver is installed

/var/log = log files created by the system or other applications

/bin = files that can be executed (binary files) used to troubleshot or debug the operating system.

/sbin = binary files that are used for system administration (can be used by root user)

/lib = libraries of data used by the kernel and Linux OS (Operating System), needed to boot and to run commands from /bin and /sbin

/mnt = used to temporary mount other file systems

/usr = the place where user’s applications are installed. This folder also contains a file structure.

/usr/bin = commands available for the user

/usr/lib = libraries available for the user

/usr/local = used to install available software only on the local machine

/usr/share = architecture independent data that is not modifying

Facebook Twitter LinkedIn Telegram Whatsapp Pocket

Related Posts:

Here is a list that contains one of the most used Linux commands, and a short explanation for them: ls – list – lists files and directories, can be used with a lot of options like: -a, -R, -l, -g, -r; pwd – print working directory – shows the path of the curre...
Metacharacters We often want to refer to a group of files or directories that have a common characteristic. To do this, there are some small constructs which helps the user to filter the needed files. For example if in a folder we have a lot of jpg, mp3 and do...
A good network security book is one that provides the reader with the necessary information to keep their computer, and personal data secure. It takes the reader through many security problems, including malicious software, cyber attacks, and digital threats. ...
vim Text Editor vim is a very powerful and versatile modal text editor, it is used by novice, advanced and very experienced users also, in their day to day work or tasks. I might look difficult to understand the way this text editor works, but trust me, it’s n...
The Linux operating system has the highest rate of popularity for PCs. It is an open-source code that allows anybody to create their unique operating system. There are many benefits of using the Linux system, including that it is free and stable. Many corporat...
Git makes working on a project flexible by allowing teams to work in parallel and concurrently. When a team’s work is done, they can bring their work on to the main public branch either by rebasing it or merging it.