Bitcoin Forum
May 28, 2024, 06:48:15 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 [2] 3 4 5 6 7 8 »
21  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



























22  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.
23  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Blackcoin Lore [BLK] | Home of PoS 3.0 | No ICO | No Pre-mine on: August 03, 2018, 06:33:02 PM
coinomi wallet show 1blk = $0.66  Shocked
24  Local / 中文 (Chinese) / Re: 比特币的稳定价值将在多少?100万美元 或者 更高一点? on: August 01, 2018, 08:03:06 AM
我猜约100万美元。

楼主该不会是炒家枪手吧?比特币价格上万美金,其市值就千亿美金计算。几十兆的市值是不可能的。区块链技术被各国政府认可采纳之后,私链将会大行其道。比特币的身份就会变得尴尬了。
25  Local / 离题万里 / Re: 习近平:领导干部要多读一点历史 on: August 01, 2018, 07:32:25 AM
多读历史??你们喊着大大!是人大还是法大呀?醒醒吧!

修改国家主席无限任期让很多人的心都冷了,一堆问题没解决有一堆问题又出现!老美没把中国怎么样,俄罗斯侵吞了国家大片土地,中国还跟他称兄道弟。看了就火大!
26  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Blackcoin Lore [BLK] | Home of PoS 3.0 | No ICO | No Pre-mine on: August 01, 2018, 07:12:48 AM
last trading day polo there Cry
i lose more than 1.2BTC,i will take it as a good lesson
27  Local / 中文 (Chinese) / Re: 7.15号以来比特币上涨2000美元,ETH为什么不涨呢? on: July 26, 2018, 07:45:26 AM
监管部门将ICO定位非法集资,ETH链下的ICO多的离谱,打击非法集资ICO最好的办法就是对ETH进行规范。ETH到现在也没公布全部用户持币数量比例,本身就有作弊嫌疑。币市的非法集资活动主要原因就是ETH的泛滥,就目前而言ETH价位太高了。
28  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Blackcoin [BLK] | The Original Proof of Stake Coin | No ICO | No Pre-mine on: July 11, 2018, 06:49:34 AM
Ok some updates:

Website: https://blackcoin.org
Twitter: https://twitter.com/blackcoinorg
Code repo: https://gitlab.com/blackcoin/

Slowing moving everything there and making updates. Takes time to do all this myself. Also, testing builds and will make some updates.

I also started the initiative PoS Alliance with other PoS coins such as Peercoin, PIVX, NAV, BitBay, Cloakcoin, Komodo, Particl, Vericoin.

You can follow updates on twitter: https://twitter.com/PoSAllianceOrg
Or on the website: https://posalliance.org

wow yeah! I will buy 5000+BLK today Wink

BLK users really need IOS wallet,if you have IOS wallet,I could switch all my BTC and ETH to BLK!
I did send email to Coinbase regarding Blackcoin adoption.
29  Local / 中文 (Chinese) / Re: 过了6月底,资金面会好,币价会反弹的 on: June 26, 2018, 04:57:15 AM
过了6月底,资金面会好,币价会有一个像样子反弹的,要减仓的也坚持一下吧,不差这几天了。

嗯嗯,过了2021年6月应该会有呗  Grin
30  Local / 中文 (Chinese) / Re: 在币圈怎么保命安全的活下去 on: June 26, 2018, 04:46:32 AM
以上四点都说的很有道理,可是瀑布来的时候管不住自己的手啊,昨天我就全部清仓了,也不知道是对还是错,目前来看是挽回了20%,全部换成了USDT,现在算是保住了本钱了。
不亏就行,留得青山在,不怕没柴烧

哎。。想保命活下去,很简单的!装死呗!  Grin

31  Local / 中文 (Chinese) / Re: 比特币涨跌与美指、黄金的关系,哪位知道? on: June 23, 2018, 11:36:01 AM
强列地感觉比特币的涨跌与美元指数、黄金、欧元、全球股市走势,都有很强的关联,但又没有系统的分析研究过,

求有明白的大佬指点....



有新闻这样报道:
6月20日19时,COMEX黄金期货主力合约报价在1274.6美元/盎司,盘中一度触及过去6个月以来最低点1272.1美元/盎司。
 在FXTM研究分析师Lukman Otunuga看来,黄金之所以在美国贸易保护主义抬头触发全球股市大跌期间未能展现“避险投资”魅力, 主要原因是它被美元抢走了“风头”。尤其是20日美元指数一度刷新过去11个月以来最高点95.33,令以美元计价的黄金跌跌不休。

比特币已经变成白银2.0了,大户只要一直做空,钱一样进大户的袋子。大行做空白银几年,巴菲特,索罗斯都炒不上。现在比特币就是这种情况,你想赚就跟着做空。

最好最安全的回报就是放银行收利息,每年百分之四以上!
32  Local / 中文 (Chinese) / Re: 下半年要来疯狂牛市,你还剩下多少资金绝地反击? on: June 23, 2018, 11:23:09 AM
我有几万块全部买了币了,现在下个月的饭钱不知道去哪找啊,我是个大学生。

我也是大学生,贷款50万,目前资产一百五十万,贷款已还一半多。

年初牛市,最高资产250万,熊市损失了很大一部分

哇咔。。中国真好!大学生还没毕业银行都能放贷几十万元,我们这里银行放贷很严的。大部分人买卖币都是用储蓄来买的。真羡慕国内的经济和政策叻!
33  Local / 中文 (Chinese) / Re: 新手求解惑:钱包里的比特币会被席卷一空吗? on: May 31, 2018, 02:05:42 PM
专家说,用硬件钱包最安全,买个呗!百多块美金罢了 Wink
34  Local / 中文 (Chinese) / Re: 告诉你大瀑布的预兆 on: May 31, 2018, 01:47:27 PM
比特币价格返回$1500-2000美金,应该会再出现热潮。好多人都在等$2000以下进场叻 Grin
35  Alternate cryptocurrencies / Speculation (Altcoins) / Re: BTC back to $6000 ? on: May 31, 2018, 01:35:24 PM
Almost lost $1000 today in values in last two days.  Just heard the bull has just entered. What's really causing this impact? The price was bit fluctuating between $8500 to $7500 for past ten days but today's impact brought down the value near $7500. Are we towards $6000?

I don't think the bull market has came.

In my opinion, there is always a probability that the price of the bitcoin can drop 6k or lower, but in my opinion, bitcoin has enough potential to reach a value which is more than 20k.
I agree with you . Bitcoin's potential is still huge and Bitcoin may soon again reach $ 20,000 this year as there is a lot of news about this market and it may attract a lot of big investors around the world this year. Personally, I still believe in a good future for Bitcoin because if I do not have faith, I will not participate in Cryptocurrency.

My teacher told me,bitcoin will back to $1500-$2000 per each in 2018

36  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Blackcoin [BLK] | The Original Proof of Stake Coin | No ICO | No Pre-mine on: May 31, 2018, 01:31:52 PM
i think blackcoin game over soon Cry

i will sell my coins
37  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PRE-ANN] Blacknet (formerly BlackCoin) | Original research | PoS | No ICO on: May 31, 2018, 01:29:40 PM
A month ago, RAT4 disappeared. There was no news about BLACKNET.

If RAT4 wants to complete BLACKNET alone, I think he will create another failed work.

Many projects now have investors. Venture capital.


sigh,why rat4 always created stupid named

i think new blackcoin named BHALOcoin better than blacknet,the named came from bithalo and blackhalo.

hey guys sell blackcoin now,game over soon
38  Local / 中文 (Chinese) / Re: 熊市囤币大神们都囤了什么币 on: February 06, 2018, 04:28:08 AM
狗年当然是狗狗币啦 Cheesy价格大概在历年新低水平最好
39  Local / 中文 (Chinese) / Re: 狗年比特币价格旺不旺~ on: February 06, 2018, 04:18:57 AM
你应该添加上2000usd以下的选项

添加$2000以下会被矿工骂的,矿工很在意比特币的价格叻 Cry
40  Local / 中文 (Chinese) / Re: 终于等待到这刻了,我来了买 on: February 06, 2018, 04:14:58 AM
哈哈,等待就是这刻,
btc:6366,
Eth:633买入  ​​​[/cp]

我等btc$2000美金,eth$60美金再买 Wink

你在做梦,哈哈

为什么btc跌多60%,eth跌90%?^

神永远站在未来的右边,你知道为什么吗 Smiley
未来说过,世界上没有不可能的事 Wink
只要你愿意…
Pages: « 1 [2] 3 4 5 6 7 8 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!