Pages:
Author

Topic: [HowTo] Ubuntu 11.04 Desktop 32-bit mining install guide (Read 14707 times)

full member
Activity: 177
Merit: 101
Seems these scripts does not work anymore. Ubuntu does not have aptitude and driver installation fails :-(
newbie
Activity: 12
Merit: 0
is there any advantage to running 64bit for mining?
full member
Activity: 196
Merit: 100
Web Dev, Db Admin, Computer Technician
In the section:

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

Code:
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

Does this build the 11.5 driver or does it build the driver of the card for the system it's built on?
I built this on a system I don't intend it for, that has an x1950. It used an AMD 8.861 to build, ??fglrx_8.861??.deb. Was planning on just copying the .deb over to the other system.
sr. member
Activity: 266
Merit: 250
The king and the pawn go in the same box @ endgame
edit:

## Installing python-jsonrpc

Code:

cd ~
svn checkout http://svn.json-rpc.org/trunk/python-jsonrpc
cd python-jsonrpc/
sudo python setup.py install
 
An error is thrown when trying to connect to the url. upon manually checking the url in browser, confirmed that link is dead. I am going to try installing from the instructions at this url and let every one know the results.

http://json-rpc.org/wiki/python-json-rpc
newbie
Activity: 8
Merit: 0
Great guide. helped a ton.

I had 1 problem at the end when trying to run phoenix. I kept getting

Traceback (most recent call last):
  File "./phoenix.py", line 123, in
    miner.start(options)
  File "/home/shelbydz/phoenix-1.48/Miner.py", line 75, in start
    self.kernel = self.options.makeKernel(KernelInterface(self))
  File "./phoenix.py", line 111, in makeKernel
    kernelModule = imp.load_module(module, file, filename, smt)
  File "kernels/phatk/__init__.py", line 23, in
    import pyopencl as cl
  File "/usr/local/lib/python2.7/dist-packages/pyopencl-0.92-py2.7-linux-i686.egg/pyopencl/__init__.py", line 3, in
    import pyopencl._cl as _cl
ImportError: libOpenCL.so.1: cannot open shared object file: No such file or directory

Everything built fine and installed fine. Doing research, it SEEMs that phoenix cannot find my SDK Library (which is exactly what is entered above). Any thoughts? I spent all night on this? I was able to get poclbm running (and at the same hash rate as before, so I'm pleased for now).

thanks for the great guide and the help.
newbie
Activity: 45
Merit: 0
has anyone had experience running poclbm-mod? https://en.bitcoin.it/wiki/Poclbm-mod - and if so, does anyone know if it works with any pool?
newbie
Activity: 8
Merit: 0
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.
newbie
Activity: 8
Merit: 0
Why do you recommend poclbm instead of phoenix?

I've found poclbm to give less stales and therefore better performance.
newbie
Activity: 8
Merit: 0
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.
sr. member
Activity: 262
Merit: 250
Dubs Get
any increase from windows to linux on hashs?
newbie
Activity: 7
Merit: 0
Why do you recommend poclbm instead of phoenix?
newbie
Activity: 45
Merit: 0
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.

I want to add some notes, pseudo-corrections however.

1. Not being super well versed in linux, we found the following lines problematic:

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).

Your bashrc file should actually look like this: http://dl.dropbox.com/u/77754/bashrc (where "boss" is your user name).

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


newbie
Activity: 8
Merit: 0
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
member
Activity: 112
Merit: 100
"I'm not psychic; I'm just damn good"
Wow awesome. How do I run the scripts?
newbie
Activity: 8
Merit: 0
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
member
Activity: 112
Merit: 100
"I'm not psychic; I'm just damn good"
Yea I see that the it's 32-bit install working too. I see that the two have vastly different commands. Why is that?

Anyway how do I write a script and run ? I'd like to try doing it
newbie
Activity: 8
Merit: 0
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.
newbie
Activity: 8
Merit: 0
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.
member
Activity: 112
Merit: 100
"I'm not psychic; I'm just damn good"
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 -.-
sr. member
Activity: 291
Merit: 250
This worked for me!  Mining at full hasrates on t 5850's

I have a questions.  When we installed AMD Stream, did the commands actually install that in the home dir of the current user?
Quote
## Installing the AMD Stream 32-bit SDK (version 2.4)
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 /

I am just a little confused at the tar locations and the exports I guess.
Pages:
Jump to: