Bitcoin Forum
June 25, 2024, 11:42:27 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] CryptoSwitcher - Automatically mine the best coin. on: February 03, 2014, 11:58:15 PM
Ola all.

I got CryptoSwitcher running over the weekend on a test machine. Is there a simple way to add Dogecoin (which seems the most profitable atm)?

He3
2  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner - a new litecoin mining application [Windows/Linux] on: January 31, 2014, 04:54:30 AM
Hi all

I'm new to mining but had a go setting up a linux box with CUDAminer today. I tested with a GTX470 but plan to upgrade to a GTX780Ti (or two Smiley ) if it all goes well. Getting a fresh linux box up and going was a little tricky so I jotted down instructions. Christian may want to includes these as a doc on github or add them to the first post.

Using this command line I get about 165kh/s:
 
Code:
./cudaminer --benchmark -H0 -d 0 -i 0 -C 1 -l F28x10

Enjoy
Helium3
--

Code:
Install Xubuntu 13.10 (it's the same as Ubuntu but uses Xfce window manager) - http://xubuntu.org/

[Install base packages - open a terminal window from X]
sudo apt-get install openssh-server
sudo apt-get install vim
sudo apt-get install screen

[Download latest NVIDIA driver from nvidia.com - get the .run file]

[Optional: ssh into box - failing that, press CTRL-ALT-F1 to switch to a terminal window from X]

sudo service lightdm stop
sudo ./NVIDIA-Linux-x86_64-331.38.run  [[change for current driver version]]

sudo vim /etc/modprobe.d/nvidia-graphics-drivers.conf

[Populate the following file with following information: ]
# Ensure the manual driver and kernel module is used
blacklist nouveau
blacklist lbm-nouveau
blacklist nvidia-173
blacklist nvidia-96
blacklist nvidia-current
blacklist nvidia-173-updates
blacklist nvidia-96-updates
alias nvidia nvidia_current_updates
alias nouveau off
alias lbm-nouveau off


[Recreate the initrd file: ]
sudo update-initramfs -u
[Reboot ]
sudo shutdown -r now

[Check you're running the right driver. Once booted into X, from a terminal run:
nvidia-settings
(or from a pure command shell "nvidia-settings --version")

[Get the CUDA toolkit from the developer.nvidia.com website]
mkdir cuda-extract
./cuda_5.5.22_linux_64.run --extract=~/cuda-extract/
cd cuda-extract
sudo sh ./cuda-linux64-rel-5.5.22-16488124.run

sudo vim /etc/ld.so.conf.d/cuda_settings.conf
[Add these two lines: ]
/usr/local/cuda-5.5/lib64
/usr/local/cuda-5.5/lib

[Rebuild the library data config]
sudo ldconfig

[Add the CUDA bin directory to your path]
echo PATH="$PATH:/usr/local/cuda-5.5/bin" >> ~/.profile


[Install all the various bits you'll need to build CUDAminer]
sudo apt-get install automake
sudo apt-get install curl
sudo apt-get install libcurl3
sudo apt-get install libcurl3:i386
sudo apt-get install libcurl3-gnutls-dev
sudo apt-get install gcc
sudo apt-get install g++
[NOTE: If you install Xubuntu 32bit, you can skip the libcurl3:i386. ]
[NOTE: If you install Xubuntu 64bit, you might also need libc6:i386 & libc++6:i386 but I don't think so]


[Grab Cudaminer from github via git or get the zip and unzip it. Then cd into the root Cudaminer dir]
./autogen.sh
./configure
make

[All of the above should hopefully work]
./cudaminer --help
./cudaminer --benchmark


[*** Optional, disable X from running at start-up ***]
sudo vim /etc/default/grub
[look for this line: ]
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
[change it to: ]
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash text"
[save and exit, then update grub ]
sudo update-grub
sudo shutdown -r now
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!