your current location:首页 > news>OpenOS operating system directory structure [OC] Open Computers Minecraft Game

OpenOS operating system directory structure [OC] Open Computers Minecraft Game

2024-12-10 17:44:56|Myriagame |source:minecraft skins

OpenOS operating system directory structure

OpenOS source code see github source -OpenComputers or my latest private mirror gitee -mine

The basic part of the introduction of the rookie tutorial on the linux directory is slightly different.as follows:

In the source code

/bin:

Bin is an abbreviation of binaries. This directory stores the most commonly used commands.

But it is built -in operating system. The program written by myself is recommended to put it in/usr/bin

/boot:

The script executed in order when starting.The naming method is the start order_name.You can add a program to it.

/ETC:

ETC is an abbreviation of ETCETERA. This directory is used to store the configuration files and sub -directory required for all system management.

/Home:

The user's main catalog, in Linux, each user has a directory.But in OpenOS, it is probably a single user.Among them, the .shrc file was the startup execution file for shell

/lib:

LIB is the abbreviation of Library (library). This directory has the most basic dynamic connection sharing library in the system. Its role is similar to the DLL file in Windows.Almost all applications need to use these shared libraries.It is recommended to put it in/usr/lib

/usr:

USR is an abbreviation of Unix Shared Resources. This is a very important directory. Many users and files of users are placed in this directory, similar to the Program Files directory under Windows.

It's not the briefing of User, but I think it can be understood like this

In operation

/mnt:

The system provides the directory to allow users to temporarily mount other file systems. We can mount the optical drive on / mNT /, and then enter the directory to view the content of the optical drive.

/TMP:

TMP is the abbreviation of Tempory. This directory is used to store some temporary files.It will be cleaned after each restart.

More

/usr/man:

Manual location

The original author is himself.

Original link: source address-OCLUNE.