Bitcoin Forum
May 14, 2024, 05:53:04 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Local / 中文 (Chinese) / 2019年即将到来!请大家踊跃参与投票,谢谢~ on: December 25, 2018, 04:41:09 PM
愿各位在即将到来的2019年一切顺利 Smiley

许多大行都预测比特币的价格介于$1500美金,你们觉得呢?

投票时间维持一年,请大家踊跃参与,谢谢~
2  Alternate cryptocurrencies / Mining (Altcoins) / BlackCoin mining (Raspberry Pi 3 model B+) on: August 26, 2018, 10:45:25 AM
How to using Raspberry Pi 3 B+ (mining BlackCoin)

Part 1
FORMAT YOUR SD CARD


It is best to format your SD card before copying the NOOBS files onto it. To do this:

1. Visit the https://www.sdcard.org SD Association’s website and download SD Formatter 4.0 for either Windows or Mac.

2. Follow the instructions to install the software.

3. Insert your SD card into the computer or laptop’s SD card reader and make a note of the drive letter allocated to it, e.g. G:/

4. In SD Formatter, select the drive letter for your SD card and format it.


DOWNLOAD

We recommend using an SD card with a minimum capacity of 8GB.

1. Using a computer with an SD card reader, visit the Downloads page.

2. Click on NOOBS, then click on the Download ZIP button under ‘NOOBS (offline and network install)’, and select a folder to save it to.

3. Extract the files from the zip.

DRAG AND DROP NOOBS FILES

1. Once your SD card has been formatted, drag all the files in the extracted NOOBS folder and drop them onto the SD card drive.

2. The necessary files will then be transferred to your SD card.

3. When this process has finished, safely remove the SD card and insert it into your Raspberry Pi.

FIRST BOOT

1. Plug in your keyboard, mouse, and monitor cables.

2. Now plug the USB power cable into your Pi.

3. Your Raspberry Pi will boot, and a window will appear with a list of different operating systems that you can install. We recommend that you use Raspbian – tick the box next to Raspbian and click on Install.

4. Raspbian will then run through its installation process. Note that this can take a while.

5. When the install process has completed, the Raspberry Pi configuration menu (raspi-config) will load. Here you are able to set the time and date for your region, enable a Raspberry Pi camera board, or even create users. You can exit this menu by using Tab on your keyboard to move to Finish.

LOGGING IN AND ACCESSING THE GRAPHICAL USER INTERFACE

The default login for Raspbian is username pi with the password raspberry. Note that you will not see any writing appear when you type the password. This is a security feature in Linux.

To load the graphical user interface, type startx and press Enter.

Refer to our documentation for more information:https://www.raspberrypi.org/documentation/installation/noobs.md


Part2

Install BlackCoin Lore wallet for Raspberry Pi and Syncing

Open the terminal from the taskbar

To create a swapfile on your Raspberry Pi you can use the following commands:

1) <sudo su -c 'echo "CONF_SWAPSIZE=2048" > /etc/dphys-swapfile'>

2) <sudo dphys-swapfile setup>

After creating the swapfile, you have to activate it once by using this command:

3) <sudo dphys-swapfile swapon>


Install Blackcoin Lore wallet

1. Now we are going to install the Blackcoin Wallet for ARM. Download the arm version of the Blackcoin Lore wallet from: https://github.com/janko33bd/bitcoin/releases/tag/v2.12.1.0-3d52c88

2. Next open the terminal from the taskbar and type <mkdir Blackcoin-Lore> which will create a folder path under the Pi user. Once this is done you can close the terminal.

3. Open up the File manager go to downloads and unzip the arm32.zip file.

4. Open the unzipped folder and copy the four files from contained within to the Blackcoin-Lore file you created.

5. Once the files have copied over. We are going to download the bootstrap to the computer to speed up the sync. Download the bootstrap from https://mega.nz/#!R64nQARY!o8Ovl-2OLWMF6quSfpEXPEbcsmHiLhPegSnaHQXgR6I or https://mega.nz/#F!ru5lTJSD!3Ysa0Whk4Nyztc9xfu8pjQ,(new version created by Michel elder)

6. Once you have the bootstrap downloaded extract the file and then place it in the Blackcoin-Lore directory. You can do this by dragging and dropping the file in the file explorer.

7. Open the terminal from the taskbar.

8. In the terminal type in <cd Blackcoin-Lore> to enter the Blackcoin-Lore directory.

9. We now need to change the permissions on the files type in <chmod u+x lored> then type in <chmod u+x lore-cli>. This should allow you to access and run the files.

10. Next type in <if [ $(whoami) == 'root' ]; then echo "NO don't run as root"; else ./lored -loadblock=/home/pi/Blackcoin-Lore/bootstrap.dat; fi> to start the node. This will begin the process of syncing the node with the network. I will warn you that this process will take awhile. The reason we are running this command is to ensure that we are not running the node as the root user.

11. It is also important to note that once you start running <./lored> the terminal window that was used will no longer be able to be used to enter commands. So once it starts you can either close out that terminal window or just leave it up.

12. In order to make sure we are syncing we have a couple options. We can either tail the program or we can use the getinfo command. Use whichever you think is easiest.

13. Once a new terminal tab opens type in <cd> to take yourself to the main directory. Now we are going to type in <tail -f \.lore/debug.log> to make sure the node is running and syncing correctly. As long as the process is running this terminal window will update and continue syncing.

14. To use getinfo open a new terminal and make sure you are in Blackcoin-Lore. If not in the Blackcoin-Lore folder navigate to it using <cd Blackcoin-Lore> and then type in <./lore-cli getinfo>

15. Congratulations you are now running a full node!



Importing your Private Key and Staking


1. Once your node has finished syncing up the the current block height we need import are private key to access our current funds.

2. Open a terminal from the taskbar. Type in <cd Blackcoin-Lore> to enter the Blackcoin-Lore directory.

3. Now we need to either import a private key or generate a new address. Please use whichever method you like.

4. When we import a private key we are going to need the private key of the wallet and also we are going to want an account name for it. The account name can be whatever you want. I personally use main for my primary address.Once we have the private key we want to type in this command <./lore-cli importprivkey YourPrivateKeyGoesHere AccountName> and hit enter. Once this begins the program will rescan the blockchain to find any transactions associated with that private key and import them.

5. If you don’t have a private key we are going to generate a new address and give it a name. To do this we type in <./lore-cli getaccountaddress Main>

6. Once that is done we can check our wallet info using <./lore-cli getwalletinfo>

7. This will show you your wallet version, balance, unconfirmed balance, and other information.

8. Once you have confirmed your information is correct we can then get ready to start staking.

9. First thing we need to do is encrypt our wallet. Type in the command <./lore-cli encryptwallet YourPassPhrase>

10. Once this is done the node itself will stop and will require you to restart it. But before we do that we need to create a config file and add a command to enable staking.

11. Once the node is stop we  want to move back to the home directory. So in the terminal type in <cd>

12. Once we are in the home directory we want to type in <cd .lore> to enter the lore directory.

13. In order to start staking easily we are going to make a configure file to start staking once the wallet/node is up and running. In the terminal type in <sudo nano lore.conf> to open and create a configuration file.

14. Once it opens type in <staking=1> in the file and then hit <CTRL + O> to write out the file. The screen will change slightly and ask you to confirm the name of the file. As long as it says lore.conf you can hit enter. To exit the nano editor hit <CTRL + X>

15. Now in the terminal type in <cd> to return to the home directory. From their navigate back to the Blackcoin-Lore directory by typing in <cd Blackcoin-Lore> into the terminal.

16. Once you are back in the Blackcoin-Lore directory we want to restart the node. So in this terminal type in <./lored> or <./lored -daemon> to start the node again.

17. Once the node has started up you can open a new terminal window in the Blackcoin-Lore directory. In order to check that you are staking you can type in <./lore-cli getstakinginfo> and the first line should return as True which lets you know that you can now stake.

18. In the terminal we no have to type in the command to let us stake. The command syntax is broken up into three parts. Your passphrase, the amount of time in seconds you want to unlock the wallet, and a boolean. For the boolean variable if you want to stake you set it to true and if you don’t you change it to false.

19. So if you wanted to stake for 24 hours you would type in  the command, your passphrase, 86400 and true.
 
20. Example: <./lore-cli walletpassphrase YourPassPhraseHere 86400 true> and now your wallet would stake for 24 hours.


if you need help,please visit Blackcoin.org
https://blackcoin.org

Janko grand elder original article:(How to setup SSD or other external harddisk and all step command)
https://docs.google.com/document/d/1hn2nz_3DyF3TeEYCW4h44Sz2rAqQ_yW0xy9oVu-mJBY/mobilebasic#heading=h.w166tsnzp7cu


Useful command:-

0. Terminal main directory to Blackcoin Lore directory:cd Blackcoin-Lore

1. Start the blackcoin node again:./lored or ./lored -daemon

2. Check status info:./lore-cli getinfo

3. Check wallet info:./lore-cli getwalletinfo

4. Check staking info:./lore-cli getstakinginfo

5. Start staking blackcoin:./lore-cli walletpassphrase <yourwalletpassphrase> 999999999 true
(999999999 is staking time for 31years)

6. Stop staking blackcoin:./lore-cli walletpassphrase <yourwalletpassphrase> 999999999 false
(after stop staking blackcoin,then you could send blackcoin to address)

7. Send blackcoin to address:./lore-cli sendtoaddress <blackcoin address> <amount>

8. Get your private key:./lore-cli dumpprivkey <your blackcoin address>

9. Get your back up wallet files:./lore-cli dumpwallet <file name>

10. Check the node info:tail -f \.lore/debug.log
(this command use in terminal main directory)

11. Check other commands:./lore-cli help


I wish could help newbie easy staking/mining Blackcoin

Blackcoin max transaction per day 1,440,000(more than Ethereum,ETH max 13transaction per sec)

Blackcoin transaction speed around 60sec (faster than bitcoin)

join our community,secure our good project network Wink



























3  Alternate cryptocurrencies / Altcoin Discussion / GateHub scam normal user digital asset! on: August 26, 2018, 10:03:34 AM
I would like to telling you about big company how to scam normal user fund and digital asset. Last year I was open gatehub account storage my xrp. Maybe more than 6 months didn't sign in,yesterday I tried to sign in my gatehub account,gatehub web page always show network error,I can't access to my gatehub account, even i got 2FA code. I tap forgot password fill in my email address but didn't received any recover email. I did checked junk mail box,nothing there.

My gatehub account balance more than 50xrp for their minimum holding xrp address!

I believe im not alone,there are many users same like me,lost our digital assets and funds by using gatehub wallet.
4  Local / 中文 (Chinese) / 狗年比特币价格旺不旺~ on: February 06, 2018, 03:59:25 AM
狗年就快到了,今年虚拟货币市场将掀起狂潮!

大家来预测一下比特币在狗狗年的价格呗~ Wink


投票吧!投票吧!


我选$6000美金以下 Grin
5  Local / 中文 (Chinese) / 8月份比特幣會變得如何呢? on: July 16, 2017, 01:45:54 PM
由於比特幣受到無賴劫持,進入動盪時期。

手中還持有幣的朋友請繼續祈禱,我也為你們祈禱和祝福,希望未來會更好!

手中沒有持幣的朋友應該很開心吧😄 一起為大家祈禱和祝福吧~

6  Local / 中文 (Chinese) / 啊。。。來不及跑的人這次哭死了吧 on: July 11, 2017, 04:46:33 AM
看看自己的能力再作打算,山高。。。不知多高,海深。。。不知多深。。。

暫時離開不代表不存在。。。

跑得慢沒關係,繼續跑。。。會到終點的。。。

留得青山在。。。哪怕沒柴燒呀。。。對唄。。。

比特幣還沒到分叉時間就幣市跌得稀裡嘩啦。。。

國外的比特幣和山寨幣用戶一幣不留,多數抱著現金。

小夥伴們,你們跟還是不跟呀 Grin
7  Local / 中文 (Chinese) / 比特幣兌換成現金時期 on: July 10, 2017, 05:02:36 AM
比特幣兌換成現金時期 - 就是現在!

剛剛收到比特幣錢包電郵:
該公司確認比特幣於8月1日2017年進行segwit!該公司還有後備方案。(也就是說對方案充滿不確定)
該死的BU騎劫比特幣造成今時今日的這種局面,社區和用戶一定會永遠記在心裡。



比特幣從現在開始進入非常不確定的時期,把現有的比特幣兌換成現金應該是最好的途徑。

比特幣今天的價格$2500+-

1盎司黃金$1200+-,1個幣換2盎司+-

我做了選擇 Cool

希望你們也能做出最符合自己本身利益選擇。

8  Local / 中文 (Chinese) / 要求版主对BU水军帐号做出惩罚! on: July 01, 2017, 08:02:35 AM
版主,BU水军一直在这里洗版,对core团队进行文革式的批判。我希望你能维持比特币中文论坛的和谐和稳定,让其他用户能正常不受干扰的情况下查阅帖子。

我再次声明,core团队对比特币社区的贡献并不是为了钱,或是比特币的价格。

BU分子专注的只有一个就是比特币价格。投机分子就只会图利!

比特币的用户选择比特币并不是为了比特币的价值,有很多人跟我一样,我们选择使用比特币是因为比特币的分布式账本,去中心化,简易安全交易,不必经过第三方介入。。等等多项好处

民主社会的共识BU很难明白其中道理,BU只知道枪杆子里出政权,大概就是这样吧

文革式的批判出现在国际论坛实在可耻,也只有中文版块才有这样的问题。如果你觉得币的价格很重要,你可以买其他币,放过比特币吧
9  Local / 中文 (Chinese) / 啊。。如何做出正确的选择呢 on: June 15, 2017, 11:29:44 AM
我在纠结到底该在什么时候上车,好纠结哦 Embarrassed

❶$1000以下 Wink还是有可能的

❷$1200左右 Grin这水平不错叻

❸$1500左右 Cool合理吧

你们呢  Smiley
10  Local / 中文 (Chinese) / 丰收节投票调查 on: June 14, 2017, 05:17:21 PM
匿名投票,保证安全 Cool在我的朋友圈就一个人赚了千万以上
11  Other / Meta / how to create profile picture? on: June 14, 2017, 01:02:49 PM
im Jr member now,why i still can't create profile picture Embarrassed

i saw others their level lower than me but they got image file in their post
12  Local / 中文 (Chinese) / 当比特币价格冲破$3500美金! on: June 06, 2017, 08:34:18 AM
当比特币价格冲破$3500美金的时候,山寨币的价格可能回到2017年初的价格水平,甚至更低价位!

大家别太迷恋山寨币给你们的糖果哦 Grin

比特币持有者不进行兑换山寨币,山寨币是没有任何价值可言

大部分山寨币都集中在一些大户手中,持有者只在乎币的价位,根本不懂币本身的优缺点。

13  Local / 中文 (Chinese) / 进入倒数阶段,大家一起验证! on: May 29, 2017, 12:49:06 PM
这个六月很特别哦  Wink

大家一起玩投票吧

14  Local / 中文 (Chinese) / P网一直被DDos 攻击 on: May 13, 2017, 04:16:13 PM
我这几天都没办法正常的下单子,不管是买还是卖。一下单子就卡着,loading loading很久连logout都不能。

如果再这样下去根本就没办法好好交易,你们有更好的交易所介绍吗?
15  Local / 中文 (Chinese) / 神曲 呀呀。。。满江红。。满江红 on: May 09, 2017, 09:05:03 AM
 在寨市兴风作浪的妖魔又一次被比特币给击败了  Cheesy
16  Local / 山寨币 / Blackcoin vs Bitcoin on: May 05, 2017, 07:03:51 AM
我觉得blackcoin的运作方式比bitcoin更好,最基本对持有者公平。交易费用低廉,blackcoin交易速度也比bitcoin快很多。POS对比POW相对更节省能源,完全符合未来趋势。

比特币陷入扩容之争,短期内不会有任何进展,大家给点意见叻~^_^
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!