 ## Intro In an [earlier post](https://steemit.com/qtum/@cryptominder/qtum-staking-tutorial-using-qtum-qt), I described how to stake QTUM coins using the **qtum-qt** GUI wallet. That method of staking is appropriate to use on your desktop/laptop, but the main drawback is that you will not be staking your coins as soon you are no longer synchronized with the Qtum blockchain (e.g. due to being disconnected from wifi, etc.) I had originally intended to follow that [post](https://steemit.com/qtum/@cryptominder/qtum-staking-tutorial-using-qtum-qt) with a tutorial describing how to stake QTUM coins using a cloud hosting provider (e.g. DigitalOcean, etc.) However, after reviewing the associated costs, I came to the conclusion that using a [Single-Board Computer (SBC)](https://en.wikipedia.org/wiki/Single-board_computer) such as the [Raspberry Pi 3](https://www.raspberrypi.org/products/raspberry-pi-3-model-b/) would make better financial sense for most people intending to stake QTUM coins. The total cost for building and running a Raspberry Pi for staking is approximately $56 (US Dollars) + a minimal amount of electricity (and an internet connection). Since you'll likely want to keep your Qtum wallet/node running for a long period of time (e.g. forever), the monthly "rental" costs of a (cloud/VPS) compute instance would easily exceed the cost of a Raspberry Pi. While this tutorial is intended for use with the [Raspberry Pi 3](https://www.raspberrypi.org/products/raspberry-pi-3-model-b/), it should **also be helpful for people interested in staking on a regular computer** as many of the steps would be similar. If you ever need help with this tutorial (or related topics), please reach out to the [Qtum community on Slack](https://slack.qtum.org) in the **qtum-pi** channel. **NOTE**: This is not an official post from the Qtum (Quantum) team. I'm merely a fan. ## Bill of Materials For this tutorial, you'll need the following hardware: - A [Raspberry Pi 3 Model B](https://www.raspberrypi.org/products/raspberry-pi-3-model-b/) with a compatible [2.5A@+5.1V power supply/adapter](https://www.raspberrypi.org/documentation/hardware/raspberrypi/power/README.md). - A MicroSD card with at least 8GB of space. There may be complications with SD cards larger than 32GB. Also, I recommending choosing an SD card which supports [wear leveling]( https://en.wikipedia.org/wiki/Wear_leveling) to help increase the SD card lifespan. Here's a useful guide to help you pick an SD card: http://elinux.org/RPi_SD_cards . - A MicroSD/SD card reader/writer (many laptops/desktops already have one). You'll likely also need a full-size [MicroSD adapter](https://learn.sparkfun.com/tutorials/sd-cards-and-writing-images) for this. **NOTE**: Most of the links above point to [https://www.raspberrypi.org](https://www.raspberrypi.org), but you can find the equipment at many eCommerce shops. I recommend getting a **kit** if you don't already have some of the equipment. The following equipment is optional (and won't be discussed very much in this post): - A [case](https://www.raspberrypi.org/products/raspberry-pi-3-case/). I recommend using a clear case. - An extra MicroSD card (with at least 8GB of space) in case the other one breaks (or [gets worn out](http://www.makeuseof.com/tag/extend-life-raspberry-pis-sd-card/)). - A [heatsink](http://bigl.es/the-great-raspberry-pi-heatsink-test/), although I haven't seen the need (the wallet/node is idle most of the time). - [An OLED graphic display](https://github.com/rm-hull/luma.oled#documentation) + wiring. A cheap $10 (US Dollar) I2C 128x64 OLED display will work just fine. Lastly, in terms of (free) software, you'll need: - [Raspbian Stretch Lite OS](https://www.raspberrypi.org/downloads/raspbian/). Version `2017-09-07` is the latest at the time of this writing. - [Etcher](https://etcher.io/) (version v1.1.2 or later) to burn the OS onto the SD card. ## Assumptions I will be making the following assumptions in this tutorial: - You are comfortable with using the [Unix shell](https://en.wikipedia.org/wiki/Unix_shell) (e.g. bash), Unix commands, and tools (e.g. tar). The [Raspbian OS](https://en.wikipedia.org/wiki/Raspbian) is a Debian-based Linux OS. - You are familiar with [**ssh** and **scp**](https://linuxacademy.com/blog/linux/ssh-and-scp-howto-tips-tricks/), and have an **ssh** and **scp** client program on your laptop/desktop (e.g. on Windows you can use [Putty](http://www.putty.org/) for **ssh** and [WinSCP](https://winscp.net/) for **scp**). - You are comfortable creating and editing files in Unix (e.g. using **vim**, **nano**, etc.). The alternative is to edit files on your preferred OS (e.g. Windows, macOS/OSX, etc.) and **scp** them to the Raspberry Pi. - You are using a wireless (wifi) network (although a wired network would work too -- just skip the wifi setup instructions). ## Step 1 - Burning Raspbian Lite onto your SD Card If you haven't already, download [Raspbian Stretch Lite OS](https://www.raspberrypi.org/downloads/raspbian/) (version `2017-09-07` or later) to your laptop/desktop. Next, insert your SD card into the SD card writer/burner (you'll likely need to insert the MicroSD card into an SD card adapter first). Download, install, and start [Etcher](https://etcher.io/) on your laptop/desktop. Once [Etcher](https://etcher.io/) is started, click on 'Select image' and choose/open the [Raspbian Stretch Lite OS](https://www.raspberrypi.org/downloads/raspbian/) .zip file that you downloaded earlier. The 'Drive' should already be selected for you (if not, select the drive where you put the SD card). Finally, click on "Flash!".  It will take a few minutes for [Etcher](https://etcher.io/) to flash and verify. After burning with [Etcher](https://etcher.io/), the SD card is likely unmounted/ejected. If so, remove and **re-insert** the SD card from/into your laptop/desktop. **IMPORTANT**: In the steps below, we'll assume the SD card is mounted at `$SDCARD_MOUNT_DIR` (e.g. on macOS/OSX this might be **/Volumes/boot**). ## Step 2 - Enabling SSH We'll be using [ssh](https://www.ssh.com/ssh/command/) to access the Raspberry Pi. To enable [ssh](https://www.ssh.com/ssh/command/) (and [scp](https://www.ssh.com/ssh/scp/)) on your Raspberry Pi, you must create a file named `ssh` on your SD card (in the top-most directory). You can run the following on macOS/OSX and Linux: ``` $ touch $SDCARD_MOUNT_DIR/ssh ``` On Windows (assuming the command-line prompt is `>`), you can do: ``` > type nul > %SDCARD_MOUNT_DIR%\ssh ``` (or, you can use Windows Explorer to create the empty `ssh` file) See the section entitled "**ENABLE SSH ON A HEADLESS RASPBERRY PI**" at https://www.raspberrypi.org/documentation/remote-access/ssh/ for further details. ## Step 3 - Configuring Wifi If you'll be using a wired network connection to your Raspberry Pi, then you can skip this step. To enable and configure wifi on your Raspberry Pi, you'll need to create a file on your SD card named `$SDCARD_MOUNT_DIR/wpa_supplicant.conf` with the following content: ``` country=US ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev update_config=1 network={ ssid="<your_network_ssid>" psk="<your_network_passphrase>" key_mgmt=WPA-PSK } ``` The value given to `country` above (e.g. US) should be an [ISO 3166 alpha-2 country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2). For example "CA" for Canada, "CN" for China, "SG" for Singapore, "RU" for the Russian Federation, etc. Obviously, replace `<your_network_ssid>` and `<your_network_passphrase>` with your **wireless SSID** and the **passphrase**. You can find out more abut how to configure this file at: https://wireless.wiki.kernel.org/en/users/documentation/wpa_supplicant . ## Step 4 - Starting and Accessing your Raspberry Pi After creating the `ssh` and (optionally) the `wpa_supplicant.conf` file(s) on your SD card, eject the SD card from your laptop/desktop. Insert the MicroSD into your Raspberry Pi, and plug-in the power supply. Wait about 1 minute for your Raspberry Pi to boot up. Next, we'll check to see if your SSH and wifi configuration worked properly. Normally, your Raspberry Pi will register itself with your router's DNS as `raspberrypi.local`. Also, the **pi** user account will pre-created (**NOTE**: this user account can also `sudo`). Let's try to access your Raspberry Pi using `ssh` (you can use [Putty](http://www.putty.org/) on Windows): ``` $ ssh pi@raspberrypi.local ``` You should see something like this: ``` pi@raspberrypi.local's password: Linux raspberrypi 4.9.41-v7+ #1023 SMP Tue Aug 8 16:00:15 BST 2017 armv7l The programs included with the Debian GNU/Linux system are free software; the exact distribution terms for each program are described in the individual files in /usr/share/doc/*/copyright. Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicable law. SSH is enabled and the default password for the 'pi' user has not been changed. This is a security risk - please login as the 'pi' user and type 'passwd' to set a new password. pi@raspberrypi:~ $ ``` The default password for the **pi** user is **raspberry** (we'll change this later). **NOTE**: You may get something like this first: ``` Warning: the ECDSA host key for 'raspberrypi.local' differs from the key for the IP address 'xxx' Offending key for IP in /Users/cryptominder/.ssh/known_hosts:xxx Matching host key in /Users/cryptominder/.ssh/known_hosts:xxx Are you sure you want to continue connecting (yes/no)? ``` If so, feel free to continue by typing `yes`. If you're not able to access your Raspberry Pi using `raspberrypi.local`, then check your router to see which IP address it may have received. Alternatively, you can use a wired/ethernet connection. As mentioned earlier, if you run into problems, please ask questions in the comment section below or reach out to the [Qtum community on Slack](https://slack.qtum.org) in the **qtum-pi** channel. ## Step 5 - A Little Bit of Admin Work... You may have noticed the following warning message when you logged-in: ``` SSH is enabled and the default password for the 'pi' user has not been changed. This is a security risk - please login as the 'pi' user and type 'passwd' to set a new password. ``` It's a good idea to change the default password for the **pi** user, so type: ``` $ passwd ``` And follow the prompts to change the password. We'll also want to make sure we have the latest packages (e.g. security fixes, etc.), so run: ``` $ sudo apt-get update $ sudo apt-get upgrade -y ``` If you are using wifi, you also need disable wifi power management. Type the following command: ``` $ iwconfig ``` You should see `Power Management:on` shown for the `wlan0` interface. We need to turn that off. To disable power management, create a file at `/etc/network/interfaces.d/wlan0` with the following content: ``` auto wlan0 allow-hotplug wlan0 iface wlan0 inet dhcp wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf wireless-power off iface default inet dhcp ``` Lastly, we'd normally create a separate user to run the **qtumd** Qtum wallet/node, but we'll leave this as an exercise for the reader... When the steps above are done, perform a reboot to make sure the system is still accessible after a restart: ``` $ sudo reboot ``` ## Step 6 - Download and install the latest Qtum wallet Download the Qtum wallet binary named `qtum-0.14.2-arm-linux-gnueabihf.tar.gz` at https://github.com/qtumproject/qtum/releases/tag/testnet-skynet-v1.2 onto your laptop/desktop. Skynet v1.2 (i.e. qtum-0.14.2) is the latest binary at the time of this writing, but the mainnet/Ignition binary will be released soon. You want to download the Qtum wallet binary suitable for Linux on 32-bit ARM platforms. Once a new binary is made available, **make sure to change the filename of the .tar.gz file in the commands below**. After waiting (about 60 seconds) for the Raspberry Pi to come up after rebooting, use `scp` (or WinSCP on Windows) to copy the .tar.gz file to the Raspberry Pi, e.g.: ``` $ scp qtum-0.14.2-arm-linux-gnueabihf.tar.gz pi@raspberrypi.local:~ ``` The command above will place `qtum-0.14.2-arm-linux-gnueabihf.tar.gz` in the **pi** user's `$HOME` directory. **NOTE**: Remember to use the new password for the **pi** user (assuming you changed it in the section above). Next, `ssh` back to the Raspberry Pi (e.g. `$ ssh pi@raspberrypi.local`). We'll now extract the .tar.gz file: ``` $ mkdir ~/qtum-wallet $ tar --strip 1 -C ~/qtum-wallet -xf ~/qtum-0.14.2-arm-linux-gnueabihf.tar.gz ``` You can verify that everything worked by running: ``` $ ~/qtum-wallet/bin/qtumd -version ``` The command above should simply display the wallet version (and other related information). ## Step 7 - Setting up the Qtum Wallet Service We'll now set up a [systemd](https://en.wikipedia.org/wiki/Systemd) service that will automatically restart your Qtum wallet/node if ever your Raspberry Pi restarts. Open an editor in Unix to create and edit the following file: `/etc/systemd/system/qtumd.service`. Insert the following content into that file: ``` [Unit] Description=Qtum daemon service After=network.target [Service] Type=forking User=pi WorkingDirectory=/home/pi/qtum-wallet ExecStart=/home/pi/qtum-wallet/bin/qtumd -daemon=1 -par=2 -onlynet=ipv4 -noonion -listenonion=0 -maxconnections=24 -rpcbind=127.0.0.1 -rpcallowip=127.0.0.1 PIDFile=/home/pi/.qtum/qtumd.pid Restart=always RestartSec=1 KillSignal=SIGQUIT KillMode=mixed [Install] WantedBy=multi-user.target ``` **NOTE**: The above assumes that the binaries were extracted in the **pi** user's home directory in the **qtum-wallet** directory. If you created a separate user, modify the paths above as well as the value for `User`. You can also explore using other **qtumd** command-line parameters by running: ``` $ ~/qtum-wallet/bin/qtumd -help ``` The `rpcbind` and `rpcallowip` command-line parameters (as used above in `ExecStart`) ensure that the RPC service (which is a part of the Qtum wallet/node) can only be accessed from the Raspberry Pi (i.e. you won't be able to access it directly from your laptop/desktop). To ensure the service is run when the Raspberry Pi restarts, run the following: ``` $ sudo systemctl daemon-reload $ sudo systemctl enable qtumd.service ``` ## Step 8 - Starting, Stopping, and Updating the Qtum Wallet Service To start the Qtum Wallet Service, simply run: ``` $ sudo systemctl start qtumd.service ``` To stop, run: ``` $ sudo systemctl stop qtumd.service ``` If you make modifications to `/etc/systemd/system/qtumd.service`, always make sure that you run: ``` $ sudo systemctl daemon-reload ``` before starting or stopping the service. You can once again try restarting the Raspberry Pi (e.g. `$ sudo reboot`) to make sure that the Qtum wallet/node is still running after the restart (again, wait about 60 seconds after rebooting before logging back in): ``` $ pgrep -a qtumd ``` This should output something like this: ``` 506 /home/pi/qtum-wallet/bin/qtumd -daemon=1 -par=2 -onlynet=ipv4 -noonion -listenonion=0 -maxconnections=24 -rpcbind=127.0.0.1 -rpcallowip=127.0.0.1 ``` The `506` number is the process id -- you'll very likely have a different one. If there isn't any output, it means that your wallet/node isn't running. To troubleshoot issues, the debug log file at `~/.qtum/debug.log` is the best place to start. ## Step 9 - Using the Qtum Command-Line Tool Another way to check that the Qtum wallet/node is running properly is to use the **qtum-cli** program. To check the status of the wallet/node, run: ``` $ ~/qtum-wallet/bin/qtum-cli getinfo ``` There are plenty of other commands that you can explore by running: ``` $ ~/qtum-wallet/bin/qtum-cli help ``` Useful commands include: `getinfo`, `getwalletinfo`, and `getstakinginfo`. That said, there are many other commands that you may eventually use (and we'll use some of them soon). **NOTE**: The **qtum-cli** tool uses a file named `.cookie` in the default Qtum wallet/node data directory (i.e. `~/.qtum/`) to authenticate itself for access to the RPC interface of the running **qtumd** wallet/node. There are other (more secure) methods of access to the **qtumd** RPC interface, but that topic is beyond the scope of this post. ## Step 10 - Encrypting and Unlocking Your Wallet In a [previous post](https://steemit.com/qtum/@cryptominder/encrypting-backing-up-and-restoring-your-qtum-wallet), I explained how to use the **qtum-qt** Qtum GUI wallet/node program to encrypt, back-up, and restore your wallet. I **strongly** recommend that you read that post to familiarize yourself with the process, as well as the risks. There is also information [in that post](https://steemit.com/qtum/@cryptominder/encrypting-backing-up-and-restoring-your-qtum-wallet) that you should be aware of relating to encrypting your wallet. Before encrypting the wallet, we'll run the following command to show what an **un-encrypted** wallet looks like: ``` $ ~/qtum-wallet/bin/qtum-cli getwalletinfo ``` The command above should display something similar to: ``` { "walletversion": 130000, "balance": 0.00000000, "stake": 0.00000000, "unconfirmed_balance": 0.00000000, "immature_balance": 0.00000000, "txcount": 0, "keypoololdest": 1505002808, "keypoolsize": 100, "paytxfee": 0.00000000, "hdmasterkeyid": "5c850a8dff9c0e1a12862af241d19aa4c3f60201" } ``` The absence of an `unlocked_until` field tells us that the wallet is **not encrypted**. To encrypt your wallet, first choose a [secure passphrase](https://xkcd.com/936/). For the example below, let's say that I choose `red dog blue cat` as my passphrase. Now, on your Raspberry Pi, encrypt your wallet by running: ``` $ ~/qtum-wallet/bin/qtum-cli -stdin encryptwallet ``` The `-stdin` parameter is used to (silently) prompt you for input. You should now enter your chosen [secure passphrase](https://xkcd.com/936/), and press <Enter/Return>, then press CTRL-D (i.e. press the 'Control'/'Ctrl' button on your keyboard followed by the 'd' button without releasing the 'Control'/'Ctrl' button). Like this: ``` red dog blue cat <CTRL-D> ``` You won't initially see anything displayed when you press CTRL-D as it will take a few moments to complete the encryption process. Once complete, the following message will be displayed: ``` wallet encrypted; Qtum server stopping, restart to run with encrypted wallet. The keypool has been flushed and a new HD seed was generated (if you are using HD). You need to make a new backup. ``` At this point, **you'll want to backup your wallet**. The newly encrypted `wallet.dat` file will be found at `~/.qtum/wallet.dat`. You can use `scp` to copy the wallet file off of your Raspberry Pi. Run the following command on your laptop/desktop to copy it: ``` $ scp pi@raspberrypi.local:~/.qtum/wallet.dat ./rpi_wallet-backup1.dat ``` **VERY IMPORTANT**: Make sure that you securely back-up your encrypted wallet (e.g. `rpi_wallet-backup1.dat` above) in at least 2 locations, and that you also remember the passphrase to unlock it. The Qtum wallet/node would have stopped as part of the encryption process. Restart it by running the following commands: ``` $ sudo systemctl stop qtumd.service $ rm -f ~/.qtum/.lock ~/.qtum/qtumd.pid ~/.qtum/.cookie $ sudo systemctl start qtumd.service ``` **NOTE**: We stop it first just to make sure it is really stopped, and then removed 3 temporary files that may not have been cleaned up. Now that your wallet is encrypted, run the following command: ``` $ ~/qtum-wallet/bin/qtum-cli getwalletinfo ``` The command above should now display something similar to: ``` { "walletversion": 130000, "balance": 16182.49960000, "stake": 0.00000000, "unconfirmed_balance": 0.00000000, "immature_balance": 0.00000000, "txcount": 2, "keypoololdest": 1504758151, "keypoolsize": 101, "unlocked_until": 0, "paytxfee": 0.00000000, "hdmasterkeyid": "b69f65040dc722e473b9bce1dbd0cb34e424a577" } ``` Notice the presence of the `unlocked_until` field with a value of `0`. This tells us that the wallet **is encrypted** but it **is locked**. You cannot stake coins with a locked wallet. To **unlock** your wallet for staking, run the following command: ``` $ ~/qtum-wallet/bin/qtum-cli -stdin walletpassphrase ``` This once again (silently) prompts you for input. Type your [secure passphrase](https://xkcd.com/936/), and press <Enter/Return>, then type the number of seconds that you'd like to keep your wallet unlocked, then <Enter/Return>, then 'true' (without the quotes), then <Enter/Return>, and finally CTRL-D. It will look like this: ``` red dog blue cat 99999999 true <CTRL-D> ``` **NOTE**: You can enter 'false' instead of 'true' above if you want to unlock your wallet for other purposes than staking (e.g. sending your coins). After unlocking your wallet, run the following command: ``` $ ~/qtum-wallet/bin/qtum-cli getwalletinfo ``` This should now display something similar to: ``` { "walletversion": 130000, "balance": 16182.49960000, "stake": 0.00000000, "unconfirmed_balance": 0.00000000, "immature_balance": 0.00000000, "txcount": 2, "keypoololdest": 1504758151, "keypoolsize": 101, "unlocked_until": 1514916409, "paytxfee": 0.00000000, "hdmasterkeyid": "b69f65040dc722e473b9bce1dbd0cb34e424a577" } ``` The value `unlocked_until` field now has a non-zero value which represents the time (in [Unix Epoch](https://en.wikipedia.org/wiki/Unix_time) seconds) at which the wallet will once again be locked. If you want to re-lock your wallet, simply run: ``` $ ~/qtum-wallet/bin/qtum-cli walletlock ``` However, remember that **you cannot stake coins with a locked wallet**. This also means that if your Raspberry Pi restarts, you'll need to unlock your wallet (since this isn't done automatically). ## Step 11 - Sending and receiving coins from your wallet To receive coins into your wallet, you don't need to unlock your wallet. To obtain a Qtum address owned by your wallet (that you can receive coins to), you can do the following: ``` $ ~/qtum-wallet/bin/qtum-cli getaccountaddress "" ``` **NOTE**: Instead of the empty string (`""`), you can specify an account name (e.g. `"coins_from_heaven"`). To see which accounts already exist, you can run: ``` $ ~/qtum-wallet/bin/qtum-cli listaccounts ``` You'll at least have the `""` (default) account listed. To send coins you must first unlock your wallet (and not 'just for staking'). Follow the steps described in the previous section to unlock your wallet, but type `false` (instead of `true`) on the 3rd line of the `walletpassphrase` command. ## Step 12 - Staking Once you have coins in your wallet that have not moved for at least 500 blocks, they will be eligible for staking. You can see if your wallet is staking by running: ``` $ ~/qtum-wallet/bin/qtum-cli getstakinginfo ``` The command above should display something similar to: ``` { "enabled": true, "staking": true, "errors": "", "currentblocksize": 0, "currentblocktx": 0, "pooledtx": 0, "difficulty": 26753652.34834659, "search-interval": 0, "weight": 1618249960000, "netstakeweight": 7923365887385318, "expectedtime": 0 } ``` If the `staking` field is `false`, it means that you are not staking (e.g. your coins have not yet matured, etc). ## Advanced / Future Topics This post is already quite long, but there are many other topics which could be covered. I intend to create a post to describe how to use several very useful **qtumd** parameters such as `-prune` and `-uacomment`. Also, in the **Bill of Materials** section, I mentioned that an optional piece of hardware is an OLED display (e.g. I2C 128x64) + wiring. The OLED display is helpful to view information such as the IP address of your Raspberry Pi (in case `raspberrypi.local` isn't working), whether the wallet is currently running, whether it is locked/unlocked, whether it is staking, displaying system health metrics (e.g. cpu, memory, disk), etc. The OLED allows you to display pretty much anything, such as:  It is relatively simple to set-up the OLED display and I also intend to write how to do this this later. (NOTE: The image above is an older Raspberry Pi). Lastly, I also want to make all of the steps above as **turn-key** as possible by automating the steps using [Ansible](https://www.ansible.com/). Stay tuned for more about this! ## Where To Go For Help As previously mentioned, you can obtain help from the [Qtum community on Slack](https://slack.qtum.org) in the **qtum-pi** channel. See you there!
author | cryptominder |
---|---|
permlink | qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3 |
category | qtum |
json_metadata | {"tags":["qtum","staking","raspberry","pi","wallet"],"image":["https://steemitimages.com/DQmPnwwDmDikYZWmRGRbFUdGNiQCWL9deMmGubxDCRGkGiJ/qtom_logo.png","https://steemitimages.com/DQmVVHHtshancWuEPEJoXEw4VNvfM1ZDxFRSbKZtPspGjT3/etcher.png","https://steemitimages.com/DQmamm9UujmFg1L3BoM8Wc7P9EnTZiFGndhTU2CNv4z57qP/RPI_oled.jpg"],"links":["https://steemit.com/qtum/@cryptominder/qtum-staking-tutorial-using-qtum-qt","https://en.wikipedia.org/wiki/Single-board_computer","https://www.raspberrypi.org/products/raspberry-pi-3-model-b/","https://slack.qtum.org","https://www.raspberrypi.org/documentation/hardware/raspberrypi/power/README.md","https://en.wikipedia.org/wiki/Wear_leveling","http://elinux.org/RPi_SD_cards","https://learn.sparkfun.com/tutorials/sd-cards-and-writing-images","https://www.raspberrypi.org","https://www.raspberrypi.org/products/raspberry-pi-3-case/","http://www.makeuseof.com/tag/extend-life-raspberry-pis-sd-card/","http://bigl.es/the-great-raspberry-pi-heatsink-test/","https://github.com/rm-hull/luma.oled#documentation","https://www.raspberrypi.org/downloads/raspbian/","https://etcher.io/","https://en.wikipedia.org/wiki/Unix_shell","https://en.wikipedia.org/wiki/Raspbian","https://linuxacademy.com/blog/linux/ssh-and-scp-howto-tips-tricks/","http://www.putty.org/","https://winscp.net/","https://www.ssh.com/ssh/command/","https://www.ssh.com/ssh/scp/","https://www.raspberrypi.org/documentation/remote-access/ssh/","https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2","https://wireless.wiki.kernel.org/en/users/documentation/wpa_supplicant","https://github.com/qtumproject/qtum/releases/tag/testnet-skynet-v1.2","https://en.wikipedia.org/wiki/Systemd","https://steemit.com/qtum/@cryptominder/encrypting-backing-up-and-restoring-your-qtum-wallet","https://xkcd.com/936/","https://en.wikipedia.org/wiki/Unix_time","https://www.ansible.com/"],"app":"steemit/0.1","format":"markdown"} |
created | 2017-09-10 06:33:33 |
last_update | 2017-09-10 06:37:18 |
depth | 0 |
children | 51 |
last_payout | 2017-09-17 06:33:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 24,987 |
author_reputation | 32,892,869,283 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,426,896 |
net_rshares | 2,586,290,599 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pfloyd | 0 | 0 | 100% | ||
joca | 0 | 0 | 100% | ||
lifesizebox | 0 | 0 | 100% | ||
anomaly | 0 | 731,308,108 | 1% | ||
ncao | 0 | 0 | 21% | ||
rainmansteem | 0 | 0 | 91% | ||
rock8ice | 0 | 0 | 100% | ||
ibank | 0 | 0 | 100% | ||
mrstaf | 0 | 0 | 100% | ||
otraza | 0 | 0 | 100% | ||
chrispz | 0 | 0 | 100% | ||
circularitylabs | 0 | 694,360,389 | 100% | ||
magiclars | 0 | 0 | 100% | ||
niking | 0 | 0 | 100% | ||
bskim45 | 0 | 0 | 100% | ||
pablorf88 | 0 | 0 | 100% | ||
juramountains | 0 | 0 | 100% | ||
chrisco | 0 | 0 | 100% | ||
nosebear | 0 | 0 | 100% | ||
kimpers | 0 | 0 | 100% | ||
begreat | 0 | 0 | 100% | ||
covestor | 0 | 0 | 100% | ||
kjnk | 0 | 0 | 100% | ||
michaelguerin | 0 | 0 | 100% | ||
raymetz100 | 0 | 0 | 100% | ||
kquaye | 0 | 0 | 100% | ||
moxi | 0 | 0 | 100% | ||
unomas | 0 | 0 | 100% | ||
silverminer | 0 | 0 | 100% | ||
qtumofficial | 0 | 0 | 100% | ||
equaliser | 0 | 0 | 100% | ||
sunkim | 0 | 1,160,622,102 | 100% | ||
elbapu | 0 | 0 | 100% | ||
daydoesit | 0 | 0 | 100% | ||
cashbrudi | 0 | 0 | 100% | ||
crazyhendrix | 0 | 0 | 100% | ||
hotbit | 0 | 0 | 100% | ||
mattdoyle | 0 | 0 | 100% | ||
anuzis | 0 | 0 | 100% | ||
mgpeng | 0 | 0 | 53% | ||
lorenzomyle | 0 | 0 | 100% | ||
iamabluetiger | 0 | 0 | 100% | ||
mkmess | 0 | 0 | 100% | ||
hkn | 0 | 0 | 100% | ||
epyonxero | 0 | 0 | 100% | ||
zlexdl | 0 | 0 | -100% | ||
infernum | 0 | 0 | 100% | ||
geebee14 | 0 | 0 | 100% | ||
jouj | 0 | 0 | 100% | ||
culgin | 0 | 0 | 100% | ||
kostika | 0 | 0 | 100% | ||
crypto-liberty | 0 | 0 | 100% | ||
technikte | 0 | 0 | 100% | ||
genericboatnames | 0 | 0 | 100% | ||
dopetob | 0 | 0 | 100% | ||
thunder-king | 0 | 0 | 100% | ||
pranavrana | 0 | 0 | 100% | ||
iamversatility | 0 | 0 | 100% | ||
poldi | 0 | 0 | 100% | ||
veydpz | 0 | 0 | 100% | ||
erez24 | 0 | 0 | 100% | ||
blocfrance | 0 | 0 | 100% | ||
filiphosko | 0 | 0 | 100% | ||
davidlionfish | 0 | 0 | 100% |
Thanks for the great guide! It seems like if you're dedicating a Raspberry Pi to nothing but QTUM staking it would make sense to not encrypt it. If I understand correctly, encrypting it makes it less likely to remain staking in the event of a reboot (e.g. power outage), and also introduces the need for re-entering an unlock password whenever the unlocked_until expires. Is it possible to encrypt it so and unlock it with a command line option that mentions it should remain unlocked for the next 365 days even in the event of reboots?
author | anuzis |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20170927t200016903z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-09-27 20:00:15 |
last_update | 2017-09-27 20:00:15 |
depth | 1 |
children | 1 |
last_payout | 2017-10-04 20:00:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 536 |
author_reputation | 0 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,115,493 |
net_rshares | 0 |
I do recommend encrypting your wallet, but I have another guide to cover that. I'd be careful leaving any trace of your passphrase on the Raspberry Pi. Instead, it's better to have a watchdog process to inform you if the `qtumd` process goes down or if the `qtumd` PID changes (so that you can manually bring it up again, then securely unlock it). This topic is a bit more advanced though... but you have the right idea.
author | cryptominder |
---|---|
permlink | re-anuzis-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171012t014329894z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-10-12 01:43:30 |
last_update | 2017-10-12 01:43:30 |
depth | 2 |
children | 0 |
last_payout | 2017-10-19 01:43:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 423 |
author_reputation | 32,892,869,283 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,446,365 |
net_rshares | 0 |
Great post! Very excited about next posts about OLED display and Ansible automation!!!
author | cashbrudi |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20180211t205913847z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2018-02-11 20:59:12 |
last_update | 2018-02-11 20:59:12 |
depth | 1 |
children | 0 |
last_payout | 2018-02-18 20:59:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 86 |
author_reputation | 1,897,353,004 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 36,757,422 |
net_rshares | 0 |
Everybody new to staking also check QTUM's official wiki post on how to setup the wallet for staking --> https://github.com/qtumproject/qtum/wiki/Installing-Qtum-on-Raspberry-Pi it's a bit more up to date but not as detailed as this post here.
author | cashbrudi |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20180211t210708378z |
category | qtum |
json_metadata | {"tags":["qtum"],"links":["https://github.com/qtumproject/qtum/wiki/Installing-Qtum-on-Raspberry-Pi"],"app":"steemit/0.1"} |
created | 2018-02-11 21:07:09 |
last_update | 2018-02-11 21:08:06 |
depth | 1 |
children | 0 |
last_payout | 2018-02-18 21:07:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 245 |
author_reputation | 1,897,353,004 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 36,758,852 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
marotron | 0 | 0 | 100% |
The **Qtum mainnet** binary (Ignition v1.0.1) has now been released. I'm running a wallet/node on the RPi 3 using the `qtum-0.14.3-arm-linux-gnueabihf.tar.gz` binary found at https://github.com/qtumproject/qtum/releases/tag/mainnet-ignition-v1.0.1 . The instructions in the post above are exactly the same for the mainnet binary release, except for the 'tar' command (i.e. make sure to specify `qtum-0.14.3-arm-linux-gnueabihf.tar.gz` instead). Also, if you ran a previous version of the Qtum wallet/node (e.g. Skynet), then make sure to delete (or rename) the ~/.qtum directory before starting the mainnet (Ignition) wallet/node. **NOTE**: The post didn't specify it, but you need to edit `/etc/systemd/system/qtumd.service` using **sudo** (e.g. `$ sudo vi /etc/systemd/system/qtumd.service`).
author | cryptominder |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20170914t033422408z |
category | qtum |
json_metadata | {"tags":["qtum"],"links":["https://github.com/qtumproject/qtum/releases/tag/mainnet-ignition-v1.0.1"],"app":"steemit/0.1"} |
created | 2017-09-14 03:34:27 |
last_update | 2017-09-14 03:49:57 |
depth | 1 |
children | 9 |
last_payout | 2017-09-21 03:34:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.452 HBD |
curator_payout_value | 0.150 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 798 |
author_reputation | 32,892,869,283 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,822,067 |
net_rshares | 210,525,006,515 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
otraza | 0 | 0 | 100% | ||
jamerican-js | 0 | 0 | 100% | ||
thing-2 | 0 | 210,525,006,515 | 100% | ||
luisssmo | 0 | 0 | 100% | ||
michaelguerin | 0 | 0 | 100% | ||
crazyhendrix | 0 | 0 | 100% | ||
blocfrance | 0 | 0 | 100% |
Thanks for the guide. I got it working in my raspberry pi 3. All that's left to do now is wait for the swap to happen before we can start staking on the mainnet.
author | crazyhendrix |
---|---|
permlink | re-cryptominder-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20170923t060053642z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-09-23 06:00:57 |
last_update | 2017-09-23 06:00:57 |
depth | 2 |
children | 0 |
last_payout | 2017-09-30 06:00:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 162 |
author_reputation | 40,280,930 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 15,680,156 |
net_rshares | 619,520,000 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
michaelguerin | 0 | 619,520,000 | 100% |
Can I suggest adding an alias to the .bashrc? Instead of typing : ```~/qtum-wallet/bin/qtum-cli```, we can add to ~/.bashrc: ```alias qtum-cli='~/qtum-wallet/bin/qtum-cli'``` That way, we can just execute qtum-cli from the wallet directory by typing: ```qtum-cli```
author | crazyhendrix |
---|---|
permlink | re-cryptominder-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20170923t061213334z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-09-23 06:12:12 |
last_update | 2017-09-23 06:13:36 |
depth | 2 |
children | 3 |
last_payout | 2017-09-30 06:12:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 267 |
author_reputation | 40,280,930 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 15,680,803 |
net_rshares | 0 |
Yes, or add `~/qtum-wallet/bin` into your `$PATH`. I should indeed have suggested it.
author | cryptominder |
---|---|
permlink | re-crazyhendrix-re-cryptominder-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171012t013730665z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-10-12 01:37:30 |
last_update | 2017-10-12 01:37:30 |
depth | 3 |
children | 0 |
last_payout | 2017-10-19 01:37:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 86 |
author_reputation | 32,892,869,283 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,446,017 |
net_rshares | 0 |
I cant connect to my wallet using qtum-cli : $ ~/qtum-wallet/bin/qtum-cli getinfo error: couldn't connect to server: unknown (code -1) (make sure server is running and you are connecting to the correct RPC port) I know nothing about .cookie so I don't know what to do. Any help?
author | lorenzomyle |
---|---|
permlink | re-crazyhendrix-re-cryptominder-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20170926t192815492z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-09-26 19:28:15 |
last_update | 2017-09-26 19:28:15 |
depth | 3 |
children | 1 |
last_payout | 2017-10-03 19:28:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 280 |
author_reputation | 0 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,014,037 |
net_rshares | 0 |
meep
author | ionlysaymeep |
---|---|
permlink | re-cryptominder-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20170914t033422408z-20170914t042755605z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"meep_bot/0.0.1"} |
created | 2017-09-14 04:27:57 |
last_update | 2017-09-14 04:27:57 |
depth | 2 |
children | 0 |
last_payout | 2017-09-21 04:27:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4 |
author_reputation | 754,962,855,156 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,825,444 |
net_rshares | 0 |
I am struggling with step 5, i do not have the wlan0 sub folder, nor am i able to create it. I created the file on my pi desktop but cannot put this anywhere in the etc folder. I do not have permissions to do this. Is there another way of disabling the power management?
author | tloneil75 |
---|---|
permlink | re-cryptominder-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171012t164219347z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-10-12 16:42:21 |
last_update | 2017-10-12 16:42:21 |
depth | 2 |
children | 2 |
last_payout | 2017-10-19 16:42:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 273 |
author_reputation | 3,250,989 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,507,745 |
net_rshares | 0 |
Hey. I had the same problem. Try this: http://www.thelowercasew.com/disabling-wifi-power-management-permanently-for-raspberry-pi-3-with-raspbian-jessie (it worked for me! ) good luck!
author | elbapu |
---|---|
permlink | re-tloneil75-re-cryptominder-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171013t193203902z |
category | qtum |
json_metadata | {"tags":["qtum"],"links":["http://www.thelowercasew.com/disabling-wifi-power-management-permanently-for-raspberry-pi-3-with-raspbian-jessie"],"app":"steemit/0.1"} |
created | 2017-10-13 19:32:03 |
last_update | 2017-10-13 19:32:03 |
depth | 3 |
children | 0 |
last_payout | 2017-10-20 19:32:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 183 |
author_reputation | 43,376,409 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,609,862 |
net_rshares | 0 |
do you perhaps need to put 'sudo' in front of the command?
author | olivers-wilde |
---|---|
permlink | re-tloneil75-re-cryptominder-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171025t033734134z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-10-25 03:37:42 |
last_update | 2017-10-25 03:37:42 |
depth | 3 |
children | 0 |
last_payout | 2017-11-01 03:37:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 58 |
author_reputation | 101,310,283,965 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,499,350 |
net_rshares | 0 |
A few quick updates: 1. Please make sure to use the latest Quantum wallet/node. As of Oct. 11th, 2017 this is https://github.com/qtumproject/qtum/releases/tag/mainnet-ignition-v1.0.2 . You'll want to download the `qtum-0.14.3-arm-linux-gnueabihf.tar.gz` file. 1. Some people have mentioned having difficulties with **Etcher** on Windows (e.g. https://github.com/resin-io-modules/drivelist/issues/208). Windows users may want to look at using https://www.raspberrypi.org/documentation/installation/installing-images/windows.md instead. 1. If you're using Windows, the documentation at https://www.raspberrypi.org/documentation/remote-access/ssh/windows.md can be helpful for using PuTTY. If your wifi is set up correctly on your Raspberry Pi, the `Host Name` (to enter in PuTTY) should be `raspberrypi.local`.
author | cryptominder |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171012t041356570z |
category | qtum |
json_metadata | {"tags":["qtum"],"links":["https://github.com/qtumproject/qtum/releases/tag/mainnet-ignition-v1.0.2","https://github.com/resin-io-modules/drivelist/issues/208","https://www.raspberrypi.org/documentation/remote-access/ssh/windows.md"],"app":"steemit/0.1"} |
created | 2017-10-12 04:13:57 |
last_update | 2017-10-12 04:13:57 |
depth | 1 |
children | 1 |
last_payout | 2017-10-19 04:13:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.447 HBD |
curator_payout_value | 0.146 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 815 |
author_reputation | 32,892,869,283 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,454,916 |
net_rshares | 245,394,537,108 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thing-2 | 0 | 232,630,261,625 | 100% | ||
techtek | 0 | 12,764,275,483 | 100% | ||
kostika | 0 | 0 | 100% |
I followed this guide to the T and it's been 3 days since I've sent qtum to my wallet and it is still showing a 0.00000000 balance. Am I missing something?
author | johniwad |
---|---|
permlink | re-cryptominder-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171129t193417839z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-11-29 19:34:18 |
last_update | 2017-11-29 19:34:18 |
depth | 2 |
children | 0 |
last_payout | 2017-12-06 19:34:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 155 |
author_reputation | 0 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,919,754 |
net_rshares | 0 |
or if your a simpleton like me just deposit your Qtum at Btcpop.co
author | dalesatoshi |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20180206t215232421z |
category | qtum |
json_metadata | {"tags":["qtum"],"image":["https://steemitimages.com/DQmNeWciQeTnsXPNffK7tvA2T4W8Q7ZooFRCJoRYB6j1S8n/Staking%20Qtum.png"],"app":"steemit/0.1"} |
created | 2018-02-06 21:52:21 |
last_update | 2018-02-06 21:52:21 |
depth | 1 |
children | 0 |
last_payout | 2018-02-13 21:52:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 179 |
author_reputation | -15,000,098,019 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 35,502,584 |
net_rshares | 0 |
very helpful, thanks
author | daydoesit |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20180122t002049538z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2018-01-22 00:21:12 |
last_update | 2018-01-22 00:21:12 |
depth | 1 |
children | 0 |
last_payout | 2018-01-29 00:21:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | 430,501,122 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 31,235,135 |
net_rshares | 0 |
Since qtumd 0.18, the PID is qtum.pid, no longer qtumd.pid. Your guide is widely referenced (thank you and congrats), so you might want to update the instructions.
author | eddieb |
---|---|
permlink | pwi383 |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2019-08-19 20:21:39 |
last_update | 2019-08-19 20:21:39 |
depth | 1 |
children | 0 |
last_payout | 2019-08-26 20:21:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 163 |
author_reputation | 142,791,435 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 89,716,990 |
net_rshares | 0 |
How long does reindex take on a Pi 3? I'm going into 24hrs here (chain height ~192k)
author | eddieb |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20180717t170149381z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2018-07-17 17:01:48 |
last_update | 2018-07-17 17:01:48 |
depth | 1 |
children | 0 |
last_payout | 2018-07-24 17:01:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 84 |
author_reputation | 142,791,435 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 65,014,360 |
net_rshares | 0 |
Many thanks for this Guide. It was awesome. I had some difficulties in setting it up with some things which I googled them. Really nice and clean guide, at least for me that I have no knowledge of development at all.
author | elbapu |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171013t193448690z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-10-13 19:34:48 |
last_update | 2017-10-13 19:34:48 |
depth | 1 |
children | 0 |
last_payout | 2017-10-20 19:34:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 216 |
author_reputation | 43,376,409 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,610,029 |
net_rshares | 0 |
Thanks for the guide. I have a problem here. I've sent some qrc20 token to my qtum wallet in pi, and now I can't see it. I can see the token in qtum explorer but not in pi. Am I missing something?
author | gekteng |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20180121t200219244z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2018-01-21 20:02:18 |
last_update | 2018-01-21 20:02:18 |
depth | 1 |
children | 0 |
last_payout | 2018-01-28 20:02:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 196 |
author_reputation | 0 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 31,187,487 |
net_rshares | 0 |
Hi. I have a question. In case of qtum-qt, you recommend backup wallet before encryption. but in this case, you backup wallet file after encryption. Is there any difference??
author | iamabluetiger |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171005t070624222z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-10-05 07:06:24 |
last_update | 2017-10-05 07:06:24 |
depth | 1 |
children | 2 |
last_payout | 2017-10-12 07:06:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 174 |
author_reputation | 0 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,833,518 |
net_rshares | 0 |
Ah, only because the wallet was known to be empty/unused in this case.
author | cryptominder |
---|---|
permlink | re-iamabluetiger-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171012t014626061z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-10-12 01:46:24 |
last_update | 2017-10-12 01:46:24 |
depth | 2 |
children | 1 |
last_payout | 2017-10-19 01:46:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 70 |
author_reputation | 32,892,869,283 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,446,535 |
net_rshares | 0 |
Does that mean it's actually better to backup the wallet before encryption in this case, too? If so: Why is that?
author | davidlausb |
---|---|
permlink | re-cryptominder-re-iamabluetiger-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171222t110301090z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-12-22 11:02:57 |
last_update | 2017-12-22 11:02:57 |
depth | 3 |
children | 0 |
last_payout | 2017-12-29 11:02:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 113 |
author_reputation | 0 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,677,537 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
davidlausb | 0 | 0 | 0% |
I did not know you could stake Qtum I'm just starting to learn and like what I hear
author | immetal6669 |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20180109t064625886z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2018-01-09 06:46:24 |
last_update | 2018-01-09 06:46:24 |
depth | 1 |
children | 0 |
last_payout | 2018-01-16 06:46:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.237 HBD |
curator_payout_value | 0.075 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 83 |
author_reputation | 1,124,005,066,656 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,184,525 |
net_rshares | 29,278,419,814 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
immetal6669 | 0 | 29,278,419,814 | 100% |
Thank you for sharing. Great!! Should port forwarding be activated? I know it worked without, but any advantages/disadvantages?
author | joewilder |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20180222t085118486z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2018-02-22 08:51:18 |
last_update | 2018-02-22 08:51:18 |
depth | 1 |
children | 0 |
last_payout | 2018-03-01 08:51:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 127 |
author_reputation | 139,719,996,143 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 39,556,716 |
net_rshares | 0 |
How do you send coins out of your raspberry Pi?
author | kennyofcoins |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171106t131614483z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-11-06 13:16:15 |
last_update | 2017-11-06 13:16:15 |
depth | 1 |
children | 0 |
last_payout | 2017-11-13 13:16:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 47 |
author_reputation | 0 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,604,011 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
marotron | 0 | 0 | 100% |
why tell me "maxconnections=24?" i recommend "ExecStart=/home/pi/qtum-wallet/bin/qtumd -daemon" then in-outbound max 132 node....
author | lookeron76 |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20180509t223736828z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2018-05-09 22:38:21 |
last_update | 2018-05-09 22:38:21 |
depth | 1 |
children | 0 |
last_payout | 2018-05-16 22:38:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 130 |
author_reputation | 0 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 54,836,534 |
net_rshares | 0 |
The adress given by the getaccountaddress is invalid on Cryptopia. how can I get a valide adresse ? Thanks
author | lorenzomyle |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171001t083148232z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-10-01 08:31:48 |
last_update | 2017-10-01 08:31:48 |
depth | 1 |
children | 1 |
last_payout | 2017-10-08 08:31:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 106 |
author_reputation | 0 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,450,571 |
net_rshares | 0 |
Hi, the address is invalid because the token swap from ERC-20 to Qtum has not happened yet. The swap from ERC-20 tokens to Qtum’s functional network tokens will take place on October 4th, 2017. The participating exchanges will be ChBTC, Bittrex, AllCoin, BTer, and Coinone. You will need to send you tokens to one of the exchanges above to be converted to Qtum on October 4th then you will be able to send them to your wallet address.
author | trevsadev |
---|---|
permlink | re-lorenzomyle-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171002t214936579z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-10-02 21:49:39 |
last_update | 2017-10-02 21:49:39 |
depth | 2 |
children | 0 |
last_payout | 2017-10-09 21:49:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 434 |
author_reputation | 14,079,759 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,607,996 |
net_rshares | 0 |
First I want say that I love the tutorial. It is just awesome. One of the best tutorial I have ever seen. Nevertheless, I still have some questions. I managed to install and setup the wallet on rasPi 3, no problems, just followed the steps. I unlocked the wallet and transferred the qtum coins. After some time when I executed the following command: ` ~/qtum-wallet/bin/qtum-cli getstakinginfo` it was returned the following: ```javascript { "enabled": true, "staking": true, "errors": "", "currentblocksize": 1000, "currentblocktx": 0, "pooledtx": 3, "difficulty": 2128098.48440742, "search-interval": 445306, "weight": 2095900000, "netstakeweight": 915562123492605, "expectedtime": 55914858 } ``` However, after a week I am still not sure if I am really staking, because my balance did not change and when I run: `~/qtum-wallet/bin/qtum-cli getwalletinfo | grep -E 'stake|balance'` I get: ``` "balance": 20.95900000, "stake": 0.00000000, "unconfirmed_balance": 0.00000000, "immature_balance": 0.00000000, ``` My questions are: 1. Am I staking already? 2. What does `"stake"` in `qtum-cli getwalletinfo` mean? 3. Do I have enough coins to stake or maybe there is no point to stake if you have less than x coins? I really wished qtum staking (at least on raspeberry pi) was more transparent (like neo). Thanks for all the answers.
author | marotron |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171023t215437413z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-10-23 21:54:42 |
last_update | 2017-10-23 21:54:42 |
depth | 1 |
children | 0 |
last_payout | 2017-10-30 21:54:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,364 |
author_reputation | -2,895,894,661 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,404,321 |
net_rshares | 0 |
Awesome guide, though would appreciate if you could still put up an option to stake on Digital Ocean or similar (I have a cloud server running for other reasons, so it would be no extra cost to use it for staking, too).
author | mattdoyle |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171007t235535580z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-10-07 23:55:39 |
last_update | 2017-10-07 23:55:39 |
depth | 1 |
children | 0 |
last_payout | 2017-10-14 23:55:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 219 |
author_reputation | 2,591,920,800 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,053,752 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
olivers-wilde | 0 | 0 | 100% |
Great post, I am thinking move some staking wallet from my window laptop to pi3, because I worry my laptop maybe break down after 24/7 no stop working.
author | mgpeng |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171108t121902761z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-11-08 12:19:06 |
last_update | 2017-11-08 12:19:06 |
depth | 1 |
children | 0 |
last_payout | 2017-11-15 12:19:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 151 |
author_reputation | 3,479,238,861 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,776,499 |
net_rshares | 0 |
Great post, I am thinking move some staking wallet from my window laptop to pi3, because I worry my laptop maybe break down after 24/7 no stop working.
author | mgpeng |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171108t121942166z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-11-08 12:19:42 |
last_update | 2017-11-08 12:19:42 |
depth | 1 |
children | 0 |
last_payout | 2017-11-15 12:19:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 151 |
author_reputation | 3,479,238,861 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,776,544 |
net_rshares | 0 |
Hi, I followed the tutorial to install it in a Raspberry Pi 1. But when I try to run the binary I get a segmentation fault error. And now I'm stuck. Does it not run in a Raspberry Pi 1? I am sure I downloaded the binary for ARM... Thanks, Nuno
author | nununo |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171003t110605877z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-10-03 11:06:06 |
last_update | 2017-10-03 11:06:06 |
depth | 1 |
children | 1 |
last_payout | 2017-10-10 11:06:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 243 |
author_reputation | 0 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,656,684 |
net_rshares | 0 |
I don't recommend using the Raspberry Pi 1 for this. If you do try, make sure that you're running the latest OS (i.e. Stretch) -- and you may need to enable swapping (to give the RPi more memory). Enabling swapping isn't a super-great idea on an SDCard though...
author | cryptominder |
---|---|
permlink | re-nununo-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171012t014539587z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-10-12 01:45:42 |
last_update | 2017-10-12 01:45:42 |
depth | 2 |
children | 0 |
last_payout | 2017-10-19 01:45:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 264 |
author_reputation | 32,892,869,283 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,446,496 |
net_rshares | 0 |
Nice guide! I followed it to setup staking on a Linux AWS instance, free for the first year and then 36$/year, even cheaper than a raspberry! Thanks
author | olivertwist |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171023t100138625z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-10-23 10:01:45 |
last_update | 2017-10-23 10:01:45 |
depth | 1 |
children | 1 |
last_payout | 2017-10-30 10:01:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 148 |
author_reputation | 0 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,367,734 |
net_rshares | 1,160,563,776 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
marotron | 0 | 1,160,563,776 | 100% |
hi, i want to try the same thing with a Linus AWS instance. Is the setup identical to this one? thank you
author | bereska |
---|---|
permlink | re-olivertwist-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171121t192122518z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-11-21 19:21:21 |
last_update | 2017-11-21 19:21:21 |
depth | 2 |
children | 0 |
last_payout | 2017-11-28 19:21:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 105 |
author_reputation | 0 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,122,239 |
net_rshares | 0 |
Excellent post, you have no idea how much time you saved me!!
author | otraza |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171030t030801071z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-10-30 03:08:03 |
last_update | 2017-10-30 03:08:03 |
depth | 1 |
children | 0 |
last_payout | 2017-11-06 03:08:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 61 |
author_reputation | 12,737,122,965 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 18,934,220 |
net_rshares | 0 |
Question, I have setup my raspberry pi. My pi is at home, can I use another pc (at work) to log into my qtum core wallet without signing off the wallet that's running on the pi???
author | propel |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20180416t171048675z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2018-04-16 17:10:48 |
last_update | 2018-04-16 17:10:48 |
depth | 1 |
children | 0 |
last_payout | 2018-04-23 17:10:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 180 |
author_reputation | 1,454,002,718 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 50,416,268 |
net_rshares | 0 |
Hi, after wrting correctly : ~/qtum-wallet/bin/qtum-cli -stdin MYPASSPHRASEHERE 99999 false and then CTRL+D i got the following error : Error : Method not found code error : -32116 Thanks in advance
author | ryuzaki |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20180108t105629571z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2018-01-08 10:56:27 |
last_update | 2018-01-08 19:18:39 |
depth | 1 |
children | 2 |
last_payout | 2018-01-15 10:56:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 206 |
author_reputation | 3,283,984,459 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 27,974,618 |
net_rshares | 0 |
same for me
author | ryuzaki |
---|---|
permlink | re-ryuzaki-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20180108t140418592z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2018-01-08 14:04:15 |
last_update | 2018-01-08 14:04:15 |
depth | 2 |
children | 0 |
last_payout | 2018-01-15 14:04:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 3,283,984,459 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,010,568 |
net_rshares | 0 |
does "txcount:1" means that there were a transfer ?
author | ryuzaki |
---|---|
permlink | re-ryuzaki-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20180108t153440238z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2018-01-08 15:34:39 |
last_update | 2018-01-08 19:16:21 |
depth | 2 |
children | 0 |
last_payout | 2018-01-15 15:34:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | 3,283,984,459 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,028,522 |
net_rshares | 0 |
I'm having an issue with transferring Qtum into the Wallet, I followed your steps . Got everything running - On Step 10 - Encrypting and Unlocking Your Wallet. $ ~/qtum-wallet/bin/qtum-cli -stdin encryptwallet I can see "unlocked_until": 0, and I set that to 99999999 I created a new account with $ ~/qtum-wallet/bin/qtum-cli getaccountaddress "accountname" Account info show default account "" and "accountname" Does "getaccountaddress" create a new account and key? I assume It does because it shows up on listaccounts. I transferred 1 Qtum from Binance to "accountname" public key. Binance confirm transfer completed. But when I check with $ ~/qtum-wallet/bin/qtum-cli getwalletinfo My balance is 0.0000000 What might I have missed or done wrong? Do I need to select which account to get info on? If so how I select the account I want to display the info? Thanks in advance.
author | sacen |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171013t032229377z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-10-13 03:22:30 |
last_update | 2017-10-13 03:23:21 |
depth | 1 |
children | 3 |
last_payout | 2017-10-20 03:22:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 888 |
author_reputation | 756,505,281 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,547,089 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kostika | 0 | 0 | 100% |
i'm in the same, the worst is i'm almost sure ( 99.5% ) i saw it once : 0.6 QTUM and then, i tried again to watch it after my dinner, like 1 hour afer and they disapear. I'm exactly in the same case, with another "accountname" plus de default one. Thanks if you can return about this
author | ryuzaki |
---|---|
permlink | re-sacen-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20180108t154321616z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2018-01-08 15:43:18 |
last_update | 2018-01-08 15:43:18 |
depth | 2 |
children | 0 |
last_payout | 2018-01-15 15:43:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 287 |
author_reputation | 3,283,984,459 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 28,030,279 |
net_rshares | 0 |
I have exactly the same issue now. Did you manage to make it work? :)
author | solaris234 |
---|---|
permlink | re-sacen-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171014t143838035z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-10-14 14:38:39 |
last_update | 2017-10-14 14:38:39 |
depth | 2 |
children | 1 |
last_payout | 2017-10-21 14:38:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 69 |
author_reputation | 0 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,672,183 |
net_rshares | 0 |
In my last installation I had error with the passphrase step. So I format the SD card and re-burn Raspbian and did the above steps again. It worked some how. GL
author | sacen |
---|---|
permlink | re-solaris234-re-sacen-re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171015t092011181z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-10-15 09:20:12 |
last_update | 2017-10-15 09:20:12 |
depth | 3 |
children | 0 |
last_payout | 2017-10-22 09:20:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 160 |
author_reputation | 756,505,281 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,734,168 |
net_rshares | 0 |
Awesome post, to bad i just now find it. ( If you want you can join and post these kind of things in the SteemPi Discord server: https://discord.gg/RMXbqmG i shared it there now for you, if you make a follow up post on your Pi project, please also share it there with us) Upvoted and following you.
author | techtek |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171015t232343965z |
category | qtum |
json_metadata | {"tags":["qtum"],"links":["https://discord.gg/RMXbqmG"],"app":"steemit/0.1"} |
created | 2017-10-15 23:23:45 |
last_update | 2017-10-15 23:23:45 |
depth | 1 |
children | 0 |
last_payout | 2017-10-22 23:23:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 303 |
author_reputation | 28,283,249,927,543 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 17,785,925 |
net_rshares | 0 |
Thanks for this detailed guide!
author | unomas |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171216t232320988z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-12-16 23:23:21 |
last_update | 2017-12-16 23:23:21 |
depth | 1 |
children | 0 |
last_payout | 2017-12-23 23:23:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 31 |
author_reputation | 971,933,356,391 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 23,808,634 |
net_rshares | 0 |
Hello cryptominder, thank you for the great tutorial! I'm planning to use my P3 as a Kodi Media Center and QTUM staking device. What need to be done to run the QTUM wallet on OpenELEC for PI instead of RASPBIAN STRETCH LITE? Is there any difference? Thank you in advance!
author | uua22 |
---|---|
permlink | re-cryptominder-qtum-staking-tutorial-using-qtumd-on-a-raspberry-pi-3-20171006t185511568z |
category | qtum |
json_metadata | {"tags":["qtum"],"app":"steemit/0.1"} |
created | 2017-10-06 18:55:12 |
last_update | 2017-10-06 18:55:12 |
depth | 1 |
children | 0 |
last_payout | 2017-10-13 18:55:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 273 |
author_reputation | 86,783,739 |
root_title | "Qtum Staking Tutorial using qtumd on a Raspberry Pi 3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,942,619 |
net_rshares | 0 |