Bitcoin Forum
May 08, 2024, 10:17:34 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Bitcoin / Mining / Re: [HowTo] Ubuntu 11.04 Desktop 32-bit mining install guide on: June 08, 2011, 11:18:13 AM
any increase from windows to linux on hashs?

I pretty much run Linux exclusively, so I cant speak from personal experience. However, I have read reports that Linux does give a few extra Mhps.
2  Bitcoin / Mining / Re: [HowTo] Ubuntu 11.04 Desktop 32-bit mining install guide on: June 08, 2011, 11:16:43 AM
Why do you recommend poclbm instead of phoenix?

I've found poclbm to give less stales and therefore better performance.
3  Bitcoin / Mining / Re: [HowTo] Ubuntu 11.04 Desktop 32-bit mining install guide on: June 08, 2011, 11:14:15 AM
First off, thank you a TON for writing this Joema. Sent a small donation your way.

This is by far the best guide from starting this stuff from scratch that I've seen.

Thank you for the great feedback and donation Smiley


Code:
1. echo export AMDAPPSDKROOT=${HOME}/AMD-APP-SDK-v2.4-lnx32/ >> ~/.bashrc
2. echo export AMDAPPSDKSAMPLESROOT=${HOME}/AMD-APP-SDK-v2.4-lnx32/ >> ~/.bashrc
3. echo 'export LD_LIBRARY_PATH=${AMDAPPSDKROOT}lib/x86:${LD_LIBRARY_PATH}' >> ~/.bashrc

where the variable AMDAPPSDKROOT doesn't get used for lines 2/3 (it just places AMDAPPSDKROOT in plain-text).

I think I found the problem. It had to do with the single quotes in line 3 that caused issues. When I get a chance I will test the new instructions.

2. If you are building a system from scratch, before installing ubuntu, make sure you have installed ALL of your graphics cards on your motherboard first. Otherwise you're going to run into some mess dealing with an xorg.conf file thing to get subsequently added cards up and running. Took my friends and I forever to figure that one out! Smiley

Thanks for this. I'll add it to the original post so it doesnt get lost.
4  Bitcoin / Mining / Re: [HowTo] Ubuntu 11.04 Desktop 32-bit mining install guide on: May 31, 2011, 08:24:33 AM
Wow awesome. How do I run the scripts?

from a terminal window run:

Code:
/bin/bash step1.sh

then after the reboot:

Code:
/bin/bash step2.sh
5  Bitcoin / Mining / Re: [HowTo] Ubuntu 11.04 Desktop 32-bit mining install guide on: May 31, 2011, 06:41:47 AM
Here are 2 scripts that complete this install as described above. They have been tested, but YMMV

step1.sh

Code:
#!/bin/bash

echo ""
echo "##### Preparing the environment for installation #####"
echo ""
sudo apt-get update -y
sudo apt-get install python-setuptools python-numpy subversion g++ libboost-all-dev libqtgui4 openntpd -y

echo ""
echo "##### Install the ATI Linux 32-bit Drivers (version 11.5) #####"
echo ""
cd ~
sudo aptitude install dkms -y
wget -c http://www2.ati.com/drivers/linux/ati-driver-installer-11-5-x86.x86_64.run
sudo sh ati-driver-installer-11-5-x86.x86_64.run --buildpkg Ubuntu/natty
sudo dpkg -i *.deb
sudo apt-get -f install
sudo aticonfig -f --initial --adapter=all
#sudo reboot
echo ""
echo ""
echo "This part of the installation is now complete. Please reboot the system before continuing."
echo ""
echo "You can accomplish this by issuing the command 'sudo reboot'"
echo ""
echo ""

step2.sh

Code:
#!/bin/bash

echo ""
echo "##### Install the AMD Stream 32-bit SDK (version 2.4) #####"
echo ""
cd ~
wget -c http://download2-developer.amd.com/amd/APPSDK/AMD-APP-SDK-v2.4-lnx32.tgz
tar xvzf AMD-APP-SDK-v2.4-lnx32.tgz
echo export AMDAPPSDKROOT=${HOME}/AMD-APP-SDK-v2.4-lnx32/ >> ~/.bashrc
echo export AMDAPPSDKSAMPLESROOT=${HOME}/AMD-APP-SDK-v2.4-lnx32/ >> ~/.bashrc
echo export LD_LIBRARY_PATH=${AMDAPPSDKROOT}lib/x86:${LD_LIBRARY_PATH} >> ~/.bashrc
source ~/.bashrc
sudo tar xvfz $AMDAPPSDKROOT/icd-registration.tgz -C /

echo ""
echo "##### Install pyopencl (0.92) #####"
echo ""
cd ~
wget -c http://pypi.python.org/packages/source/p/pyopencl/pyopencl-0.92.tar.gz
tar xzvf pyopencl-0.92.tar.gz
cd pyopencl-0.92
./configure.py --cl-inc-dir=${AMDAPPSDKROOT}include/ --cl-lib-dir=${AMDAPPSDKROOT}lib/x86/
make
sudo make install

echo ""
echo "##### Install python-jsonrpc #####"
echo ""
cd ~
svn checkout http://svn.json-rpc.org/trunk/python-jsonrpc
cd python-jsonrpc/
sudo python setup.py install

echo ""
echo "##### poclbm (recommended) #####"
echo ""
cd ~
sudo apt-get install git-core -y
git clone git://github.com/m0mchil/poclbm poclbm
chmod +x poclbm/poclbm.py

Found this useful, please consider a donation 1GGFpiLb9TVUGHK2qdd1xDbp8RwtBkaHDM
6  Bitcoin / Mining / Re: [HowTo] Ubuntu 11.04 Desktop 32-bit mining install guide on: May 31, 2011, 05:46:44 AM
Hi, is it possible to do all in one boot? Or do you have to reboot? I'm trying to get this to run as a script. I might be building 2 more rigs and I've never run Linux nor wrote scripts before -.-

I've never tried doing it without a reboot.

One thing I don't like about scripts is that if there is an error the screen may whizz-by too fast which could leave you with a machine that doesnt want to boot or you with less hair from trying to figure out why something isnt working the way it should. In any case, you should be able to just copy/paste the large majority of the instructions.
7  Bitcoin / Mining / Re: [HowTo] Ubuntu 11.04 Desktop 32-bit mining install guide on: May 31, 2011, 05:40:07 AM
This worked for me!  Mining at full hasrates on t 5850's

I had a sneaking suspicion it would Smiley

I have a questions.  When we installed AMD Stream, did the commands actually install that in the home dir of the current user?

Yip, AMD stream is installed to the users home dir. This wont be a problem for single user systems, which I assumed would the vast majority.
8  Bitcoin / Mining / [HowTo] Ubuntu 11.04 Desktop 32-bit mining install guide on: May 30, 2011, 06:12:57 AM
To start GPU Bitcoin mining the following steps need to be completed:

Preparing the environment for installation.
Install the ATI Linux 32-bit Drivers (version 11.5)
Install the AMD Stream 32-bit SDK (version 2.4)
Install pyopencl (0.92)
Install python-jsonrpc

Install a Bitcoin client:
   - poclbm (recommended)
   - phoenix (version 1.48)


## Preparing the environment for installation.

A default installation of Ubuntu 11.04 32-bit is recommended.

Once installation is successful, and the system has been rebooted by the installer, login in and open a terminal window (Applications -> Accessories -> Terminal). Type or copy/paste the following:

Code:
cd ~
sudo apt-get update
sudo apt-get install python-setuptools python-numpy subversion g++ libboost-all-dev libqtgui4 openntpd

## Installing the ATI Linux 32-bit Drivers (version 11.5)

Code:
cd ~
sudo aptitude install dkms
wget http://www2.ati.com/drivers/linux/ati-driver-installer-11-5-x86.x86_64.run
sudo sh ati-driver-installer-11-5-x86.x86_64.run --buildpkg Ubuntu/natty
sudo dpkg -i *.deb
sudo apt-get -f install
sudo aticonfig -f --initial --adapter=all
sudo reboot

After the system has rebooted, login in and open a terminal window (Applications -> Accessories -> Terminal). Type or copy/paste the following:

## Verify installation of ATI drivers

Code:
cd ~
DISPLAY=:0 sudo fglrxinfo

## Installing the AMD Stream 32-bit SDK (version 2.4)

Code:
cd ~
wget http://download2-developer.amd.com/amd/APPSDK/AMD-APP-SDK-v2.4-lnx32.tgz
tar xvzf AMD-APP-SDK-v2.4-lnx32.tgz
echo export AMDAPPSDKROOT=${HOME}/AMD-APP-SDK-v2.4-lnx32/ >> ~/.bashrc
echo export AMDAPPSDKSAMPLESROOT=${HOME}/AMD-APP-SDK-v2.4-lnx32/ >> ~/.bashrc
echo export LD_LIBRARY_PATH=${AMDAPPSDKROOT}lib/x86:${LD_LIBRARY_PATH} >> ~/.bashrc
source ~/.bashrc
sudo tar xvfz $AMDAPPSDKROOT/icd-registration.tgz -C /

## Verify installation of OpenCL

Code:
cd ~/AMD-APP-SDK-v2.4-lnx32/bin/x86
./clinfo

## Installing pyopencl-0.92

Code:
cd ~
wget http://pypi.python.org/packages/source/p/pyopencl/pyopencl-0.92.tar.gz
tar xzvf pyopencl-0.92.tar.gz
cd pyopencl-0.92
./configure.py --cl-inc-dir=${AMDAPPSDKROOT}include/ --cl-lib-dir=${AMDAPPSDKROOT}lib/x86/
make
sudo make install

## Installing python-jsonrpc

Code:
cd ~
svn checkout http://svn.json-rpc.org/trunk/python-jsonrpc
cd python-jsonrpc/
sudo python setup.py install

## Installing a Bitcoin client (pick one of the following):

## Installing poclbm (recommended)

Code:
cd ~
sudo apt-get install git-core
git clone git://github.com/m0mchil/poclbm poclbm
chmod +x poclbm/poclbm.py

## Verify poclbm is installed correctly

Code:
cd ~
chmod +x poclbm/poclbm.py
cd poclbm/
./poclbm.py

You should see you GPU and CPU listed here, i.e.

Code:
[0] Juniper << --- your GPU
[1] Intel(R) Core(TM)2 Duo CPU E6750 @ 2.66GHz << --- your CPU

Note: The number in square brackets ([]) is the device id.

To start mining with poclbm (in a pool), you can try these settings:

Code:
./poclbm.py -d<device id> --host=<pool server> --port=<pool port> --user=<pool username> --pass=<pool password> -v -w128 -f 1

## Installing phoenix (version 1.48)
Code:
cd ~
wget http://svn3.xp-dev.com/svn/phoenix-miner/files/phoenix-1.48.tar.bz2
tar -jxvf phoenix*.bz2
chmod +x phoenix-1.48/phoenix.py

To start mining with phoenix (in a pool), you can try these settings:

Code:
phoenix-1.48/phoenix.py -u http://<pool username>:<pool password>@<pool server>:<pool port> -q 5 -k phatk VECTORS BFI_INT FASTLOOP AGGRESSION=4 DEVICE=<device id> WORKSIZE=128
------

Some gotchas:

2. If you are building a system from scratch, before installing ubuntu, make sure you have installed ALL of your graphics cards on your motherboard first. Otherwise you're going to run into some mess dealing with an xorg.conf file thing to get subsequently added cards up and running. Took my friends and I forever to figure that one out! Smiley


If you made us of this guide please send a donation to 1GGFpiLb9TVUGHK2qdd1xDbp8RwtBkaHDM
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!