回答:
はい、そうです。
起動時にランレベル5(X11のデフォルト)で直接起動する/etc/inittab
ように編集する必要がありinit
ます。
初心者メモ:で始まる行
#
はコメントを表します。ファイルが使用されるとき、それらは完全に無視されます。
このセクションはデフォルトのランレベルを制御します:
## Only one of the following two lines can be uncommented!
# Boot to console
# id:3:initdefault: # this line should be commented
# Boot to X11
id:5:initdefault: # this line should be uncommented
次に、ランレベル5を開始するときに実行するコマンドを指定する必要があります。このセクションでは以下を制御します。
# Example lines for starting a login manager
#x:5:respawn:/usr/bin/xdm -nodaemon
x:5:respawn:/usr/sbin/gdm -nodaemon # this line should be uncommented
#x:5:respawn:/usr/bin/kdm -nodaemon
#x:5:respawn:/usr/bin/slim >/dev/null 2>&1
これで、再起動するときにGDMを直接起動する必要があります。
ログイン後、次のコマンドを実行します。
sudo gdmsetup
を選択しSecurity Tab
、をクリックしてEnable Automatic Login
、メニューからユーザー名を選択して閉じます。
次回の再起動後、自動的にログインするはずです。