0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

[Linux] シングルユーザモードへの切替方法

Last updated at Posted at 2025-01-20

起動プロセス

ブートローダ(GRUB/GRUB2)

  • システムの起動初期段階で指定できる
  • 通常の起動プロセスやサービスは開始されない
  • この方法は、起動プロセスやシステム全体を変更する必要がある場合に適している

GRUB/GRUB2

  1. システムの起動初期段階でGRUBのメニューが表示された際に、Eキーを押す
  2. 下記の画面が表示される
bash

  1. ブートオプションsingleを入力する
bash

初期化システム(SysVinit/systemd)

  • システムが完全に起動してから、その時点のランレベルをシングルユーザモードに変更する
  • システムサービスやデーモンが起動した後にシングルユーザモードに入るため、すでに動作しているプロセスが存在する可能性がある

SysVinit

bash
$ init 1

または

bash
$ telinit 1

systemd

bash
$ systemctl rescue
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?