STH AEON xmrig 1MB L3 cache Docker miner testing

Notice: Page may contain affiliate links for which we may earn a small commission through services like Amazon Affiliates or Skimlinks.

nsiderTalon

New Member
Jan 7, 2018
5
2
3
32
To clarify, I find it's useful to use a bash script for mining that can invoke multiple docker runs (e.g., so I can launch one for my CPU , one for a GPU, etc.). For threadripper, you might have something like this:

Code:
#!/usr/bin/env bash

sudo sysctl vm.nr_hugepages=128
WALLET="[Your address]"

docker run -it -e username=$WALLET -e numthreads=16 --cpuset-cpus="0-15" -e aeon=true -e av=2 servethehome/universal_cryptonight:latest
 
  • Like
Reactions: leebo_28

IamSpartacus

Well-Known Member
Mar 14, 2016
2,515
650
113
To clarify, I find it's useful to use a bash script for mining that can invoke multiple docker runs (e.g., so I can launch one for my CPU , one for a GPU, etc.). For threadripper, you might have something like this:

Code:
#!/usr/bin/env bash

sudo sysctl vm.nr_hugepages=128
WALLET="[Your address]"

docker run -it -e username=$WALLET -e numthreads=16 --cpuset-cpus="0-15" -e aeon=true -e av=2 servethehome/universal_cryptonight:latest
I'm running docker in Windows though...How would I make that work? This could be useful though as I'm still trying to determine what to run for my dual 1080Ti's and this could be the solution if I can make it work in Windows.