Hi,
I tried "OhGodAnETHlargementPill-r2" with my 6 x 1080ti, but I only went from 35Mh/s to 40Mh/s. Anyone else in my case ?
Mystery solved !
It seems I had a very old version of SimpleMining on this rig since it was running for a very long time. So I flashed a newer version and now I go from 35MH/s to 51Mh/s. Excellent !
Hello,
How did you manage to use OhGodAnETHlargementPill-r2 on smos?
Thanks
1. You need to connect to your rig with ssh.
2. Open a screen with : screen
3. Type : sudo /root/utils/OhGodAnETHlargementPill -revA 0,1,2,3 (where 0, 1, 2, 3 are the ids of the GPU)
4. Detach the screen with : Ctrl + A + D (so it can run in background in the screen)
On step 4 you say it can run in the background screen. Does this mean we need to keep the SSH window open?
Thanks
Here's what I did so it automatically starts when the miner boots:
1. SSH into the miner, type the following:
sudo vim /etc/rc.local
2. edit the file by adding the ETHlargement command above the miner script. Here's what mine looks like below (FYI, to edit the file with vim, type "a" on your keyboard, then edit the file as normal, hit "Esc" on your keyboard when done, then type":wq" hit Enter and it'll save. Make sure you have the "&", it's important and makes the command run in the background and stay running.
----------
#!/bin/sh
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
sudo /root/utils/OhGodAnETHlargementPill &
bash /root/utils/rclocal.sh &
exit 0
~
~
---------
DONE!
reboot the miner by typing "sudo reboot", BAM problem solved.