search
HomeCommon ProblemHow does the operating system manage programs and data?

The operating system manages programs and data through the file system. The management function of the file system is achieved by organizing the programs and data it manages into a series of files. A file refers to a collection of several related elements with file names.

How does the operating system manage programs and data?

The operating environment of this tutorial: Windows 7 system, Dell G3 computer.

Modern OS almost all organizes and manages a large number of programs and data stored in the computer through the file system. The management function of the file system is achieved by organizing the programs and data it manages into a series of files. A file refers to a collection of several related elements with file names. Elements are usually records, and a record is a collection of meaningful data items. Data components can be divided into data items, records, and files.

①Data item, data item is the lowest level data organization form. It is divided into basic data items (a character set used to describe a certain attribute of an object, which is the smallest logical data unit that can be clearly understood in data organization, that is, atomic data, also known as data elements or fields) and combined data items (consisting of several Basic data items)

 ② A record is a collection of related data items, used to describe the attributes of an object in a certain aspect. In order to uniquely identify a record, it needs to be included in each data item of a record. Determine one or several data items and call their set a key. A key is a data item that can uniquely identify a record.

 ③ File, a file is a collection of related elements with a file name, divided into structured files (also called record files: files are composed of a group of similar records. For example, the files of all candidates applying for a certain school Application information records) and unstructured files (also known as streaming files: regarded as a stream of characters. Such as a binary file or character file). Structured files are composed of several related records, while unstructured files are regarded as a character stream. A file is the largest unit of data in a file system. The file should have its own attributes, including file type (such as source file, target file, executable file, etc.), file length (the current length of the file, and possibly the maximum allowed length), and the physical location of the file (indicating where the file is The pointer on the device and where it is on the device), the creation time of the file (the last modification time of the file). A file can correspond to several records, and a record can correspond to several data items.

The objects managed by the file system include: files (as direct objects of file management), directories (in order to facilitate users’ access and retrieval of files, directories are configured in the file system. Each directory entry must Contains the file name and the physical address of the file. The organization and management of the directory is the key to facilitate and improve the speed of file access), disk (files and directories must occupy storage space, effective management of this part of space, not only can Improve the utilization of external memory and improve the access speed to files).

Attributes of the file

①Name: The file has a unique name and is saved in an easily readable form.

②Identifier: A unique label that identifies a file in the file system, usually a number. It is an internal name that is unreadable by humans.

③Type: Used by file systems that support different types.

④Location: Pointer to the device and files on the device.

⑤Size: The current size of the file (expressed in bytes, words, or blocks), which may also include the maximum value allowed by the file.

⑥Protection: Access control information to protect files.

⑦Time, date and user identification: Information related to file creation, last modification and last access, used to protect, secure and track the use of files.

Basic operations of files

 ① Create a file. When creating a new file, the system must first allocate the necessary external memory space for the new file, and in the directory of the file system, To create a directory entry, the directory entry should record the file name of the new file and its external storage address and other attributes.

 ② Delete a file. When a file is no longer needed, it can be deleted from the file system. When deleting, the system should first find the directory entry of the file to be deleted from the directory and make it empty. item and then reclaim the storage space occupied by the file.

 ③ Read a file. When reading a file, the file name and the memory target address to be read must be given in the corresponding system call. At this time, the system needs to search the directory, find the specified directory entry, and obtain the location of the read file in the external memory. Within the directory entry, there is also a pointer for reading/writing files.

 ④ Write a file. When writing a file, the file name and its source address in memory must be given in the corresponding system call. At this time, the system needs to search the directory, find the specified directory entry, and then use the write pointer in the directory to perform write operations.

 ⑤ Truncate the file. If the contents of a file are outdated and need to be completely updated, one method is to delete the file and create a new file again. However, if the file name and attributes have not changed, you can truncate the file. method, which sets the original file length to 0 and discards the content of the original file.

 ⑥ Set the read/write position of the file, which is used to set the position of the file read/write pointer, so that every time you read/write the file, you do not need to start from the beginning but from the set position. Sequential access can be changed to random access.

Opening and closing files

Source: Most of the file operations provided by the current OS generally follow the following two steps: First, search the file directory to find the specified file. attributes and their location on the external memory; then, perform corresponding operations on the file, such as reading/writing files, etc. When the user requires multiple read/write or other operations on a file, each time it must start from the retrieval directory In order to avoid retrieving directories multiple times, the open file system call is introduced in most OSs. When the user requests an operation on a file system for the first time, the open system call is first used to open the file.

Open means that the system copies the attributes of the named file (including the physical location of the file on the external storage) from the external storage to an entry in the memory open file table, and adds the entry number (index number) ) is returned to the user. In the future, when the user requests to operate the file again, he or she can use the index number returned by the system to make an operation request to the system, and the system can directly use the index number to search in the open file table, thus This avoids retrieval of the file. If the user no longer needs to perform operations on the file, the close system call can be used to close the file. The OS will delete the file from the entry in the open file table.

Logical structure type of file

无结构文件(流式文件)

Unstructured file is the simplest form of file organization. Unstructured files organize data into records in order and accumulate and save them. It is a collection of ordered related information items, measured in bytes. Since unstructured files have no structure, records can only be accessed through exhaustive searches, so this file format is not suitable for most applications. However, the unstructured file management of character streams is simple and users can operate it conveniently. Therefore, those files that do not operate many basic information units are more suitable for the unstructured method of using character streams, such as source programs, executable files, library functions, etc.

有结构文件(记录式文件)

For more computer-related knowledge, please visit the FAQ column!

The above is the detailed content of How does the operating system manage programs and data?. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
世界上的三大操作系统是什么世界上的三大操作系统是什么Aug 22, 2022 pm 04:24 PM

三大操作系统:1、windows,是微软公司以图形用户界面为基础研发的操作系统,主要运用于计算机、智能手机等设备。2、macOS,是一套由苹果开发的运行于Macintosh系列电脑上的操作系统,是基于XNU混合内核的图形化操作系统。3、linux,是一种免费使用和自由传播的类UNIX操作系统,是一个基于POSIX的多用户、多任务、支持多线程和多CPU的操作系统。

vivo手机是什么系统vivo手机是什么系统Jul 04, 2022 am 11:10 AM

vivo手机是“Funtouch OS”和“OriginOS”系统;2020年11月18日之前,vivo手机搭载的都是“Funtouch OS”系统,2020年11月18日“OriginOS”操作系统发布之后,vivo手机搭载的就是“OriginOS”操作系统了,首款搭载该系统的是“vivo X60”系列手机。

windows操作系统的特点包括什么windows操作系统的特点包括什么Sep 28, 2020 pm 12:02 PM

windows操作系统的特点包括:1、图形界面;直观高效的面向对象的图形用户界面,易学易用。2、多任务;允许用户同时运行多个应用程序,或在一个程序中同时做几件事情。3、即插即用。4、出色的多媒体功能。5、对内存的自动化管理。

什么是闭环控制系统什么是闭环控制系统Jul 04, 2022 pm 04:18 PM

闭环控制系统是控制系统的一种类型,能够把系统输出量的一部分或全部通过一定方法和装置反送回系统的输出端,再将反馈信息与原输入信息进行比较,将比较的结果施加于系统进行控制,避免系统偏离预定目标。

什么是操作系统?它的作用是什么?什么是操作系统?它的作用是什么?Dec 07, 2020 pm 03:04 PM

操作系统是管理计算机硬件与软件资源的计算机程序,是控制和管理计算机软硬件资源,以尽量合理有效的方法组织多个用户共享多种资源的程序集合。操作系统的作用:1、管理系统中的各种资源;2、为用户提供良好的界面。从计算机用户的角度来说,操作系统体现为其提供的各项服务;从程序员的角度来说,其主要是指用户登录的界面或者接口;从设计人员的角度来说,就是指各式各样模块和单元之间的联系。

电脑开机快慢和什么有关电脑开机快慢和什么有关Aug 12, 2022 am 10:47 AM

影响电脑开机快慢的因素:1、操作系统;如果操作系统太过庞大,开机要加载的文件、服务、软件过多就会让开机速度变慢。2、硬件;硬件对于开机的影响主要是CPU、内存容量和硬盘速度,主板中预存的引导程序会引导CPU通过主板从硬盘中调用启动系统的数据,然后在内存空间内运行,因而CPU、内存大小和硬盘直接影响电脑开机的速度。3、加载项;加载项越多,硬盘要加载的东西就越多,开机速度就越慢。

系统软件中最重要的软件是什么?系统软件中最重要的软件是什么?Dec 10, 2020 pm 04:56 PM

系统软件中最重要的软件是“操作系统”。在计算机中,操作系统是其最基本也是最为重要的基础性系统软件;操作系统需要处理如管理与配置内存、决定系统资源供需的优先次序、控制输入设备与输出设备、操作网络与管理文件系统等基本事务。

windows boot manager 无法进入系统怎么办windows boot manager 无法进入系统怎么办Nov 13, 2022 pm 02:06 PM

windows boot manager无法进入系统的解决办法:1、开机按DEL键;2、进BIOS设置光盘或U盘引导电脑进WinPE;3、使用Diskgenius重建主引导记录,并重启电脑;4、重装操作系统。

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools