From 5231b4085f103f22ded7863b82672ef4f7f0db61 Mon Sep 17 00:00:00 2001 From: PJ Date: Fri, 12 Jun 2026 12:30:59 +0200 Subject: [PATCH 1/4] readme: add s3d to supported packages --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 8e60f0b0..0196deae 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,7 @@ The following packages are supported - [renterd](https://github.com/SiaFoundation/renterd) - [hostd](https://github.com/SiaFoundation/hostd) +- [s3d](https://github.com/SiaFoundation/s3d) ## Adding the Repository @@ -72,3 +73,18 @@ $ sudo systemctl enable --now hostd If you want to install a different package just replace `hostd` in the commands with a different package name. + +### s3d + +s3d needs to be registered with the indexer before the daemon can start. +After installing and configuring it, run the following commands once before +enabling the service: + +```bash +# register this s3d instance with the indexer +$ s3d login + +# create a user and an S3 access key +$ s3d users create +$ s3d keys create +``` From fb99a28651b8d454d4e66b077f8457df171bedac Mon Sep 17 00:00:00 2001 From: PJ Date: Mon, 15 Jun 2026 13:20:23 +0200 Subject: [PATCH 2/4] docs: update README --- README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 0196deae..bc8f3166 100644 --- a/README.md +++ b/README.md @@ -77,14 +77,15 @@ commands with a different package name. ### s3d s3d needs to be registered with the indexer before the daemon can start. -After installing and configuring it, run the following commands once before -enabling the service: +`s3d login` walks you through the initial configuration and registers this +instance with the indexer. Run the following commands once before enabling the +service: ```bash -# register this s3d instance with the indexer -$ s3d login +# configure s3d and register it with the indexer +$ sudo s3d login # create a user and an S3 access key -$ s3d users create -$ s3d keys create +$ sudo s3d users create +$ sudo s3d keys create ``` From 2110fa1605268bcad73a8545c2377bc51917bb63 Mon Sep 17 00:00:00 2001 From: PJ Date: Mon, 15 Jun 2026 14:32:25 +0200 Subject: [PATCH 3/4] all: address comments --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a59596c5..f3b0010b 100644 --- a/README.md +++ b/README.md @@ -79,8 +79,8 @@ commands with a different package name. s3d needs to be registered with the indexer before the daemon can start. `s3d login` walks you through the initial configuration and registers this -instance with the indexer. Run the following commands once before enabling the -service: +instance with the indexer. Run the following commands once to register this +instance and start the service: ```bash # configure s3d and register it with the indexer @@ -89,4 +89,7 @@ $ sudo s3d login # create a user and an S3 access key $ sudo s3d users create $ sudo s3d keys create + +# enable s3d systemd service +$ sudo systemctl enable --now s3d ``` From 93ee65434201db444024f27193b4a75fb6fd7446 Mon Sep 17 00:00:00 2001 From: PJ Date: Thu, 18 Jun 2026 14:06:42 +0200 Subject: [PATCH 4/4] docs: update README --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f3b0010b..f94aeae6 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ The following packages are supported - [renterd](https://github.com/SiaFoundation/renterd) - [hostd](https://github.com/SiaFoundation/hostd) -- [s3d](https://github.com/SiaFoundation/s3d) +- [sia-s3d](https://github.com/SiaFoundation/s3d) - [walletd](https://github.com/SiaFoundation/walletd) ## Adding the Repository @@ -77,6 +77,9 @@ commands with a different package name. ### s3d +Install this package with `sudo apt install sia-s3d`. The command and systemd +service are named `s3d`. + s3d needs to be registered with the indexer before the daemon can start. `s3d login` walks you through the initial configuration and registers this instance with the indexer. Run the following commands once to register this