Tôi đang tạo một hình ảnh của Debian Jessie. Khi khởi động hệ thống không có /etc/machine-id
tập tin. Điều này gây ra một số vấn đề với tạp chí không bắt đầu.
Tôi đã tìm thấy rằng trong repo systemd:
# 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=First Boot Wizard
Documentation=man:systemd-firstboot(1)
DefaultDependencies=no
Conflicts=shutdown.target
After=systemd-remount-fs.service
Before=systemd-sysusers.service sysinit.target shutdown.target
ConditionPathIsReadWrite=/etc
ConditionFirstBoot=yes
[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=@rootbindir@/systemd-firstboot --prompt-locale --prompt-timezone --prompt-root-password
StandardOutput=tty
StandardInput=tty
StandardError=tty
Nó nên được đặt ở đâu để nó chạy?
Trong systemd 215, conditionFirstBoot không khả dụng. Làm thế nào để đối phó với điều đó?
: > /etc/machine-id
). Có thể điều này thậm chí không còn đúng nữa, nhưng tôi đã học cách đối xử với tập tin này với sự tôn trọng và kính nể từ bao giờ.