我有一个带有 systemd 的 Arch Linux 系统,我已经创建了自己的服务。配置服务/etc/systemd/system/myservice.service
看起来像这样:
[Unit]
Description=My Daemon
[Service]
ExecStart=/bin/myforegroundcmd
[Install]
WantedBy=multi-user.target
现在我想为/bin/myforegroundcmd
. 我怎么做?
我有一个带有 systemd 的 Arch Linux 系统,我已经创建了自己的服务。配置服务/etc/systemd/system/myservice.service
看起来像这样:
[Unit]
Description=My Daemon
[Service]
ExecStart=/bin/myforegroundcmd
[Install]
WantedBy=multi-user.target
现在我想为/bin/myforegroundcmd
. 我怎么做?