diff options
author | Slack Coder <slackcoder@server.ky> | 2024-10-03 06:02:17 -0500 |
---|---|---|
committer | Slack Coder <slackcoder@server.ky> | 2024-10-03 06:02:17 -0500 |
commit | c2104f4e880c631e202379ef9fb88ee06db3d330 (patch) | |
tree | 9f1488ede19f80cb9dbf66d1e40647876e242680 | |
parent | 2597c03d1555e00dec59830b7de75e7090208e05 (diff) | |
download | mirror-c2104f4e880c631e202379ef9fb88ee06db3d330.tar.xz |
README: Note about system integration
-rw-r--r-- | README.md | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -46,12 +46,17 @@ sudo sh *.SlackBuild ### Other Unix-like systems -Standard practice is to install under /usr/local/bin +Standard practice is to install under /usr/local/sbin ``` -sudo GOBIN=/usr/local/sbin go build ./cmd/... +go build ./cmd/... +sudo mv mirror /usr/local/sbin +sudo chmod +x /usr/local/sbin/mirror ``` +You will then need to integrate it into your system's service management to +your liking. + ## Configuration Configuration is provided via [TOML](https://toml.io) file format. |