The official source of all available Linux packages of Sia software
As of this moment only Debian and other distros using 'Apt' as their package manager are supported.
The following packages are supported
Simply add this repo to your sources by running the following command
sudo curl -fsSL https://linux.sia.tech/debian/gpg | sudo gpg --dearmor -o /usr/share/keyrings/siafoundation.gpg
echo "deb [signed-by=/usr/share/keyrings/siafoundation.gpg] https://linux.sia.tech/debian stable main" | sudo tee -a /etc/apt/sources.list.d/siafoundation.list
After that, you can install any of the available packages (e.g. hostd
) like this:
# install
$ sudo apt install hostd
All packages also ship with a systemd service that you can use to keep hostd running in the background:
# create working dir
$ sudo mkdir -p /var/lib/hostd
$ cd /var/lib/hostd
# configure hostd
$ hostd config
# enable hostd systemd service
$ sudo apt enable --now hostd
If you want to install a different package just replace hostd
in the
commands with a different package name.