Bitcoin Forum
January 13, 2026, 03:49:05 PM *
News: Latest Bitcoin Core release: 30.2 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 [259] 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 ... 1128 »
  Print  
Author Topic: Obyte: Totally new consensus algorithm + private untraceable payments  (Read 1236231 times)
CryptInvest
Legendary
*
Offline Offline

Activity: 2156
Merit: 1132


View Profile
February 20, 2017, 11:43:19 AM
 #5161

I can not find in application folder
conf.json to change client from full to lite.

Where is the configuration file can be found in Windows XP

When you say application folder, do you mean %LOCALAPPDATA%\byteball? That's where you should try looking. Having said that, you can not change a client from full to light and vice-versa. You have to reinstall and chose light.

When I tried to reinstall...
I've got error:



System: Windows XP 64 bit.

I can provide the necessary logs.
kaicrypzen
Hero Member
*****
Offline Offline

Activity: 1459
Merit: 656


View Profile
February 20, 2017, 01:24:42 PM
 #5162

I can not find in application folder
conf.json to change client from full to lite.

Where is the configuration file can be found in Windows XP

When you say application folder, do you mean %LOCALAPPDATA%\byteball? That's where you should try looking. Having said that, you can not change a client from full to light and vice-versa. You have to reinstall and chose light.

When I tried to reinstall...
I've got error:



System: Windows XP 64 bit.

I can provide the necessary logs.

If you had a full node before, then if you reinstall directly, it will not work with the current content of your %LOCALAPPDATA%\byteball folder (full and light do not have the same databases). You should transfer your funds to another device, uninstall the app (potentially remove %LOCALAPPDATA%\byteball manually if the uninstallation leaves it) and then install and chose light and finally move back your funds. As far as I know, that's the only way. If you do that, keep a copy of %LOCALAPPDATA%\byteball and your seed just in case.
zuqka
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile
February 20, 2017, 04:00:19 PM
 #5163

My first byteball-hub running on raspberry pi Grin

https://zuqka.asuscomm.com/bb

cool, but i tried to open the page: Upgrade Required.

did you follow these steps? https://www.gitlab.com/snippets/1548253

or could you please explain me what you had to do. thank you.
Hi Vlom,
When you get the message "Upgrade required" then you know for sure that the hub is set right and running, see the https://byteball.org/bb.
The link is to be added on wallet, under hub. The default is byteball.org/bb
I did follow the guide from portabella mostly but checked on other articles as well on how to install nodejs on raspberry since it's very important to install it right: http://thisdavej.com/upgrading-to-more-recent-versions-of-node-js-on-the-raspberry-pi/

$ sudo apt install nodejs
$ curl -sL https://deb.nodesource.com/setup_7.x | sudo -E bash -
$ sudo apt install nodejs
$ node -v
v7.5.0
$ apt-get install node-sqlite3 git logrotate
$ git clone https://github.com/byteball/byteball-hub.git
$ cd ~/byteball-hub
$ npm install
$ nano conf.js
Edit the fields, add you domain and change from false to true for hub:

exports.port = 6611;
//exports.myUrl = 'wss://mydomain.com/bb';
exports.bServeAsHub = false;


$ node start.js

Please follow this guide for letsencrypt: https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-ubuntu-16-04
and tonych's guide of course: https://github.com/byteball/byteballcore


nxt: NXT-2V7G-C8BY-KTYY-CAHNU * btc: 19UcQHepGvXb2fDcAMBJo1a3iduqBNXaGw * byte: XJBP46RQ7OZ6KKY4IXKL73VQBDKRIYJ4
tonych (OP)
Legendary
*
Offline Offline

Activity: 986
Merit: 1036


View Profile WWW
February 20, 2017, 04:03:32 PM
 #5164

I can not find in application folder
conf.json to change client from full to lite.

Where is the configuration file can be found in Windows XP

When you say application folder, do you mean %LOCALAPPDATA%\byteball? That's where you should try looking. Having said that, you can not change a client from full to light and vice-versa. You have to reinstall and chose light.

When I tried to reinstall...
I've got error:



System: Windows XP 64 bit.

I can provide the necessary logs.

XP is not supported, 7 is minimum.

Simplicity is beauty
vlom
Legendary
*
Offline Offline

Activity: 1498
Merit: 1117


View Profile
February 20, 2017, 06:24:55 PM
 #5165

My first byteball-hub running on raspberry pi Grin

https://zuqka.asuscomm.com/bb

cool, but i tried to open the page: Upgrade Required.

did you follow these steps? https://www.gitlab.com/snippets/1548253

or could you please explain me what you had to do. thank you.
Hi Vlom,
When you get the message "Upgrade required" then you know for sure that the hub is set right and running, see the https://byteball.org/bb.
The link is to be added on wallet, under hub. The default is byteball.org/bb
I did follow the guide from portabella mostly but checked on other articles as well on how to install nodejs on raspberry since it's very important to install it right: http://thisdavej.com/upgrading-to-more-recent-versions-of-node-js-on-the-raspberry-pi/

$ sudo apt install nodejs
$ curl -sL https://deb.nodesource.com/setup_7.x | sudo -E bash -
$ sudo apt install nodejs
$ node -v
v7.5.0
$ apt-get install node-sqlite3 git logrotate
$ git clone https://github.com/byteball/byteball-hub.git
$ cd ~/byteball-hub
$ npm install
$ nano conf.js
Edit the fields, add you domain and change from false to true for hub:

exports.port = 6611;
//exports.myUrl = 'wss://mydomain.com/bb';
exports.bServeAsHub = false;


$ node start.js

Please follow this guide for letsencrypt: https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-ubuntu-16-04
and tonych's guide of course: https://github.com/byteball/byteballcore



wow, thank you very much. i finally manage to install a suitable version of nodejs: v7.5.0.
now i have to check out the rest. and i hope that this won't bring troubles concerning my owncloud installation.
dreamhouse
Hero Member
*****
Offline Offline

Activity: 1073
Merit: 666



View Profile
February 20, 2017, 06:47:34 PM
 #5166

price doing down... guess people are dumping
escapefrom3dom
Sr. Member
****
Offline Offline

Activity: 1946
Merit: 288



View Profile
February 20, 2017, 07:33:03 PM
 #5167

price going down... guess people are dumping

and then going up → again down → ...

it's called volatility.  Cool

HomoHenning
Hero Member
*****
Offline Offline

Activity: 784
Merit: 500



View Profile
February 20, 2017, 09:41:42 PM
 #5168

where can I trade blackbytes??
escapefrom3dom
Sr. Member
****
Offline Offline

Activity: 1946
Merit: 288



View Profile
February 20, 2017, 09:43:38 PM
 #5169

where can I trade blackbytes??

https://byteball.slack.com/messages/trading_blackbyte/

nillohit
Full Member
***
Offline Offline

Activity: 154
Merit: 100

***crypto trader***


View Profile
February 20, 2017, 09:43:44 PM
 #5170

where can I trade blackbytes??
currently only OTC trading. Go to https://byteball.slack.com/messages/trading_blackbyte/

П    |⧛ ☛  Join the signature campaign and earn free PI daily!  ✅ |⧛    П
|⧛         ☛  PiCoin - get in now  ✅     ☛ No ICO!  ✅          |⧛
yassin54
Legendary
*
Offline Offline

Activity: 1540
Merit: 1000


View Profile
February 20, 2017, 10:45:02 PM
 #5171

Dont forget use escrow!! Wink
galaxiekyl
Legendary
*
Offline Offline

Activity: 2002
Merit: 1113



View Profile
February 21, 2017, 01:41:08 AM
 #5172

I can not find in application folder
conf.json to change client from full to lite.

Where is the configuration file can be found in Windows XP

When you say application folder, do you mean %LOCALAPPDATA%\byteball? That's where you should try looking. Having said that, you can not change a client from full to light and vice-versa. You have to reinstall and chose light.

When I tried to reinstall...
I've got error:



System: Windows XP 64 bit.

I can provide the necessary logs.

XP is not supported, 7 is minimum.

i run on vista..it work.
ArabMist
Member
**
Offline Offline

Activity: 107
Merit: 10


View Profile
February 21, 2017, 04:57:18 AM
 #5173

price doing down... guess people are dumping

We'll see less and less trading as the bitcoin price goes up. It should make the GB price drop considerably so prepare for some sweet, sweet bytes to come at a cheap price.

Tipping 0.2 before there is any significant pump 
valley365
Hero Member
*****
Offline Offline

Activity: 868
Merit: 1003


View Profile
February 21, 2017, 05:40:29 AM
 #5174


Very thin trades, hope soon we will have an exchange, so trading can be more active.
mineru
Full Member
***
Offline Offline

Activity: 129
Merit: 100

https://forum.cryptoinfo.net/


View Profile
February 21, 2017, 07:06:18 AM
 #5175

Vote for Byteball to be added on Novaexchange:
 https://novaexchange.com/addcoin/
66 votes of 250 required. Remember you can vote daily. If a few of us vote we can have it listed there in a week.

THECRYPTOCHAT ▨▨▬▬YOUR CONNECTION TO EVERYTHING CRYPTO▬▬▨▨ THECRYPTOCHAT
◄▬▬▬▬▬▬▬▬▬▬MULTIPLE CHATROOMS▬▬BLOCK EXPLORERS▬▬FAUCETS▬▬▬▬▬▬▬▬▬▬►
nillohit
Full Member
***
Offline Offline

Activity: 154
Merit: 100

***crypto trader***


View Profile
February 21, 2017, 07:15:53 AM
 #5176

Vote for Byteball to be added on Novaexchange:
 https://novaexchange.com/addcoin/
66 votes of 250 required. Remember you can vote daily. If a few of us vote we can have it listed there in a week.
voted  Grin
Also please vote -
https://c-cex.com/?id=vote currently have 12 votes
https://mercatox.com/coins/list 71 votes of 150 required

П    |⧛ ☛  Join the signature campaign and earn free PI daily!  ✅ |⧛    П
|⧛         ☛  PiCoin - get in now  ✅     ☛ No ICO!  ✅          |⧛
favdesu
Legendary
*
Offline Offline

Activity: 1764
Merit: 1000



View Profile WWW
February 21, 2017, 07:39:16 AM
 #5177

Vote for Byteball to be added on Novaexchange:
 https://novaexchange.com/addcoin/
66 votes of 250 required. Remember you can vote daily. If a few of us vote we can have it listed there in a week.
voted  Grin
Also please vote -
https://c-cex.com/?id=vote currently have 12 votes
https://mercatox.com/coins/list 71 votes of 150 required

both exchanges are a waste of time, especially mercawhatever. better try to get it listed on polo

disconnectme
Hero Member
*****
Offline Offline

Activity: 1876
Merit: 512


View Profile
February 21, 2017, 07:58:25 AM
 #5178

Vote for Byteball to be added on Novaexchange:
 https://novaexchange.com/addcoin/
66 votes of 250 required. Remember you can vote daily. If a few of us vote we can have it listed there in a week.
voted  Grin
Also please vote -
https://c-cex.com/?id=vote currently have 12 votes
https://mercatox.com/coins/list 71 votes of 150 required

both exchanges are a waste of time, especially mercawhatever. better try to get it listed on polo

I don't rate Mercatox exchange that high too, the volume on the exchange is low. I think the team need to be more ambitious and move for a bigger exchange with better volume.


█ ▀  ▄
  ▄ █  █▌ 
▄    █
        ███
                  ▀▀▀▀▀██
         ███          ███
      ███     【】     ███
   ███   【】【】   ███
██▀           █  █         ▀██         
█▄          █  █        ▄██
   ███       █  █     ███
      ███   █  ███ 
         ███    █    ███
            ███   ███

.T o o l K i t z A I .Break The Barrier.

██████
██
██
██
██
██
██
██
██
██
██
██
██████

███████████████████████████████████████████████████
.
TRY DEMO
.
███████████████████████████████████████████████████

██████
██
██
██
██
██
██
██
██
██
██
██
██████


                      ▄▄████
                 ▄▄████████▌
           ▄▄█████████▀███
     ▄▄██████████▀▀  ▄███▌
▄████████████▀▀    ▄█████
▀▀▀███████▀     ▄███████▌
      ██     ▄█████████
       █   ▄██████████▌
       █   ███████████
       █ ██▀ ▀██████▌
       ██▀     ▀████
                 ▀█▌
CryptKeeper
Legendary
*
Offline Offline

Activity: 2044
Merit: 1055



View Profile
February 21, 2017, 04:16:55 PM
 #5179

Are you excited about Byteball as we are?  Grin

Do you want to help us spreading the good news?

Then please follow these three accounts on twitter:

@ByteballOrg
@Vindyne8
@CryptKeeperBTT

for all the latest news. There will be regular tweets about Byteball from these accounts, please retweet!

Follow me on twitter! I'm a private Bitcoin and altcoin hodler. Giving away crypto for free on my Twitter feed!
bitwonder
Sr. Member
****
Offline Offline

Activity: 374
Merit: 250


View Profile
February 21, 2017, 04:46:51 PM
 #5180

@tonych  @cryptkeeper  would there a way that "chat with the Transition Bot" knowing how many blackbytes holder got if it link with transition bot ?
Pages: « 1 ... 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 [259] 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 ... 1128 »
  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!