Bitcoin Forum
June 17, 2024, 07:43:08 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 [149] 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 ... 486 »
  Print  
Author Topic: [BBR] Boolberry: Privacy and Security - Guaranteed Since 2014  (Read 1210694 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
sonoIO
Full Member
***
Offline Offline

Activity: 209
Merit: 100


View Profile
August 09, 2014, 01:30:01 PM
Last edit: August 09, 2014, 01:49:13 PM by sonoIO
 #2961

guys this thread is a mess.

PLEASE EXPLAIN ME CLEARLY

1. how to GPU mine
2. how to GPU solo mine
3. how to GPU mine a pool

im on AMD 280x and please do not send me to OP. its too messy i REALLY cant fidn anything and want to mine this Sad

I just got my hands on two AMD cards, and i'll write tutorial on how to rig up miner running GNU/Linux from USB. It will be finished today but don't know when exactly, as soon as i figure it out myself - i never mined with GPUs Smiley AMD drivers installation part is mystery to me as never done that either Cheesy

In the meantime you can put e.g Ubuntu on your 8GB (or larger) thumb drive:
http://www.ubuntu.com/download/desktop/create-a-usb-stick-on-windows

Make sure to set up Persistent file, 4GB should be enough for BBR miner rig for 1y or something.

When you are done boot into Ubuntu from USB, and to test that Persistence works - open terminal (Ctrl+Alt+t) and input following two commands:

Code:
$ touch fileOnPersistance
$ sudo reboot
and if file "fileOnPersistance" is there after reboot Persistence works.

Then:
Code:
$ sudo update
$ sudo upgrade
$ sudo reboot                               #if in upgrade new kernel is installed
to upgrade your OS. By running mining rig from USB, when you need your comp for other use just boot it from HD. Rest of tutorial is comming in a while

EDIT: If you are playing with GNU/Linux for the first time, you can make sure that you'll not mess up anything on your HD by e.g. pulling out power cable from HD before booting from USB
hamiltino
Hero Member
*****
Offline Offline

Activity: 644
Merit: 500


P2P The Planet!


View Profile
August 09, 2014, 01:30:49 PM
 #2962

You  used this version I gave, not the included ./qt-boolb.sh ?
the path echoed upon running the script should be the current directory

Yes i created a new shell script, both of the echos, printed my current directory.

stacking coin
Anotheranonlol
Hero Member
*****
Offline Offline

Activity: 588
Merit: 504


View Profile
August 09, 2014, 01:33:38 PM
 #2963

You  used this version I gave, not the included ./qt-boolb.sh ?
the path echoed upon running the script should be the current directory

Yes i created a new shell script, both of the echos, printed my current directory.

ok, now copy the files from /libs folder into same directory as the shell script, boolbd etc, then run the ./qt-boolb.sh again. should fix it.

hamiltino
Hero Member
*****
Offline Offline

Activity: 644
Merit: 500


P2P The Planet!


View Profile
August 09, 2014, 01:35:33 PM
 #2964

You  used this version I gave, not the included ./qt-boolb.sh ?
the path echoed upon running the script should be the current directory

Yes i created a new shell script, both of the echos, printed my current directory.

ok, now copy the files from /libs folder into same directory as the shell script, boolbd etc, then run the ./qt-boolb.sh again. should fix it.

the libs folder is already in the same directory as the shell script.

stacking coin
Anotheranonlol
Hero Member
*****
Offline Offline

Activity: 588
Merit: 504


View Profile
August 09, 2014, 01:41:09 PM
 #2965

You  used this version I gave, not the included ./qt-boolb.sh ?
the path echoed upon running the script should be the current directory

Yes i created a new shell script, both of the echos, printed my current directory.

ok, now copy the files from /libs folder into same directory as the shell script, boolbd etc, then run the ./qt-boolb.sh again. should fix it.

the libs folder is already in the same directory as the shell script.

No, copy the files within the folder to the same directory as the script. (no separate /libs folder) It's not the proper way to do it, but it works.

hamiltino
Hero Member
*****
Offline Offline

Activity: 644
Merit: 500


P2P The Planet!


View Profile
August 09, 2014, 01:43:06 PM
 #2966

You  used this version I gave, not the included ./qt-boolb.sh ?
the path echoed upon running the script should be the current directory

Yes i created a new shell script, both of the echos, printed my current directory.

ok, now copy the files from /libs folder into same directory as the shell script, boolbd etc, then run the ./qt-boolb.sh again. should fix it.

the libs folder is already in the same directory as the shell script.

No, copy the files within the folder to the same directory as the script. (no separate /libs folder) It's not the proper way to do it, but it works.

Ahh it works thank you!!!!  Grin

stacking coin
Anotheranonlol
Hero Member
*****
Offline Offline

Activity: 588
Merit: 504


View Profile
August 09, 2014, 01:51:17 PM
 #2967

Ahh it works thank you!!!!  Grin

No problem. I think below script should work without copying /libs file to same folder actually, not that it makes big difference

Code:
#!/bin/sh

LD_LIBRARY_PATH=$(pwd)
LD_LIBRARY_PATH="$LD_LIBRARY_PATH/libs"
export LD_LIBRARY_PATH
export QT_PLUGIN_PATH="$LD_LIBRARY_PATH"

./qt-boolb

hamiltino
Hero Member
*****
Offline Offline

Activity: 644
Merit: 500


P2P The Planet!


View Profile
August 09, 2014, 02:03:07 PM
 #2968

Ahh it works thank you!!!!  Grin

No problem. I think below script should work without copying /libs file to same folder actually, not that it makes big difference

Code:
#!/bin/sh

LD_LIBRARY_PATH=$(pwd)
LD_LIBRARY_PATH="$LD_LIBRARY_PATH/libs"
export LD_LIBRARY_PATH
export QT_PLUGIN_PATH="$LD_LIBRARY_PATH"

./qt-boolb

They should add this script to the binaries folder.

stacking coin
forzendiablo
Legendary
*
Offline Offline

Activity: 1526
Merit: 1000


the grandpa of cryptos


View Profile
August 09, 2014, 03:36:50 PM
 #2969

im on windows Smiley

yolo
sonoIO
Full Member
***
Offline Offline

Activity: 209
Merit: 100


View Profile
August 09, 2014, 06:10:14 PM
Last edit: August 09, 2014, 06:34:07 PM by sonoIO
 #2970

im on windows Smiley

Add 8GB USB thumb drive into the equation and you'll be fine  Wink
I'm making detailed tutorial so it is not finished yet. You can put your first GNU/Linux on a USB before i finish it  Smiley Yust follow http://www.ubuntu.com/download/desktop/create-a-usb-stick-on-windows and download OS from e.g. http://www.ubuntu.com/download/desktop

Note that it will be tutorial only for miner setup, so no sensitive data will be on the USB thus no encryption of the file system is necessary
btc-mike
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1001



View Profile
August 10, 2014, 03:43:55 AM
 #2971

im on windows Smiley

Add 8GB USB thumb drive into the equation and you'll be fine  Wink
I'm making detailed tutorial so it is not finished yet. You can put your first GNU/Linux on a USB before i finish it  Smiley Yust follow http://www.ubuntu.com/download/desktop/create-a-usb-stick-on-windows and download OS from e.g. http://www.ubuntu.com/download/desktop

Note that it will be tutorial only for miner setup, so no sensitive data will be on the USB thus no encryption of the file system is necessary


Did the PiMP guys get something working yet? There was someone asking for help a few weeks ago but he only posted once.
jd1959
Hero Member
*****
Offline Offline

Activity: 529
Merit: 505


I'm on drugs, what's your excuse?


View Profile
August 10, 2014, 05:31:41 AM
 #2972

To continue the growth of Boolberry, we have now listed it on https://www.alt2bit.com - We look forward to its success.



Nice looking home page.......but who where are you?

no info just register......so more info please before i think of trading there

Jon

          dICO Disguised Instant Cash Out
dboylc
Full Member
***
Offline Offline

Activity: 153
Merit: 100

mine for future~


View Profile
August 10, 2014, 03:56:06 PM
 #2973

guys this thread is a mess.

PLEASE EXPLAIN ME CLEARLY

1. how to GPU mine
2. how to GPU solo mine
3. how to GPU mine a pool

im on AMD 280x and please do not send me to OP. its too messy i REALLY cant fidn anything and want to mine this Sad

Hello forzendiablo!

I'm really sorry that we still don't have a clear manual for all these things.
At this moment Mike is working on FAQ and i hope it will be finished ASAP.

At this moment i could say:
1. We have GPU miner released from mbk: https://github.com/mbkuperman/boolberry-opencl
it's okay for solomining and also could works for pool mining with simpleminer. see instructions there.

2. we also have CUDA miner released by Wolf, most fast miner that we have, pool miner:
https://github.com/wolf9466/bbr-cudaminer
As i know Wolf don't have windows builds yet.

Are you looking for windows binaries or sources is okay?












---Seems it's hard to build windows version from CUDA code. Let's wait for Wolf0's opensource opencl pool miner~~
hyeoam
Full Member
***
Offline Offline

Activity: 182
Merit: 100


View Profile
August 10, 2014, 03:59:27 PM
 #2974

Charts here: http://crypto-prices.com/BBR

Donate BTC: 1NRG17fYCNcfQvQHC3G9TUAowNKsM4oTWA
dboylc
Full Member
***
Offline Offline

Activity: 153
Merit: 100

mine for future~


View Profile
August 10, 2014, 04:01:13 PM
 #2975

im on windows Smiley

Add 8GB USB thumb drive into the equation and you'll be fine  Wink
I'm making detailed tutorial so it is not finished yet. You can put your first GNU/Linux on a USB before i finish it  Smiley Yust follow http://www.ubuntu.com/download/desktop/create-a-usb-stick-on-windows and download OS from e.g. http://www.ubuntu.com/download/desktop

Note that it will be tutorial only for miner setup, so no sensitive data will be on the USB thus no encryption of the file system is necessary


Did the PiMP guys get something working yet? There was someone asking for help a few weeks ago but he only posted once.

~~haha,
I made this ubuntu14.04 usb stick, it only works on my H61-PRO-BTC motherboard.
and for another Hi-Fi-H61, can't boot from USB device.
So today I brought a asus dvdrw and burned the ubuntu install cd, it works well.
sonoIO
Full Member
***
Offline Offline

Activity: 209
Merit: 100


View Profile
August 10, 2014, 05:32:33 PM
 #2976

im on windows Smiley

You may wish to set up your first mining rig bootable from USB. See this post
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.
.....

Cheers
sonoIO
Full Member
***
Offline Offline

Activity: 209
Merit: 100


View Profile
August 10, 2014, 05:41:55 PM
 #2977

im on windows Smiley

Add 8GB USB thumb drive into the equation and you'll be fine  Wink
I'm making detailed tutorial so it is not finished yet. You can put your first GNU/Linux on a USB before i finish it  Smiley Yust follow http://www.ubuntu.com/download/desktop/create-a-usb-stick-on-windows and download OS from e.g. http://www.ubuntu.com/download/desktop

Note that it will be tutorial only for miner setup, so no sensitive data will be on the USB thus no encryption of the file system is necessary


Did the PiMP guys get something working yet? There was someone asking for help a few weeks ago but he only posted once.

~~haha,
I made this ubuntu14.04 usb stick, it only works on my H61-PRO-BTC motherboard.
and for another Hi-Fi-H61, can't boot from USB device.
So today I brought a asus dvdrw and burned the ubuntu install cd, it works well.


New (UEFI) Asus boards may give pain in the back when one tries to boot from USB, other should work fine
maxcan
Member
**
Offline Offline

Activity: 117
Merit: 100


View Profile
August 11, 2014, 06:50:51 AM
 #2978

any news mr. zoidberg?
crypto_zoidberg (OP)
Hero Member
*****
Offline Offline

Activity: 976
Merit: 646



View Profile WWW
August 11, 2014, 09:52:36 AM
 #2979

any news mr. zoidberg?

Hi maxcan!
I'm working on GUI, you could track progress in this branch: https://github.com/cryptozoidberg/boolberry/commits/wallet_history
Wolf', Clintar, Otila - doing great job on pool - cpuminer improvements.

New version release expected roughly at friday.



forzendiablo
Legendary
*
Offline Offline

Activity: 1526
Merit: 1000


the grandpa of cryptos


View Profile
August 11, 2014, 12:56:47 PM
 #2980

guys what a mess.\\I WAS ABLE TO SOLO MINE WITH AMD GPU BEOFRE.

ive lost the file + right .bat\\now nobod yhere can say hwo ot solo mien with GPU even devs lol.

is thts a joke? ;x

yolo
Pages: « 1 ... 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 [149] 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 ... 486 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!