Comment
Author: Admin | 2025-04-27
To set up. However, there were a large number of tutorials and guides already out there, and many were more than a year out of date.This guide assumes the reader already has a crypto wallet set up, is comfortable with Linux and the command line, and knows how to use Google if they run into problems.The end result is an Ubuntu 16.04 LTS headless server running CUDA ethminer via systemd.Hardware Headless Ethminer (nVidia) Setup GuideCian Johnston, July 2017A couple of weeks ago, I decided I should put my gaming rig to work crypto mining. I did not expect to make any significant profit on this, it was more of a fun project to set up. However, there were a large number of tutorials and guides already out there, and many were more than a year out of date.This guide assumes the reader already has a crypto wallet set up, is comfortable with Linux and the command line, and knows how to use Google if they run into problems.The end result is an Ubuntu 16.04 LTS headless server running CUDA ethminer via systemd.Hardware This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters Show hidden characters #!/bin/bash # Installs the spark-cassandra-connector and support libs mkdir /usr/local/opt/connector cd /usr/local/opt/connector rm *.jar curl -o ivy-2.4.0.jar \ 'https://repo1.maven.org/maven2/org/apache/ivy/ivy/2.4.0/ivy-2.4.0.jar' This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters Show hidden characters docker-machine create \ --driver=digitalocean \ --digitalocean-access-token=$DO_TOKEN \ --digitalocean-size=512mb \ --digitalocean-region=tor1 \ --digitalocean-private-networking=true \ --digitalocean-image=ubuntu-16-04-x64 \ docker-swarm-kv-store docker $(docker-machine config docker-swarm-kv-store) run -d \
Add Comment