Raspberry PiのRaspbianシステムを自動的にrootアカウントでログインするように設定


raspibianシステムのrootアカウントをロック解除


通常、Raspbianシステムのデフォルトでは、rootアカウントは開いていません.まず、rootアカウントを開く必要があります.piアカウントを使用してシステムにログインし(デフォルトのパスワードは:raspberry)、次のコマンドを実行します.
localhost:~ wangzhizhou$ ssh pi@192.168.0.110
pi@192.168.0.110's password: 

The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Thu Jul 28 16:04:49 2016 from 192.168.0.109
pi@raspberrypi:~ $ sudo passwd root
Enter new UNIX password: 
Retype new UNIX password: 
passwd: password updated successfully
pi@raspberrypi:~ $ sudo passwd --unlock root
passwd: password expiry information changed.
pi@raspberrypi:~ $ su root
Password: 
root@raspberrypi:/home/pi# vi /etc/systemd/system/getty.target.wants/getty\@tty1.service 

システム起動関連プロファイルの表示


システムログインプロファイルを開きます.内容は次のとおりです.
   #  This file is part of systemd.
   #
   #  systemd is free software; you can redistribute it and/or modify it
   #  under the terms of the GNU Lesser General Public License as published by
   #  the Free Software Foundation; either version 2.1 of the License, or
   #  (at your option) any later version.

   [Unit]
   Description=Getty on %I
  Documentation=man:agetty(8) man:systemd-getty-generator(8)
  Documentation=http://0pointer.de/blog/projects/serial-console.html
  After=systemd-user-sessions.service plymouth-quit-wait.service
  After=rc-local.service

  # If additional gettys are spawned during boot then we should make
  # sure that this is synchronized before getty.target, even though
  # getty.target didn't actually pull it in.
  Before=getty.target
  IgnoreOnIsolate=yes

  # On systems without virtual consoles, don't start any getty. Note
  # that serial gettys are covered by [email protected], not this
  # unit.
  ConditionPathExists=/dev/tty0

  [Service]
  # the VT is cleared by TTYVTDisallocate
  ExecStart=-/sbin/agetty --noclear %I $TERM
  Type=idle
  Restart=always
  RestartSec=0
  UtmpIdentifier=%I
  TTYPath=/dev/%I
  TTYReset=yes
  TTYVHangup=yes 36 TTYVTDisallocate=yes
  KillMode=process
  IgnoreSIGPIPE=no
  SendSIGHUP=yes

  # Unset locale for the console getty since the console has problems
  # displaying some internationalized messages.
  Environment=LANG= LANGUAGE= LC_CTYPE= LC_NUMERIC= LC_TIME= LC_COLLATE= LC_MONETARY= LC_MESSAGES= LC_PAPER= LC_NAME= LC_ADDRESS= LC_TELEPH    ONE= LC_MEASUREMENT= LC_IDENTIFICATION=

  [Install]
  WantedBy=getty.target
  DefaultInstance=tty1

システムプロファイルの変更

28行を
  ExecStart=-/sbin/agetty --noclear %I $TERM

変更後:
 ExecStart=-/sbin/agetty --autologin root --noclear %I $TERM

保存後、再起動すると自動的にrootユーザーでログインできます.

後記


比較後のraspbianシステムでは、SysVシステムでは/etc/inittabファイルを使用して関連構成を管理しているので、ネットで調べた資料の大部分はこのファイルの設定に関するもので、新しいシステムでは一般的にsystemdを使用して関連構成を管理しているので、構成ファイルはすでにブログで修正されたファイルに変わりました.--#