AlmaLinux 8 和 9 的單用戶模式 (也稱為救援模式) 指南
單用戶模式是一個精簡的 Linux 環(huán)境,允許系統(tǒng)管理員執(zhí)行維護(hù)任務(wù)、排查問題和從系統(tǒng)故障中恢復(fù)。當(dāng)您需要重置 root 密碼、修復(fù)配置錯誤、修復(fù)損壞的文件系統(tǒng)或調(diào)查阻止正常啟動的系統(tǒng)錯誤時,單用戶模式特別有用。
作為基于 RHEL 的發(fā)行版,AlmaLinux 8 和 9 通過 GRUB 引導(dǎo)加載程序提供了一種簡單的進(jìn)入單用戶模式的方法。本指南將逐步解釋如何在 AlmaLinux 8 和 9 上進(jìn)入單用戶模式。
什么是單用戶模式?
單用戶模式是 Linux 中的一種特殊引導(dǎo)模式,允許系統(tǒng)以最少的服務(wù)和僅一個 root shell 運(yùn)行。與正常的單用戶模式不同,在單用戶模式下:
- 只有 root 用戶有訪問權(quán)限。
- 網(wǎng)絡(luò)服務(wù)被禁用。
- 僅啟動必要的系統(tǒng)進(jìn)程。
- 系統(tǒng)在命令行模式下運(yùn)行,沒有圖形界面。
由于系統(tǒng)在此模式下并非完全運(yùn)行,因此它非常適合于排查關(guān)鍵問題和進(jìn)行系統(tǒng)級更改。
步驟 1:訪問 GRUB 引導(dǎo)菜單
進(jìn)入單用戶模式的第一步是訪問 GRUB 引導(dǎo)菜單,該菜單在系統(tǒng)完全啟動之前出現(xiàn)。
如果系統(tǒng)已開啟,請使用以下命令重新啟動:
reboot
系統(tǒng)開始重新啟動后,立即按“Esc”鍵(在某些系統(tǒng)上,可能是 Shift 鍵)。
您將看到一個屏幕,其中顯示 GRUB 菜單中可用的內(nèi)核列表,您現(xiàn)在可以使用箭頭鍵選擇要修改引導(dǎo)設(shè)置的內(nèi)核版本。
選擇內(nèi)核版本后,按“e”鍵編輯引導(dǎo)配置屏幕,您可以在其中修改內(nèi)核參數(shù)。
步驟 2:修改內(nèi)核引導(dǎo)參數(shù)
現(xiàn)在,我們需要添加一個特殊命令來指示系統(tǒng)進(jìn)入單用戶模式而不是正常的單用戶模式。
找到以 linux
或 linuxefi
(如果您的系統(tǒng)使用 UEFI 引導(dǎo))開頭的行。
<code>linux /vmlinuz-<version> root=/dev/mapper/almalinux-root ro quiet splash</version></code>
轉(zhuǎn)到此行的末尾并添加以下內(nèi)容:
<code>systemd.unit=rescue.target</code>
修改后,按 Ctrl + X
或 F10
使用修改后的設(shè)置引導(dǎo)。
步驟 3:引導(dǎo)到單用戶模式
按下 Ctrl + X
或 F10
后,系統(tǒng)將開始引導(dǎo)到單用戶模式。
- 您將看到命令行界面而不是正常的登錄屏幕。
- 系統(tǒng)將提示您輸入 root 密碼(在某些系統(tǒng)上,可能不需要)。
- 輸入 root 密碼后,您將對系統(tǒng)擁有完全控制權(quán)。
步驟 4:執(zhí)行系統(tǒng)維護(hù)
現(xiàn)在您已進(jìn)入單用戶模式,您可以執(zhí)行各種系統(tǒng)維護(hù)任務(wù)。以下是一些您可能需要執(zhí)行的常見操作:
1. 重置 root 密碼
如果您忘記了 root 密碼,可以使用以下命令重置:
passwd root
更改后,請確保通過運(yùn)行以下命令更新 SELinux 策略(如果已啟用):
touch /.autorelabel
2. 檢查和修復(fù)文件系統(tǒng)
如果您的系統(tǒng)由于文件系統(tǒng)損壞而出現(xiàn)引導(dǎo)錯誤,請運(yùn)行:
fsck -y /dev/mapper/almalinux-root
這將檢查并嘗試修復(fù)根分區(qū)上的錯誤。
3. 修改系統(tǒng)配置文件
如果錯誤配置阻止了正常引導(dǎo),您可以編輯配置文件:
vi /etc/fstab
進(jìn)行必要的更正并保存文件。
完成必要的維護(hù)任務(wù)后,重新啟動系統(tǒng)以正常啟動。
reboot
您的系統(tǒng)現(xiàn)在將引導(dǎo)到其正常操作模式。
替代方法:引導(dǎo)到緊急模式
如果單用戶模式不起作用或您需要更低級別的故障排除環(huán)境,您可以使用以下命令修改任何現(xiàn)有的引導(dǎo)參數(shù):
<code>systemd.unit=emergency.target</code>
緊急模式提供的服務(wù)比單用戶模式更少,這對于深入故障排除很有幫助。
示例:修復(fù)損壞的 fstab 文件
如果 /etc/fstab
文件(控制文件系統(tǒng)如何掛載)配置錯誤或包含不正確的條目,則系統(tǒng)可能無法正常引導(dǎo)。
假設(shè)您手動編輯了 /etc/fstab
并添加了如下錯誤條目:
<code>/dev/sdb1 /mnt/data ext4 defaults 0 0</code>
但分區(qū) /dev/sdb1
不存在。
會發(fā)生什么?
- 如果您正常引導(dǎo),系統(tǒng)可能會在啟動期間掛起。
- 如果您嘗試單用戶模式,它可能無法正確加載,因?yàn)樵诘竭_(dá) shell 之前會讀取
/etc/fstab
。
解決方案:引導(dǎo)到緊急模式
由于緊急模式僅加載最基本的系統(tǒng)服務(wù),因此它會跳過在 /etc/fstab
中錯誤定義的文件系統(tǒng)的掛載,從而允許您修復(fù)問題。
結(jié)論
AlmaLinux 8/9 中的單用戶模式是一種強(qiáng)大的模式,允許管理員重置密碼、修復(fù)文件系統(tǒng)和修復(fù)配置錯誤。通過遵循這些步驟,您可以安全地引導(dǎo)到救援模式并有效地排查系統(tǒng)問題。
The above is the detailed content of How to Boot Into Single User Mode in AlmaLinux 8/9. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Are you looking for good software to write mathematical equations? If so, this article provides the top 5 equation editors that you can easily install on your favorite Linux distribution.In addition to being compatible with different types of mathema

Linux administrators should be familiar with the command-line environment. Since GUI (Graphical User Interface) mode in Linux servers is not commonly installed.SSH may be the most popular protocol to enable Linux administrators to manage the servers

Gogo is a remarkable tool to bookmark directories inside your Linux shell. It helps you create shortcuts for long and complex paths in Linux. This way, you no longer need to type or memorize lengthy paths on Linux.For example, if there's a directory

PPA is an important tool for Ubuntu users to expand their software sources. 1. When searching for PPA, you should visit Launchpad.net, confirm the official PPA in the project official website or document, and read the description and user comments to ensure its security and maintenance status; 2. Add PPA to use the terminal command sudoadd-apt-repositoryppa:/, and then run sudoaptupdate to update the package list; 3. Manage PPAs to view the added list through the grep command, use the --remove parameter to remove or manually delete the .list file to avoid problems caused by incompatibility or stopping updates; 4. Use PPA to weigh the necessity and prioritize the situations that the official does not provide or require a new version of the software.

LXD is described as the next-generation container and virtual machine manager that offers an immersive for Linux systems running inside containers or as virtual machines. It provides images for an inordinate number of Linux distributions with support

How to quickly generate test files of a specified size? It can be achieved using command line tools or graphical software. On Windows, you can use fsutilfilecreatenew file name size to generate a file with a specified byte; macOS/Linux can use ddif=/dev/zeroof=filebs=1Mcount=100 to generate real data files, or use truncate-s100M files to quickly create sparse files. If you are not familiar with the command line, you can choose FSUtilGUI, DummyFileGenerator and other tool software. Notes include: pay attention to file system limitations (such as FAT32 file size upper limit), avoid overwriting existing files, and some programs may

Node Version Manager (NVM) is a simple bash script that helps manage multiple Node.js versions on your Linux system. It enables you to install various Node.js versions, view available versions for installation, and check already installed versions.NV

The key to installing dual systems in Linux and Windows is partitioning and boot settings. 1. Preparation includes backing up data and compressing existing partitions to make space; 2. Use Ventoy or Rufus to make Linux boot USB disk, recommend Ubuntu; 3. Select "Coexist with other systems" or manually partition during installation (/at least 20GB, /home remaining space, swap optional); 4. Check the installation of third-party drivers to avoid hardware problems; 5. If you do not enter the Grub boot menu after installation, you can use boot-repair to repair the boot or adjust the BIOS startup sequence. As long as the steps are clear and the operation is done properly, the whole process is not complicated.
