Skip to content

HiveOS Manual Installation

Brian Lee edited this page Apr 27, 2018 · 10 revisions

Avermore is on HiveOS, but sometimes it can take a few days for HiveOS to push the latest releases. If you'd like manually update Avermore to the latest release, you can follow this guide to do so.

First, get the URL of the latest Avermore release by going here and copying the URL of the latest Linux release. We will use v1.2 as an example for this tutorial. If you're manually installing a different version, make sure to use the correct URL and version number in the listed commands.

SSH into your HiveOS machine and run:

wget -O avermore.zip https://github.com/brian112358/avermore-miner/releases/download/v1.2/avermore-v1.2-linux.zip
unzip avermore.zip
cp avermore-linux/sgminer /hive/sgminer/avermore/sgminer-avermore-1.2
rm /hive/sgminer/avermore/sgminer
ln -s /hive/sgminer/avermore/sgminer-avermore-1.2 /hive/sgminer/avermore/sgminer
cp -R avermore-linux/kernel /hive/sgminer/avermore
rm /hive/sgminer/x16*.bin

If all of this works, you can clean up the temporary files:

rm -r avermore-linux
rm avermore.zip
Clone this wiki locally