1. The concept of process and threadSource: Baidu Encyclopedia: A process is an operation of a program in a computer on a certain data set. It is the basic unit for resource allocation and scheduling in the system and the foundation of the operating system structure. In contemporary thread-oriented computer architectures, processes are containers for threads. A program is a description of instructions, data and their organizational form, and a process is the entity of a program. It is an operation of a program in a computer on a certain data set. It is the basic unit for resource allocation and scheduling of the system and the foundation of the operating system structure. A program is a description of instructions, data and their organizational form, and a process is the entity of a program. A thread is the smallest unit that an operating system can schedule operations on. It is contained within the process and is the actual operating unit of the process. A thread refers to a single sequential control flow in a process. Multiple threads can run concurrently in a process, and each thread executes different tasks in parallel. 2. What is process management?What exactly is a process? A process is a program or command being executed. Each process is a running entity, has its own address space, and occupies certain system resources. So what is a program? Let's put it another way: A program is a collection of executable codes written by humans in a computer language that can achieve certain functions. A process is a program that is currently being executed. When a program is executed, the permissions and attributes of the executor, as well as the program code, are loaded into memory. The operating system assigns an ID number to the process, which we call PID (Process ID). 3. The role of process managementDetermine the health status of the server: The main job of the operation and maintenance engineer is to ensure the safe and stable operation of the server. The ideal situation is that when a problem occurs on the server, human intervention can solve the problem before it causes the server to crash or stop service. The main task of process management is to determine whether the server is currently running healthily and whether human intervention is required. If the server's CPU usage and memory usage are too high, human intervention is required to solve the problem. View all processes in the system: We need to view all running processes in the system. Through these processes, we can determine which services are running in the system and whether there are any illegal services running. Killing a process: This is the least commonly used method of process management. When I need to stop a service, I will stop it by properly shutting down the command (for example, 4. Several states of Linux process 5. The relationship between processes and threads(1) Relationship between threads and processesFor example, the computer is running 200 processes at the same time: Concept of thread and process: Each process contains at least one thread, and these threads are sharing the resource space of the process. When the thread changes, it will only cause the CPU execution process to change, and will not change the resources owned by the process. Similarly, a program contains at least one process. The smallest unit for executing operations in a process, and also the basic unit for executing processor scheduling: Each process has its own address space and resources such as memory, I/O, and CPU. Threads in the same process share the address space of the process. Then, can they use the address space of other processes? Obviously, this is not allowed. Due to the independence of processes, when a process crashes, it will not affect other processes in protected mode. The basic unit of resource allocation, the basic unit of operation scheduling, and the unit of concurrent execution in the system. Comparison of the two scheduling in the same process, thread switching will not cause process switching. (2) SummaryLet's briefly summarize: Process: refers to an application running in the system. Once a program is running, it becomes a process. A process is the smallest unit of resource allocation. Thread: The basic unit for allocating processor time resources by the system, or a unit execution flow that executes independently within a process. A thread is the smallest unit of program execution. This is the end of this article about the detailed explanation of process management in Linux system. For more relevant Linux process management content, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Experience sharing by a front-end supervisor with 7 years of practical experience
Recently, the project uses kubernetes (hereinafte...
Ubuntu install jdk: [link] Install Eclipse on Ubu...
Table of contents Debounce Throttle Summarize Deb...
Preface This article will focus on the use of Typ...
01. Infinity Font Download 02. Banda Font Download...
Install the latest stable version of MySQL on Lin...
Description: Set a timer to replace the content of...
Table of contents MySql8.0 View transaction isola...
First, your container must be running You can vie...
Jellyka BeesAntique Handwriting [ank]* Jellyka Cut...
>1 Start the database In the cmd command windo...
dig - DNS lookup utility When a domain name acces...
Table of contents Preface 1. unknown vs any 2. Th...
JS running trilogy js running code is divided int...
I will be learning MySQL next semester. I didn...