2
systemd-tmpfilesを実行するsystemd .serviceファイルの書き方
systemd-tmpfiles --createsystemdディストリビューションを使用してブートプロセス中に実行する必要があります。したがって、この仕事をするsystemd .serviceファイルを作成する必要があります。 この質問では、必要なものとその理由に関するすべての詳細を読むことができます:systemd-tmpfilesはどのように機能しますか? 私はそれについていくつかのドキュメントを読んでおり、次のテストを書いています: [Unit] Description=Execute tmpfiles to disable usb-wakeup # see details in the link above Requires=multi-user.target # see details in the link above After=multi-user.target # see details in the link above [Service] Type=oneshot ExecStart=/usr/bin/systemd-tmpfiles --create [Install] WantedBy=multi-user.target しかしsystemd-tmpfiles、単純なプログラムではなく、systemd自体の一部であるため、わかりません。システムを壊したくありません。 正しい.serviceファイルに関するヒントはありますか?