Bitcoin Forum
June 17, 2024, 10:23:10 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 [971] 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 »
19401  Alternate cryptocurrencies / Mining (Altcoins) / Re: Claymore Cryptonite (XCN) GPU Miner v1.1 on: September 08, 2014, 03:27:38 PM
GOt it working

3600khash for 270x (1100/1500)


19402  Alternate cryptocurrencies / Mining (Altcoins) / Re: Claymore Cryptonite (XCN) GPU Miner v1.1 on: September 08, 2014, 03:13:47 PM
Getting 2 errors

MSVCP100.dll is missing
Can't initialize mpir.dll
19403  Alternate cryptocurrencies / Mining (Altcoins) / Re: [BBR] Boolberry GPU Miner Discussion - AMD & Nvidia - OpenCL & CUDA on: September 06, 2014, 01:45:55 AM

Ok I tried "make" instead and it went to 40% before it froze instead of 37%

I have 2GB ram

2GB should be enough, i suspect that Persistance is not working in your setup, so instead of writing to USB everything is kept in RAM which gets it filled.

You can test it if you check that after reboot the files that you downloaded and supposed to written on USB are there after reboot.

Either way, i'll go through that procedure once again during weekend, as mbk will update boolbd fix in his repo and i bought USB 3.0, so i'll try it myself once again to see what might be the problem.

I actually got it to finally work when I added more RAM.

However I am just wondering is there anyway to make this work with a pool instead of solo mining? I tried compiling the other linux miner and got nothing but errors.
19404  Alternate cryptocurrencies / Mining (Altcoins) / Re: Claymore CryptoNote GPU Miner v6.1 on: September 05, 2014, 04:20:57 PM
Honestly with a linux miner out there the difficulty rate will sky-rocket for all these coins.

There are mega-farms that only mine using linux due to its simplicity, if there is a linux miner out there, profitability will go out the window like it did with x11/x13 coins.
19405  Alternate cryptocurrencies / Mining (Altcoins) / Re: [BBR] Boolberry GPU Miner Discussion - AMD & Nvidia - OpenCL & CUDA on: September 05, 2014, 08:06:31 AM
You probably run out of memory. issue
$ make
instead of
$ make -j 4
command.

So modify that line to look like this:
Code:
$ git clone https://github.com/mbkuperman/boolberry-opencl && cd boolberry-opencl && make

Yes, you need to select "Try Ubuntu" at every reboot.

This is tutorial only for BBR AMD GPU miner setup. No sensitive data should end up on the USB (e.g. wallet keys file) thus no encryption of the file system is necessary.

Ingredients:
- GPU mining rig. Rig doesn't need to have HDD.
- 8GB USB thumb drive
- lot of patience, installing on USB 2.0 thumb drive is painfully slow but in the end miner will work just fine

Tutorial itself:
Download amd64 Ubuntu 14.04.1 from http://www.ubuntu.com/download/desktop
Download Universal USB Installer http://www.pendrivelinux.com/downloads/Universal-USB-Installer/Universal-USB-Installer-1.9.5.5.exe
Follow instructions from http://www.ubuntu.com/download/desktop/create-a-usb-stick-on-windows to create bootable USB with Ubuntu. Make sure you put 4GB persistence file on it. If you wish to have persistence file larger than 4GB, i have no clue how to do it from Win, 4GB will be enough.
From GNU/Linux you can create larger Persistence like this:
- Make bootable USB with persistence of any size
- Mount USB and delete casper-rw file and resize partition with gparted
- Create second partition labeled "casper-rw" on USB, and format it as ext3

Both Win and GNU/Linux, open boot/grub/grub.cfg file from the first partition on USB to make sure following menuentry has "persistent" option:
Code:
menuentry "Try Ubuntu without installing" {
set gfxpayload=keep
linux /casper/vmlinuz.efi  file=/cdrom/preseed/ubuntu.seed boot=casper quiet splash persistent --
initrd /casper/initrd.lz
}
If it doesn't, add "persistent" keyword and save file.

Now restart comp and boot it from USB, choose "Try Ubuntu without installing" from grub menu. If you use GNU/Linux for the first time you can make sure that you'll not mess up anything on your HDD by e.g. pulling out power cable from HD before booting from USB (at this point you wish to have only one GPU card plugged in!).

Once Ubuntu boots test if persistence is working by opening terminal (press Ctrl+Alt+t) and issue following two commands (without $ char):
Code:
$ touch fileOnPersistance
$ sudo reboot
After reboot open terminal and:
Code:
$ ls
If you see that "fileOnPersistance" is there you are good to go.

Then:
Code:
$ rm fileOnPersistance
$ gedit initialUpdate.sh &
When gedit opens copy the following in it:
Code:
#!/bin/bash

sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) main universe multiverse"
sudo apt-get update
sudo apt-get -y install git-core build-essential cmake libboost1.55-all-dev g++ automake indicator-multiload htop autoconf vim gufw

indicator-multiload &
sudo gufw &

sudo apt-get upgrade
Save and exit. Then:
Code:
$ chmod +x initialUpdate.sh
$ ./initialUpdate.sh

At one point firewall (ufw) GUI will appear, just press ON and close it. Then you may notice indicator-multiload appeared in tray, you may wish to check Preferences of it.

Also, you can use this time to download Download AMD-APP-SDK-v2.9-lnx64.tgz from
http://developer.amd.com/tools-and-sdks/opencl-zone/amd-accelerated-parallel-processing-app-sdk/

After few hours, when initialUpdate.sh script finishes, issue commend:
Code:
$ sudo reboot
if you got new kernel. If not sure, just reboot.

When it comes back to life type:
Code:
$ sudo apt-get install fglrx-updates
to install AMD drivers. If you wish to install newest drivers see
http://wiki.cchtml.com/index.php/Ubuntu_Trusty_Installation_Guide
but it will work fine with "fglrx-updates" drivers. Either way, you'll have more than enough time to read the Ubuntu_Trusty_Installation_Guide while drivers install.

When the driver is installed, type:
Code:
$ sudo halt
and plug in all your AMD GPUs, and power on comp. When it boots press Ctrl+Alt+F1 and type in following:
Code:
$ sudo amdconfig --initial -f --adapter=all
$ sudo reboot
When it boots, you should have nice and shiny display that uses the AMD drivers. Now, in terminal:
Code:
$ cd && mkdir SDK && mv ~/Downloads/AMD-APP-SDK-v2.9-lnx64.tgz SDK && cd SDK
$ tar xvzf AMD-APP-SDK-v2.9-lnx64.tgz
$ sudo ./Install-AMD-APP.sh
$ sudo reboot
to reboot it for final time. When comes back:
Code:
$ env | grep AMDAPPSDKROOT
should return
Code:
AMDAPPSDKROOT=/opt/AMDAPP
If not than:
Code:
$ export AMDAPPSDKROOT=/opt/AMDAPP
$ cd && echo "\nexport AMDAPPSDKROOT=/opt/AMDAPP" >> .bashrc

Now, and at last:
Code:
$ git clone https://github.com/mbkuperman/boolberry-opencl && cd boolberry-opencl && make -j 4 
$ cd build/release/src
List line takes you to the directory where boolbd is, if everything went well. Now:
Code:
$ cp ../../../src/cl/*.cl .
$ ./boolbd --start-mining=<address> --mining-threads=N
where <address> is your BBR address and N is number of GPUs. This will download blockchain, but it will probably not mine with all your cards. When the blockchain is downloaded, type "exit" and hit Enter in the daemon window.
Now, in terminal:
Code:
$ cd ~/.boolb
$ gedit miner_conf.json &
$ cd -
When the editor opens change "thread_delay" to 2000, save and exit the editor. Now (you can get command from history by pressing up arrow on the keyboard):
Code:
$ ./boolbd --start-mining=<address> --mining-threads=N
should mine with all your N GPUs.

This is first version of the tutorial. When my memory on how painfully slow this installation on USB 2.0 thumb drive is fades away, i'll try to do it once more to streamline the process and find errors in the tutorial (or i'll just buy USB 3.0 thumb drive). Anyone who tries to do it for the first time please report on problems that you encounter. Also, veteran AMD miners please see if you see errors, this is my first time installing GPU miner. Tnx.






Anybody here attempt this?

I am having issues

First I keep getting the "Try Ubuntu" on every reboot.

But the major issue is that I can't compile it properly.

On step
$ git clone https://github.com/mbkuperman/boolberry-opencl && cd boolberry-opencl && make -j 4


It freezes the computer everytime on 37%


Any idea why this happens?


Ok I tried "make" instead and it went to 40% before it froze instead of 37%

I have 2GB ram
19406  Other / Archival / Re: Updated Overview of Bitcointalk Signature-Ad Campaigns on: September 04, 2014, 03:40:23 PM
Any honest campaigns right now for Senior Members?

Seems like they are all full or scams. Or very bad pay
19407  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [BBR] Boolberry: Privacy and Security - Guaranteed[Bittrex/Poloniex]GPU Released on: September 04, 2014, 03:29:36 PM
Any idea why Bittrex wallet is disabled?
19408  Alternate cryptocurrencies / Mining (Altcoins) / Re: [BBR] Boolberry GPU Miner Discussion - AMD & Nvidia - OpenCL & CUDA on: September 04, 2014, 03:18:47 PM
This is tutorial only for BBR AMD GPU miner setup. No sensitive data should end up on the USB (e.g. wallet keys file) thus no encryption of the file system is necessary.

Ingredients:
- GPU mining rig. Rig doesn't need to have HDD.
- 8GB USB thumb drive
- lot of patience, installing on USB 2.0 thumb drive is painfully slow but in the end miner will work just fine

Tutorial itself:
Download amd64 Ubuntu 14.04.1 from http://www.ubuntu.com/download/desktop
Download Universal USB Installer http://www.pendrivelinux.com/downloads/Universal-USB-Installer/Universal-USB-Installer-1.9.5.5.exe
Follow instructions from http://www.ubuntu.com/download/desktop/create-a-usb-stick-on-windows to create bootable USB with Ubuntu. Make sure you put 4GB persistence file on it. If you wish to have persistence file larger than 4GB, i have no clue how to do it from Win, 4GB will be enough.
From GNU/Linux you can create larger Persistence like this:
- Make bootable USB with persistence of any size
- Mount USB and delete casper-rw file and resize partition with gparted
- Create second partition labeled "casper-rw" on USB, and format it as ext3

Both Win and GNU/Linux, open boot/grub/grub.cfg file from the first partition on USB to make sure following menuentry has "persistent" option:
Code:
menuentry "Try Ubuntu without installing" {
set gfxpayload=keep
linux /casper/vmlinuz.efi  file=/cdrom/preseed/ubuntu.seed boot=casper quiet splash persistent --
initrd /casper/initrd.lz
}
If it doesn't, add "persistent" keyword and save file.

Now restart comp and boot it from USB, choose "Try Ubuntu without installing" from grub menu. If you use GNU/Linux for the first time you can make sure that you'll not mess up anything on your HDD by e.g. pulling out power cable from HD before booting from USB (at this point you wish to have only one GPU card plugged in!).

Once Ubuntu boots test if persistence is working by opening terminal (press Ctrl+Alt+t) and issue following two commands (without $ char):
Code:
$ touch fileOnPersistance
$ sudo reboot
After reboot open terminal and:
Code:
$ ls
If you see that "fileOnPersistance" is there you are good to go.

Then:
Code:
$ rm fileOnPersistance
$ gedit initialUpdate.sh &
When gedit opens copy the following in it:
Code:
#!/bin/bash

sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) main universe multiverse"
sudo apt-get update
sudo apt-get -y install git-core build-essential cmake libboost1.55-all-dev g++ automake indicator-multiload htop autoconf vim gufw

indicator-multiload &
sudo gufw &

sudo apt-get upgrade
Save and exit. Then:
Code:
$ chmod +x initialUpdate.sh
$ ./initialUpdate.sh

At one point firewall (ufw) GUI will appear, just press ON and close it. Then you may notice indicator-multiload appeared in tray, you may wish to check Preferences of it.

Also, you can use this time to download Download AMD-APP-SDK-v2.9-lnx64.tgz from
http://developer.amd.com/tools-and-sdks/opencl-zone/amd-accelerated-parallel-processing-app-sdk/

After few hours, when initialUpdate.sh script finishes, issue commend:
Code:
$ sudo reboot
if you got new kernel. If not sure, just reboot.

When it comes back to life type:
Code:
$ sudo apt-get install fglrx-updates
to install AMD drivers. If you wish to install newest drivers see
http://wiki.cchtml.com/index.php/Ubuntu_Trusty_Installation_Guide
but it will work fine with "fglrx-updates" drivers. Either way, you'll have more than enough time to read the Ubuntu_Trusty_Installation_Guide while drivers install.

When the driver is installed, type:
Code:
$ sudo halt
and plug in all your AMD GPUs, and power on comp. When it boots press Ctrl+Alt+F1 and type in following:
Code:
$ sudo amdconfig --initial -f --adapter=all
$ sudo reboot
When it boots, you should have nice and shiny display that uses the AMD drivers. Now, in terminal:
Code:
$ cd && mkdir SDK && mv ~/Downloads/AMD-APP-SDK-v2.9-lnx64.tgz SDK && cd SDK
$ tar xvzf AMD-APP-SDK-v2.9-lnx64.tgz
$ sudo ./Install-AMD-APP.sh
$ sudo reboot
to reboot it for final time. When comes back:
Code:
$ env | grep AMDAPPSDKROOT
should return
Code:
AMDAPPSDKROOT=/opt/AMDAPP
If not than:
Code:
$ export AMDAPPSDKROOT=/opt/AMDAPP
$ cd && echo "\nexport AMDAPPSDKROOT=/opt/AMDAPP" >> .bashrc

Now, and at last:
Code:
$ git clone https://github.com/mbkuperman/boolberry-opencl && cd boolberry-opencl && make -j 4 
$ cd build/release/src
List line takes you to the directory where boolbd is, if everything went well. Now:
Code:
$ cp ../../../src/cl/*.cl .
$ ./boolbd --start-mining=<address> --mining-threads=N
where <address> is your BBR address and N is number of GPUs. This will download blockchain, but it will probably not mine with all your cards. When the blockchain is downloaded, type "exit" and hit Enter in the daemon window.
Now, in terminal:
Code:
$ cd ~/.boolb
$ gedit miner_conf.json &
$ cd -
When the editor opens change "thread_delay" to 2000, save and exit the editor. Now (you can get command from history by pressing up arrow on the keyboard):
Code:
$ ./boolbd --start-mining=<address> --mining-threads=N
should mine with all your N GPUs.

This is first version of the tutorial. When my memory on how painfully slow this installation on USB 2.0 thumb drive is fades away, i'll try to do it once more to streamline the process and find errors in the tutorial (or i'll just buy USB 3.0 thumb drive). Anyone who tries to do it for the first time please report on problems that you encounter. Also, veteran AMD miners please see if you see errors, this is my first time installing GPU miner. Tnx.






Anybody here attempt this?

I am having issues

First I keep getting the "Try Ubuntu" on every reboot.

But the major issue is that I can't compile it properly.

On step
$ git clone https://github.com/mbkuperman/boolberry-opencl && cd boolberry-opencl && make -j 4


It freezes the computer everytime on 37%


Any idea why this happens?
19409  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [BBR] Boolberry: Privacy and Security - Guaranteed[Bittrex/Poloniex]GPU Released on: September 04, 2014, 12:06:25 AM
I downloaded the GUI but its not loading any blockchain data or letting me create a wallet
19410  Alternate cryptocurrencies / Pools (Altcoins) / Re: [XMR][JPC][TAC][MAX][GRS]Reliable DwarfPool- Anonymous, failover CA/EU/Asia on: September 03, 2014, 02:34:34 AM
So what is the current min payout for exchange-deposits?

is it 10 XMR or 1 XMR ?
19411  Economy / Speculation / Re: Wall Observer BTC/USD - Bitcoin price movement tracking & discussion on: September 02, 2014, 08:13:47 AM
Go long here!
19412  Economy / Speculation / Re: Wall Observer BTC/USD - Bitcoin price movement tracking & discussion on: September 02, 2014, 07:49:01 AM
The way you trade this is as follows.


If the offers get pulled, it was a bear trap. Most likely somebody was covering their short or buying low at these levels. The 2000 BTC walls were to scare you into selling.


If the offers get filled, then its bearish momentum. Such as what happened 3 days ago...

19413  Economy / Speculation / Re: Wall Observer BTC/USD - Bitcoin price movement tracking & discussion on: September 02, 2014, 07:43:36 AM
Huge offers appearing now on Bitfinex
19414  Alternate cryptocurrencies / Mining (Altcoins) / Re: GPU Mining profitability is a joke on: August 29, 2014, 03:39:28 AM
If you have free electricity, what would you all be mining?
19415  Economy / Speculation / Re: There's your wall staring you in the face... Still no one buys on: August 29, 2014, 01:38:09 AM
The wall is holding, its not getting pulled.
19416  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][RZR] Razor - Cutting Edge of Technology ☆[TOR]☆ [No Premine] Droid wallet on: August 22, 2014, 12:03:56 PM
I see some minor buying...
19417  Economy / Speculation / Re: Do you really believe that Bitcoin will hit 1,000,000 on: August 18, 2014, 09:38:36 PM
If it ever goes back to $600 I would be surprised
19418  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][RZR] Razor - Cutting Edge of Technology ☆[TOR]☆ [No Premine] Droid wallet on: August 16, 2014, 11:38:59 PM
I got out completely at around 60,000 Sats.

Been tryin to break that level 3 times and failed.

19419  Economy / Service Discussion / Re: 24 BTC stolen from my bitstamp account 2FA and email confirmation protected on: August 14, 2014, 12:13:52 PM
Its been 6 months and the money still hasn't moved.

Why steal money and not transfer it out? Especially when back in Feb it was worth double of what it is worth today.


19420  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][RZR] Razor - Cutting Edge of Technology ☆[TOR]☆ [No Premine] Droid wallet on: August 11, 2014, 10:23:27 PM
That's very bad thinking. If you want to think it will go back to your average you will end up holding a coin that lost 99% of its value.

I started buying this around 250K or so, and averaged down here and there. But I am getting out completely sometime this week or next when the volume dries out.

There are 100's of other coins out there.
Pages: « 1 ... 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 [971] 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!