ホームページ  >  記事  >  運用・保守  >  Linux 起動時にグラフィカル インターフェイスに入る方法

Linux 起動時にグラフィカル インターフェイスに入る方法

王林
王林オリジナル
2019-11-22 11:46:124947ブラウズ

Linux 起動時にグラフィカル インターフェイスに入る方法

/etc/inittab ファイルを編集します

# inittab is only used by upstart for the default runlevel.
#
# ADDING OTHER CONFIGURATION HERE WILL HAVE NO EFFECT ON YOUR SYSTEM.
#
# System initialization is started by /etc/init/rcS.conf
#
# Individual runlevels are started by /etc/init/rc.conf
#
# Ctrl-Alt-Delete is handled by /etc/init/control-alt-delete.conf
#
# Terminal gettys are handled by /etc/init/tty.conf and /etc/init/serial.conf,
# with configuration in /etc/sysconfig/init.
#
# For information on how to write upstart event handlers, or how
# upstart works, see init(5), init(8), and initctl(8).
#
# Default runlevel. The runlevels used are:
#   0 - halt (Do NOT set initdefault to this)
#   1 - Single user mode
#   2 - Multiuser, without NFS (The same as 3, if you do not have networking)
#   3 - Full multiuser mode
#   4 - unused
#   5 - X11
#   6 - reboot (Do NOT set initdefault to this)
#
id:3:initdefault:

このコード行を見つけます:id:3 :initdefault :

Linux がシステムに入った後に実行される init アクション レベルを定義します。レベルは 6 つあります:

レベル 0、サスペンドおよびシャットダウン モード、

レベル 1。シングルユーザー モード;

レベル 2、マルチユーザー モード、ただしネットワーク機能なし;

レベル 3、フル機能のシングルユーザー モード;

レベル 4、使用なし;

レベル 5、X11 モード、グラフィカル インターフェイス モード;

レベル 6、再起動モード。

元の「3」を「5」に変更し、システムを再起動します。

推奨チュートリアル: linux チュートリアル

以上がLinux 起動時にグラフィカル インターフェイスに入る方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。