Search content
Sort by

Showing 17 of 17 results by swivel
Post
Topic
Board Mining software (miners)
Re: Error on Debian with DiabloMiner
by
swivel
on 26/07/2011, 02:12:12 UTC
You need to give it some arguments, username, etc. For pooled mining: https://github.com/Diablo-D3/DiabloMiner/wiki/Pooled-Mining

Post
Topic
Board Mining software (miners)
Re: Any linux script for maintain GPU temp? (changing fan speed)
by
swivel
on 13/07/2011, 20:21:21 UTC
swivel, could you add something in it with starting fan speed? something like 50%...


when I turn on the script, it's starts from the idle and until get to the desired speed, the GPU gets very hot, even with sleep 5


could be done?


and works like a charm, thank you very much

Yup just add the following after the export line:

Code:
export DISPLAY=:0.${DEVICE}
aticonfig --pplib-cmd "set fanspeed 0 50"
Post
Topic
Board Mining software (miners)
Re: Any linux script for maintain GPU temp? (changing fan speed)
by
swivel
on 12/07/2011, 22:46:34 UTC

I didn't test yet, but seems good for my porpose... I will test later today, but I have one question.

this line is correct?


Code:
        CURSPD=`aticonfig --pplib-cmd "get fanspeed 0" | grep Result | sed  's/.* \([0-9]*[0-9][0-9]\)\%.*/\1/'`

the get fanspeed 0 part... is 0 for device?
if yes, I will just change it to 1 over device 2, correct?

Yes that's correct. aticonfig get the parameters for the card according to the DISPLAY variable. The DISPLAY variable has the device number assigned to it:

Code:
export DISPLAY=:0.${DEVICE}
Post
Topic
Board Mining
Re: Mining rigs "after Bitcoin"
by
swivel
on 10/07/2011, 09:18:10 UTC
Render farm.
Post
Topic
Board CPU/GPU Bitcoin mining hardware
Re: External gpu?
by
swivel
on 10/07/2011, 08:25:12 UTC
Build your own. You just need a PCI-e expansion chassis. Speaking of has any one used one of these http://www.dell.com/us/business/p/poweredge-c410x/pd
Post
Topic
Board Mining software (miners)
Re: Any linux script for maintain GPU temp? (changing fan speed)
by
swivel
on 09/07/2011, 04:57:01 UTC
OK I think this is more what you want.

Code:
#!/bin/bash

MAXSPD=80
MINSPD=20

if [ $# -lt 2 ];
then
        echo "Usage: setfantemp.sh "
        exit 1
fi

DEVICE=$1
SETTEMP=$2

export DISPLAY=:0.${DEVICE}
aticonfig --pplib-cmd "set fanspeed 0 ${MAXSPD}"

while true;
do
        CURTEMP=`aticonfig --adapter=${DEVICE} --odgt | grep Temp | sed  's/.* \([0-9]*[0-9][0-9]\)\..*/\1/'`
        CURSPD=`aticonfig --pplib-cmd "get fanspeed 0" | grep Result | sed  's/.* \([0-9]*[0-9][0-9]\)\%.*/\1/'`

        echo -n "Set temp: ${SETTEMP}C Current temp: ${CURTEMP}C Current speed: ${CURSPD}% - "

        if [ "${CURTEMP}" -ne "${SETTEMP}" ]; then
                if [ "${CURTEMP}" -lt "${SETTEMP}" ]; then
                        NEWSPD=$((${CURSPD} - 1))
                        if [ "${NEWSPD}" -lt "${MINSPD}" ]; then
                                echo "MIN speed limit"
                        else
                                echo "Decreasing speed to ${NEWSPD}"
                        fi
                else
                        NEWSPD=$((${CURSPD} + 1))
                        if [ "${NEWSPD}" -gt "${MAXSPD}" ]; then
                                echo "MAX speed limit"
                        else
                                echo "Increasing speed to ${NEWSPD}"
                                aticonfig --pplib-cmd "set fanspeed 0 ${NEWSPD}"
                        fi
                fi
        else
                echo "Stable"
        fi
        sleep 10
done


Save to setfantemp.sh. To run:

Code:
# ./setfantemp.sh 0 55 &

That will set your target temperature for card 0 to 55C. The script will adjust the fan speed to hit that target.

Max fan speed and min fan speed are hard coded in the script to be 80% and 20% respectively. You can raise the max speed if your card isn't getting cooled to your target temp.

Post
Topic
Board Mining software (miners)
Re: Any linux script for maintain GPU temp? (changing fan speed)
by
swivel
on 08/07/2011, 23:32:30 UTC
Here's a simple shell script. Save as fanmon.sh.

Code:
#!/bin/bash

DEVICE=$1
if [ "${DEVICE}" == "" ];
then
        echo "Usage: fanmon.sh "
        exit 1
fi

# temp levels in C
# fan speeds in %
MAXTEMP=80
MAXFAN=99

MIDTEMP=60
MIDFAN=70

MINTEMP=40
MINFAN=50

IDLEFAN=20
LASTTEMP=0

export DISPLAY=:0.${DEVICE}

while true;
do
        TEMP=`aticonfig --adapter=${DEVICE} --odgt | grep Temp | sed  's/.* \([0-9]*[0-9][0-9]\)\..*/\1/'`
        if [ "${TEMP}" -ne "${LASTTEMP}" ];
        then
                echo -n "Temp: ${TEMP}C "
                if [ "${TEMP}" -gt "${MAXTEMP}" ];
                then
                        echo "setting fan speed ${MAXFAN}%"
                        aticonfig --pplib-cmd "set fanspeed 0 ${MAXFAN}"
                elif [ "${TEMP} -gt ${MIDTEMP}" ];
                then
                        echo "setting fan speed ${MIDFAN}%"
                        aticonfig --pplib-cmd "set fanspeed 0 ${MIDFAN}"
                elif [ "${TEMP} -gt ${MINTEMP}" ];
                then
                        echo "setting fan speed ${MINFAN}%"
                        aticonfig --pplib-cmd "set fanspeed 0 ${MINFAN}"
                else
                        echo "setting fan speed ${IDLEFAN}%"
                        aticonfig --pplib-cmd "set fanspeed 0 ${IDLEFAN}"
                fi
        fi
        LASTTEMP=${TEMP}
        sleep 10
done


Run it like so:
Code:
# ./fanmon.sh 0 &

Adjust the temperature thresholds so the fan speed doesn't jump up and down.
Post
Topic
Board CPU/GPU Bitcoin mining hardware
Re: Ubuntu 11.04, Dual 5850 issues
by
swivel
on 08/07/2011, 09:15:01 UTC
You should have two screen sections one for each card. See my xorg.conf. Change the PCI bus ID for the second card. Mine is on PCI:3:0:0 yours is PCI:2:0:0.
Post
Topic
Board Mining support
Re: Step-By-Step guide on how setup a GPU miner w/ mining pool? Mac OS X
by
swivel
on 08/07/2011, 09:07:05 UTC
Frankly I'd recommend installing Windows using Bootcamp, overclocking your card with MSI Afterburner and then using poclbm. Gave me a much higher hashrate than using Diablominer in OS X.

It's supposedly better in 10.7 Lion.
Post
Topic
Board Mining support
Re: Step-By-Step guide on how setup a GPU miner w/ mining pool? Mac OS X
by
swivel
on 08/07/2011, 08:19:22 UTC
Here's a GUI front end to Diablo Miner for Mac if you don't want to mess with the terminal: http://forum.bitcoin.org/index.php?topic=8994.0
Post
Topic
Board Beginners & Help
Re: Only able to access first GPU
by
swivel
on 08/07/2011, 04:28:04 UTC
First adapter:

Code:
DISPLAY=:0.0 aticonfig --pplib-cmd "set fanspeed 0 80"

Second adapter:

Code:
DISPLAY=:0.1 aticonfig --pplib-cmd "set fanspeed 0 80"
Post
Topic
Board Beginners & Help
Re: Total Lack of Linux Software
by
swivel
on 08/07/2011, 04:04:26 UTC
You can overclock beyond BIOS limits using the new Catalyst 11.6 drivers without having to reflash. You can underclock memory to 300 using AMDOverdrivectrl. Not sure you gain much going below 300. There are also 3-5% gains with some of the changes to the phatk kernel. Do a search.

If you're going through the trouble of installing the latest drivers, setting up the APP SDK and compiling PyOpenCL to get your miner working why bother with a GUI when a 2 line shell script will do.
Post
Topic
Board Beginners & Help
Re: Introduce yourself :)
by
swivel
on 08/07/2011, 02:44:01 UTC
So this is where you come to pad your post count.
Post
Topic
Board Beginners & Help
Re: Only able to access first GPU
by
swivel
on 08/07/2011, 02:35:09 UTC
Try:

Code:
sudo aticonfig --initial --adapter=all -f

then reboot / restart X.
Post
Topic
Board Beginners & Help
Re: Easy/fast way to protect wallet.dat (by cyphering)
by
swivel
on 08/07/2011, 02:28:33 UTC
I use this method but with TWOFISH cipher instead of the default CAST5.

Code:
gpg -c --cipher-algo twofish wallet.dat
Post
Topic
Board Beginners & Help
Re: Need some help (easy questions)
by
swivel
on 07/07/2011, 05:34:51 UTC
Try and underclock the memory. That should drop temps. Are you running stock clocks? 168Mh/s seems low for a 5770.
Post
Topic
Board Beginners & Help
Re: further improved phatk OpenCL kernel (> 2% increase) for Phoenix - 2011-07-06
by
swivel
on 07/07/2011, 05:15:47 UTC
Nice work! Plugged in the 2011-07-06 kernel to phoenix and saw my 5850 jump from 348 Mhash/s to 354 Mhash/s.


Debian sid 64-bit
Catalyst 11.6 and AMD APP 2.4 SDK
phoenix 1.50 with VECTORS BFI_INT WORKSIZE=256 AGGRESSION=12
XFX 5850 BE 860 core 300 memory stock voltage fan speed at 55% temp at 61C