Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
development:linux:system:create_service [2021/08/03 13:22] kalenpw created |
— (current) | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Create Service ====== | ||
- | |||
- | ---- | ||
- | Create .service file in '' | ||
- | |||
- | Eg: | ||
- | |||
- | <code systemd> | ||
- | [Unit] | ||
- | Description=Linux Application Launcher | ||
- | Documentation=https:// | ||
- | After=display-manager.service | ||
- | |||
- | [Service] | ||
- | Type=simple | ||
- | Restart=always | ||
- | RestartSec=1 | ||
- | ExecStart=/ | ||
- | | ||
- | [Install] | ||
- | WantedBy=default.target | ||
- | </ | ||