GNU/Linux - 系统启动流程及rcS脚本介绍

Linux系统启动流程

在 Linux 系统启动过程中,会按特定顺序执行多个脚本和初始化例程,以使系统进入可用状态。虽然具体顺序可能因 Linux 发行版和版本而异,但以下是典型执行顺序的概括性概述:

1. BIOS/UEFI: 系统开机后,BIOS(或 UEFI 固件)会执行开机自检(POST),然后加载引导加载程序。

对于嵌入式 Linux,它们可能是芯片中的特殊引导 ROM。

2. 引导加载程序: 引导加载器,如 GRUB(Grand Unified Bootloader,统一引导加载器)或 LILO(Linux Loader,Linux 加载器),将 Linux 内核加载到内存中并开始执行,同时按需要初始化重要的硬件组件。

嵌入式系统常用的引导加载器包括 U-Boot、Das U-Boot 和 Barebox。

3. Linux 内核初始化: 一旦引导加载器将内核映像加载到内存中,Linux 内核就会开始控制。Linux 内核会初始化基本硬件组件或设备、设置内存管理、挂载初始 ramdisk(initramfs)、挂载根文件系统、配置其他基本系统参数,并开始初始化根文件系统的过程。

4. 初始化进程: 内核初始化完成后,会启动初始进程。传统上,这是 System V init(SysVinit),但现在许多现代发行版都使用 systemd 或 Upstart 作为 init 系统。

在嵌入式系统中,内核初始化完成后,init 进程(通常为 /sbin/init)就会启动。init 进程负责初始化用户空间环境和启动系统服务。对于嵌入式系统,init 进程可以是一个简单的 shell 脚本,也可以是一个最小的 init 系统(如 BusyBox)。

5. 用户空间初始化和初始脚本:  

init 进程运行后,会执行启动脚本或其他初始化任务来设置用户空间环境。

init 进程会读取配置文件并执行启动脚本,这些脚本负责初始化各种系统服务和配置。这些脚本通常位于 /etc/init.d 等目录中,或定义为 /etc/systemd/system 中的 systemd 单元文件。

这可能包括加载额外的文件系统、配置网络接口、设置系统日志以及初始化其他系统服务。

6.  运行级别或目标单元: 根据系统的运行级别(在 SysVinit 中)或目标单元(在 systemd 中),会执行不同的启动脚本或单元文件集。运行级别/目标单元定义了不同的系统状态,如单用户模式、多用户模式或图形模式。

7. 应用程序启动:

系统完全初始化后,将启动配置为自动启动的任何用户应用程序或服务。

这些应用程序可能包括针对嵌入式系统功能的定制软件,以及系统监控或管理工具。

8. 服务管理: 系统服务根据其依赖关系和配置启动。这包括联网、文件系统挂载和系统日志等基本系统服务。

9. 用户会话: 如果系统支持图形用户界面,则启动显示管理器(如 GDM、LightDM),并初始化用户会话。

10. 用户交互或登录提示:

最后,系统显示登录提示(文本或图形),允许用户登录并与系统交互。

根据嵌入式系统的设计,它可能会提供一个用户交互界面,如命令行界面或图形用户界面。

用户可以与系统交互,执行任务或监控系统运行。

本序列提供了 Linux 系统启动过程的高级概览。实际细节和具体步骤可能因发行版、init 系统和配置而异。

英文版:

During the startup process on a Linux system, several scripts and initialization routines are executed in a specific sequence to bring the system to a usable state. While the exact sequence may vary depending on the distribution and version of Linux, here's a generalized overview of the typical execution sequence:

1. BIOS/UEFI: When the system is powered on, the BIOS (or UEFI firmware) performs Power-On Self Test (POST) and then loads the bootloader.

For embedded linux, they may be special boot ROM in the chip.

2. Bootloader: The bootloader, such as GRUB (Grand Unified Bootloader) or LILO (Linux Loader), loads the Linux kernel into memory and starts its execution, and initialize required essential hardware components.

Common bootloaders for embedded systems include U-Boot, Das U-Boot, and Barebox.

3. Linux Kernel Initialization: Once the bootloader has loaded the kernel image into memory, the Linux kernel takes control. The Linux kernel initializes essential hardware components or devices, sets up memory management, mounts the initial ramdisk (initramfs), mounts the root filesystem, configures other essential system parameters, and begins the process of initializing the root filesystem.

4. Init Process: Once the kernel has initialized, it starts the init process. Traditionally, this was System V init (SysVinit), but many modern distributions now use systemd or Upstart as the init system.

In embedded system, after the kernel initialization, the init process (typically /sbin/init) is started. The init process is responsible for initializing the user space environment and launching system services. For embedded systems, the init process may be a simple shell script or a minimal init system like BusyBox.

5. User Space Initialization and Init Scripts:  

Once the init process is running, it executes startup scripts or other initialization tasks to set up the user space environment.

The init process reads configuration files and executes startup scripts, which are responsible for initializing various system services and configurations. These scripts are typically located in directories like /etc/init.d or defined as systemd unit files in /etc/systemd/system. 

This may include mounting additional filesystems, configuring network interfaces, setting up system logging, and initializing other system services.

6.  Runlevels or Target Units: Depending on the system's runlevel (in SysVinit) or target unit (in systemd), different sets of startup scripts or unit files are executed. Runlevels/target units define different system states, such as single-user mode, multi-user mode, or graphical mode.

7. Application Launch:

Once the system is fully initialized, any user applications or services configured to start automatically are launched.

These applications may include custom software specific to the embedded system's functionality, as well as system monitoring or management tools.

8. Service Management: System services are started according to their dependencies and configuration. This includes essential system services like networking, filesystem mounting, and system logging.

9. User Sessions: If the system supports graphical user interfaces, the display manager (e.g., GDM, LightDM) is started, and user sessions are initialized.

10. User Interaction or Login Prompt: 

Finally, the system displays a login prompt (either text-based or graphical), allowing users to log in and interact with the system.

Depending on the embedded system's design, it may provide a user interface for interaction, such as a command-line interface or a graphical user interface.

Users can interact with the system to perform tasks or monitor its operation.

This sequence provides a high-level overview of the startup process on a Linux system. The actual details and specific steps may vary based on the distribution, init system, and configuration.

===== 分割线 =====

rcS脚本介绍

在 Linux 中,rcS 脚本文件是启动过程中使用的初始化脚本之一。该脚本通常位于 /etc/init.d 目录中,由系统在启动过程中执行。

一种说法,"rcS "通常指 "启动时运行命令 "脚本。在包括 Linux 在内的类 Unix 操作系统中,"rcS "脚本通常是系统启动过程中最先执行的脚本之一。它设置初始环境并运行各种系统初始化任务。

还一种说法,"rcS "代表 "单用户模式运行命令"。它是 System V(SysV)init 系统的一部分,是启动类 Unix 操作系统的传统方法。

rcS "脚本在系统启动过程中执行,特别是当系统启动到单用户模式时。单用户模式是一种故障诊断模式,只有单个用户(通常是 root 用户)可以访问系统。它通常用于系统恢复或修复系统问题等维护任务。

rcS "脚本负责初始化启动过程早期所需的基本系统服务和配置,这些服务和配置是单用户模式运行所必需的。这包括挂载基本文件系统、设置基本网络、初始化系统时钟、挂载基本文件系统、配置系统环境以及执行其他必要的设置任务,以使系统达到最低功能状态。

它之所以重要,是因为它为启动过程的其他部分奠定了基础,确保系统在其他服务和应用程序启动前处于正常运行状态。rcS 脚本的内容因 Linux 发行版而异,但其主要目的在大多数发行版中都是一致的。

总的来说,"rcS "脚本在准备系统进入单用户模式时起着至关重要的作用,它能确保基本服务和配置就位,以便进行故障排除和维护。

英文版:

In Linux, the rcS script file is one of the initialization scripts used during the boot process. This script is typically found in the /etc/init.d directory, and it's executed by the system during the boot sequence.

For one explanation, "rcS" typically refers to the "run commands at startup" script. In Unix-like operating systems, including Linux, the "rcS" script is often one of the first scripts executed during the system boot process. It sets up the initial environment and runs various system initialization tasks.

And another explanation, "rcS" stands for "run commands for Single-user mode." It's part of the System V (SysV) init system, which is a traditional method for booting Unix-like operating systems.

The "rcS" script is executed during the system startup process, specifically when the system boots into single-user mode. Single-user mode is a troubleshooting mode where only a single user (typically the root user) has access to the system. It's often used for maintenance tasks such as system recovery or repairing system issues.

The "rcS" script is responsible for initializing essential system services and configurations that are required early in the boot process and are needed for single-user mode operation. This includes tasks like mounting essential filesystems, setting up basic networking, initializing the system clock, mounting essential filesystems, configuring the system environment, and performing other necessary setup tasks to bring the system to a minimal functional state.

It's important because it lays the groundwork for the rest of the boot process, ensuring that the system is in a functional state before other services and applications start up. The contents of the rcS script can vary depending on the Linux distribution, but its primary purpose is consistent across most distributions.

Overall, the "rcS" script plays a crucial role in preparing the system for single-user mode, ensuring that essential services and configurations are in place for troubleshooting and maintenance purposes.

====== 分割线 ======

嵌入式系统执行的启动脚本

通常嵌入式系统启动和重启前执行的脚本是rcS和rcK。

# ls /etc/init.d/rc*

rcK  rcS

启动和重启时调用rcS和rcK脚本,这个是在/etc/inittab 文件里设置的。Linux系统启动进程会读取这个文件。

# cat /etc/inittab# This is run first except when booting in single-user mode.# Startup the system::sysinit:echo "<< inittab >>"::sysinit:/bin/mount -t proc proc /proc::sysinit:/bin/mount -t sysfs sysfs /sys::sysinit:/bin/mount -t devtmpfs devtmpfs /dev::sysinit:/bin/mount -o remount,rw /::sysinit:/bin/mkdir -p /dev/pts::sysinit:/bin/mount -t devpts devpts /dev/pts::sysinit:/bin/mount -a::sysinit:/sbin/swapon -anull::sysinit:/bin/ln -sf /proc/self/fd /dev/fdnull::sysinit:/bin/ln -sf /proc/self/fd/0 /dev/stdinnull::sysinit:/bin/ln -sf /proc/self/fd/1 /dev/stdoutnull::sysinit:/bin/ln -sf /proc/self/fd/2 /dev/stderr# set hostnamenull::sysinit:/bin/busybox hostname -F /etc/hostname::sysinit:/etc/init.d/rcS# Stuff to do before rebooting#::ctrlaltdel:/sbin/reboot::shutdown:/etc/init.d/rcK::shutdown:/sbin/swapoff -a::shutdown:/bin/umount -a -r# Stuff to do when restarting the init process::restart:/sbin/initttyLP0::respawn:/sbin/getty 115200 ttyLP0# /sbin/getty invocations for the runlevels.## The "id" field MUST be the same as the last# characters of the device (after "tty").## Format:#  <id>:<runlevels>:<action>:<process>#tty1:12345:respawn:/sbin/getty 38400 tty1


 

启动进程就是系统启动后第一个执行的进程:

# ps

  PID USER       VSZ STAT COMMAND

    1 root      3500 S    /sbin/init

    ...

    ...

具体步骤如下:

1. 初始进程:

    * 内核执行指定的初始进程,通常是 /sbin/init 或其符号链接。

    * 在使用 BusyBox 的嵌入式系统中,/sbin/init 可能是指向 BusyBox 二进制文件的符号链接。

2. 执行初始化脚本

    * 初始进程会读取配置文件(如 /etc/inittab 或 /etc/init/rcS.conf),以确定要执行的脚本。

    * 通常,init 进程会生成配置文件中指定的多个脚本,这些脚本通常位于 /etc/init.d/ 或 /etc/rc.d/ 等目录中。

    * 这些脚本处理各种系统初始化任务,如加载文件系统、配置网络接口、启动基本服务和设置硬件外设。

1. Init Process:

    * The kernel executes the designated init process, which is typically /sbin/init or a symbolic link to it.

    * In embedded systems using BusyBox, /sbin/init may be a symbolic link to the BusyBox binary.

2. Init Script Execution:

    * The init process reads its configuration file (e.g., /etc/inittab or /etc/init/rcS.conf) to determine which scripts to execute.

    * Commonly, the init process spawns multiple scripts specified in the configuration file, usually located in directories like /etc/init.d/ or /etc/rc.d/.

    * These scripts handle various system initialization tasks, such as mounting filesystems, configuring network interfaces, starting essential services, and setting up hardware peripherals.

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/9418.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【win10 文件夹数量和看到不一致查看隐藏文件已经打开,Thumb文件作妖】

目录 任务介绍&#xff1a;重命名规则修改前修改后 实现思路VB代码实现BUG犯罪现场&#xff08;眼见不一定为实&#xff09;破案1&#xff1a;抓顶风作案的反贼&#xff01;&#xff01;&#xff01;破案2&#xff1a;破隐身抓刺客&#xff01;&#xff01;&#xff01;杀器&am…

机器人系统ros2-开发实践08-了解如何使用 tf2 来访问坐标帧转换(Python)

tf2 库允许你在 ROS 节点中查询两个帧之间的转换。这个查询可以是阻塞的&#xff0c;也可以是非阻塞的&#xff0c;取决于你的需求。下面是一个基本的 Python 示例&#xff0c;展示如何在 ROS 节点中使用 tf2 查询帧转换。 本教程假设您已完成tf2 静态广播器教程 (Python)和tf…

今日早报 每日精选15条新闻简报 每天一分钟 知晓天下事 5月10日,星期五

每天一分钟&#xff0c;知晓天下事&#xff01; 2024年5月10日 星期五 农历四月初三 1、 商务部&#xff1a;汽车以旧换新补贴可与新能源汽车购置税减免等叠加享受。 2、 教育部&#xff1a;京津优质中小学基础教育资源同雄安共享。 3、 医保局&#xff1a;发挥零售药店等不同…

HarmonyOS NEXT星河版之美团外卖点餐功能实战(上)

文章目录 一、目标二、开撸2.1 目录结构2.2 页面模块拆分2.3 主体拆分布局2.4 底部购物车布局2.5 顶部布局2.6 点菜布局---左2.7 菜品Item封装2.7 点菜布局---右2.8 主页面整体布局 三、小结 一、目标 二、开撸 2.1 目录结构 2.2 页面模块拆分 将页面主体拆为三部分&#xff…

Middle for Mac:简洁高效的文本编辑软件

追求简洁与高效&#xff1f;Middle for Mac将是您文本编辑的最佳选择。这款Mac平台上的文本编辑器&#xff0c;以其独特的魅力和实用的功能&#xff0c;赢得了众多用户的喜爱。 Middle注重用户体验&#xff0c;采用简洁直观的界面设计&#xff0c;让您能够迅速上手并享受高效的…

204. 计数质数

Problem: 204. 计数质数 文章目录 思路解题方法复杂度Code 思路 这个问题的关键是找出小于n的所有质数。质数是只有两个正因数&#xff08;1和它自身&#xff09;的自然数&#xff0c;且必须大于1。 解题方法 我们可以使用埃拉托斯特尼筛法&#xff08;Sieve of Eratosthenes&a…

【设计模式】JAVA Design Patterns——Abstract-document

&#x1f50d; 目的 使用动态属性&#xff0c;并在保持类型安全的同时实现非类型化语言的灵活性。 &#x1f50d; 解释 抽象文档模式使您能够处理其他非静态属性。 此模式使用特征的概念来实现类型安全&#xff0c;并将不同类的属性分离为一组接口 真实世界例子 考虑由多个部…

docker学习笔记(五):harbor仓库搭建与简单应用

harbor私有仓库 简介 Docker容器应用的开发和运行离不开可靠的镜像管理&#xff0c;虽然Docker官方也提供了公共的镜像仓库&#xff0c;但是从安全和效率等方面考虑&#xff0c;部署私有环境内的Registry也是非常必要的。Harbor是由VMware公司开源的企业级的Docker Registry管…

组件目录存放问题

目录 一、思考引入 二、组件分类 三、组件分类的目的 一、思考引入 .vue文件本质无区别&#xff0c;而路由相关的组件&#xff0c;为什么要放在views目录呢&#xff1f; 二、组件分类 .vue文件分2类&#xff1a;页面组件和复用组件。注意&#xff1a;都是.vue文件&#xff…

【八股系列】React中props和state的区别是什么?

React中props和state的区别是&#xff1a; props是用来从父组件向子组件进行传递数据的&#xff0c;在子组件中可以用props来接收到父组件传递过来的参数。props是不可变的&#xff0c;用户不能在子组件中修改props的值&#xff0c;因为从父组件中传递过来的值被认为是不可变数…

HJ19 简单错误记录

问题概要 开发一个简单错误记录功能小模块&#xff0c;能够记录出错的代码所在的文件名称和行号。 对应牛客网题目HJ19 简单错误记录 思路分析 其实这个题目并没有用到特别复杂的技巧&#xff0c;重点是对字符串的处理&#xff0c;以及模拟整个记录的过程。 代码实现 #include…

漫画对话 ai翻译

復讐の教科書ーー81 81-1 いい加減吐け&#xff01;&#xff01;冴木&#xff01;&#xff01; 快说吧&#xff01;&#xff01;冴木&#xff01;&#xff01; お前が一連の事件の犯人なんだろ&#xff01;&#xff1f; 你就是连续事件的犯人吧&#xff01;&#xff1f; だか…

400G QSFP-DD光模块的分类及应用领域

400G QSFP-DD光模块是一种光通信设备&#xff0c;具有高带宽和高密度的特点&#xff0c;适用于各种数据中心和通信网络。本文将介绍400G QSFP-DD光模块的分类和应用领域。 400G QSFP-DD光模块的分类 400G QSFP-DD光模块可以根据其传输速率、光纤类型和工作距离等因素进行分类。…

SpringBoot的启动器——Spring-boot-starter介绍和常见启动器

1、Starter是什么 Spring Boot通过将我们常用的功能场景抽取出来&#xff0c;做成的一系列的启动器&#xff0c;我们只需要在项目中引入这些starter&#xff0c;相关的所有依赖就会全部被导入进来&#xff0c;并且我们可以抛弃繁杂的配置&#xff0c;例如&#xff1a; ​ spri…

探索Java的未来:创新与演进的旅程

探索Java的未来&#xff1a;创新与演进的旅程 Java&#xff0c;这个被誉为“一次编写&#xff0c;到处运行”的编程语言&#xff0c;自1995年诞生以来&#xff0c;一直以其跨平台性、面向对象和强大的安全性而著称。随着技术的不断进步和市场的不断变化&#xff0c;Java也在不…

游戏工作室如何利用惯性动作捕捉技术制作动画?

随着动捕设备不断进步和游戏行业的发展&#xff0c;惯性动作捕捉技术在游戏开发领域逐渐普及。惯性动作捕捉技术&#xff0c;可以精准捕捉现实世界中的真人动作&#xff0c;并将其精准应用于虚拟角色上&#xff0c;使游戏中的角色动作可以呈现出更写实、逼真和沉浸感&#xff0…

##10 卷积神经网络(CNN):深度学习的视觉之眼

文章目录 前言1. CNN的诞生与发展2. CNN的核心概念3. 在PyTorch中构建CNN4. CNN的训练过程5. 应用:使用CNN进行图像分类5. 应用:使用CNN进行时序数据预测代码实例7. 总结与展望前言 在深度学习的领域中,卷积神经网络(CNN)已经成为视觉识别任务的核心技术。自从AlexNet在2…

光伏设备制造5G智能工厂数字孪生可视化平台,推进行业数字化转型

光伏设备制造5G智能工厂数字孪生可视化平台&#xff0c;推进行业数字化转型。光伏设备制造5G智能工厂数字孪生可视化平台是光伏行业数字化转型的重要一环。通过数字孪生平台&#xff0c;光伏设备制造企业可以实现对生产过程的全面监控和智能管理&#xff0c;提高生产效率&#…

ESP32-C3模组上跑通MQTT(4)

接前一篇文章&#xff1a;ESP32-C3模组上跑通MQTT&#xff08;3&#xff09; 本文内容参考&#xff1a; 《ESP32-C3 物联网工程开发实战》 特此致谢&#xff01; 上一回讲到了MQTT的消息格式&#xff0c;讲解了MQTT控制报文中的固定头中的控制报文的类型、消息质量等级和标志…

基于51单片机的智能导盲手杖—超声波测距

基于51单片机的智能导盲手杖 &#xff08;仿真&#xff0b;程序原理图&#xff0b;PCB设计报告&#xff09; 功能介绍 具体功能&#xff1a; 1.显示前方障碍物距离。 2.实时测量距离&#xff0c;并通过蜂鸣器提醒距离过短&#xff0c;蜂鸣器蜂鸣发出预警。 3.可以通过按键调…