Bitcoin Forum
June 28, 2024, 11:09:18 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Linux script [with selection where to mine and tuneups] for HD7970 = 736kH/s  (Read 488 times)
tytanick (OP)
Legendary
*
Offline Offline

Activity: 2660
Merit: 1096


Simplemining.net Admin


View Profile WWW
June 04, 2013, 09:45:59 PM
Last edit: June 04, 2013, 10:43:47 PM by tytanick
 #1

Hi guys,
I made small script which let me choose what am i want to mining after running script.
Also those are best for me settings which give me 736kH/s without overvolting and with heat protection (increasing fan speed to max when its too hot, then lowering gpu clock and finally cutoff whole card)
Also if you find this usefull please send me as much LTC or BTC as you can Smiley Even 0,1LTC or 0,01BTC if you cant more Smiley
Reply if you like this script and leave comment if you have something to add Smiley
BTC: 1ERRVbvV23h51ScH73nQr6TDmaieKNuuVD
LTC: LLEazpws2BjSLZy4aSWbi9U2Lgih4a4gnp

Code:
 cgminer version 2.11.3 - Started: [2013-06-04 23:15:59]
--------------------------------------------------------------------------------
 (5s):1.473M (avg):1.468Mh/s | Q:2805  A:0  R:0  HW:0  E:0%  U:0.0/m
 ST: 5  SS: 0  DW: 0  NB: 1  LW: 0  GF: 0  RF: 0  WU: 0.0
 Connected to 8.8.8.8 diff 137K without LP as user xxx
 Block: d277acad0b29ff2c...  Diff:137K  Started: [23:15:58]  Best share: 0
--------------------------------------------------------------------------------
 [P]ool management [G]PU management [S]ettings [D]isplay options [Q]uit
 GPU 0:  73.0C 3041RPM | 736.2K/735.4Kh/s | A:0 R:0 HW:0 U:0.00/m I:13
 GPU 1:  73.0C 3027RPM | 735.8K/734.3Kh/s | A:0 R:0 HW:0 U:0.00/m I:13
--------------------------------------------------------------------------------

 [2013-06-04 23:15:57] Started cgminer 2.11.3
 [2013-06-04 23:15:58] Probing for an alive pool

Code:
#!/bin/bash

echo ""
echo "What do you want mining?"
echo ""
select l in AMC DGC-solo DGC-pool LTC-pool QUIT
do
  case "$l" in
    "AMC") USER="xxx" PASS="xxx" HOST="8.8.8.8:9057" ;;
    "DGC-solo") USER="xxx" PASS="xxx" HOST="8.8.8.8:7001" ;;
    "DGC-pool") USER="pokemon" PASS="xxx" HOST="stratum+tcp://dgc.epools.org:3338" ;;
    "LTC-pool") USER="pokemon" PASS="xxx" HOST="http://ltcmine.ru:3333" ;;
    "QUIT") exit ;;
    *) echo "Invalid Option, Quitting" exit ;;
  esac
break
done

cd ~/cgminer
export DISPLAY=:0
export GPU_MAX_ALLOC_PRECENT=100
export GPU_USE_SYNC_OBJECTS=0
aticonfig --od-enable
./cgminer --scrypt \
-o $HOST -u $USER -p $PASS \
-s 1 --expiry 1 --queue 0 \
-I 13 -w 256 -g 2 --shaders 2048 --thread-concurrency 8192 --lookup-gap 2 \
--auto-gpu --gpu-engine 1000-1047 --gpu-memclock 1500 \
--auto-fan --temp-target 75 --temp-overheat 85 --temp-cutoff 88 2>logfile.txt

Manage your GPU farm the easy way with Mining OS (30 days free):  SimpleMining.net
Support available at Discord: https://simplemining.net/page/discord and admin@simplemining.net
Bitcointalk thread: https://bitcointalk.org/index.php?topic=1541084.0
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!