このコマンドを使用する場合:
mount -t xfs -o noatime,nodiratime,logbufs=8 -L d1 /srv/node/d1
すべて正常に動作します。しかし、マウントを介してsystemd
マウントしようとすると失敗します。
/etc/systemd/system/mnt-d1.mount
次の内容のファイルを作成しました:
[Unit]
Description = Disk 1
[Mount]
What = LABEL=d1
Where = /srv/node/d1
Type = xfs
Options = noatime,nodiratime,logbufs=8
[Install]
WantedBy = multi-user.target
その後、次のコマンドを実行します。
systemctl daemon-reload
systemctl start mnt-d1.mount
最後の1つは私に示した:
Failed to start mnt-d1.mount: Unit mnt-d1.mount failed to load: Invalid argument.
See system logs and 'systemctl status mnt-d1.mount' for details.
systemctl status mnt-d1.mount
私に見せた:
May 16 18:13:52 object1 systemd[1]: Cannot add dependency job for unit mnt-d1.mount, ignoring: Unit mnt-d1.mount failed to ...ectory.
May 16 18:24:05 object1 systemd[1]: mnt-d1.mount's Where= setting doesn't match unit name. Refusing.
systemd
マウントユニットを介してディスクをマウントするのを手伝ってください。