Wallet Installation Guide for Staking on Raspberry PI

Size: px
Start display at page:

Download "Wallet Installation Guide for Staking on Raspberry PI"

Transcription

1 Wallet Installation Guide for Staking on Raspberry PI V2.1 November 2018

2 CONTENTS 01. Version History Introduction Prerequisites Installation Steps Add an address or transfer funds Conclusion Addendum A Add an Existing Address to Your Wallet Addendum B Control your Masternodes Addendum C Backup Your wallet.dat File to USB Drive Addendum D Update your wallet... 27

3 The Future of Data Management Page 3 of Version History Version Date Author Remarks 1.0 August 5 th, 2018 tom_d#9324 Initial document 1.1 August 5 th, 2018 tom_d#9324 Small corrections, changed listaccounts command to listaddressgroupings 1.2 August 8 th, August 13 th, 2018 tom_d#9324 tom_d#9324 Fixed some bugs and gave a bit more explanation after user testing Added Addendum C 2.0 September 18 th, November 4 th, 2018 tom_d#9324 Updated document template Updated wallet to Updated bootstrap location Added Addendum D tom_d#9324 Updated wallet to 3.0 Updated bootstrap location Fixed some typos

4 The Future of Data Management Page 4 of Introduction This guide will explain step-by-step how to use the ARM build of the Aegeus wallet to install and configure staking on a Raspberry Pi using the command line interface (CLI). Note: This guide was made on a Raspberry Pi running the full Raspbian OS, but it should probably work on a Ubuntu image also. Note2: Other ARM-based systems like the Rock64 may also be able to use these binaries (this has yet to be tested) Why do we want to use CLI instead of GUI (Graphical-userinterface)? The GUI wallet is much more power and memory hungry compared to the CLI version. So next to drawing more power, it will probably be more unstable and may crash from time to time. You want this Pi to be as stable and power-friendly as possible because it will run 24/7 for staking.

5 The Future of Data Management Page 5 of Prerequisites - Raspberry Pi - Raspbian image burned on SD card - Network configured (WIFI or hard wired (preferred)) - SSH enabled

6 The Future of Data Management Page 6 of Installation Steps 1. Open an SSH session to your Pi and login as root (Use your favorite SSH tool for this like terminal, Putty, Bitvise, ). The standard user for a Raspberry Pi running Raspbian is pi. Note: Optionally, you can do this in the terminal on the Pi directly when using a screen/keyboard. ssh pi@<ip address> su - 2. If the password for the root user is unknown to you, you will probably still need to set it as below: sudo passwd root

7 The Future of Data Management Page 7 of Create a working directory. cd /root/ mkdir aegeus cd aegeus 4. Download and extract the wallet. Go to and find the latest ARM build (for example Aegeus ARM.tar.gz). Download and extract the build to the Pi using the below command: wget tar -zxvf Aegeus ARM.tar.gz

8 The Future of Data Management Page 8 of Copy the wallet files to /usr/local/bin to make them accessible from everywhere: cd Aegeus ARM cp * /usr/local/bin 6. Create the aegeus data directory. mkdir /root/.aegeus cd /root/.aegeus 7. Install Install the bootstrap to make the blockchain sync go (very) fast. wget Extract the bootstrap. tar -xvf QmYsPHKNJTqvcy7w2DNoL5UUue4MEwAPu15gLfGh8LoqLH 8. Configure aegeus. nano /root/.aegeus/aegeus.conf Add the following lines to the file. For the X's, press 16+ random keys on the keyboard. You don't need to record or remember these random values: staking=1 rpcuser=xxxxxxxxxxxx rpcpassword=xxxxxxxxxxxxxxxxxxxxxx

9 The Future of Data Management Page 9 of 32 To exit the nano text editor, type the following: 1. Ctrl+x 2. Yes 3. Enter 9. Configure the aegeus service. nano /etc/systemd/system/aegeus.service Add the following lines to the file: [Unit] Description=Aegeus service After=network.target [Service] User=root Group=root Type=forking #PIDFile=/root/.aegeus/aegeus.pid ExecStart=/usr/local/bin/aegeusd -daemon -conf=/root/.aegeus/aegeus.conf -datadir=/root/.aegeus ExecStop=-/usr/local/bin/aegeus-cli -conf=/root/.aegeus/aegeus.conf -datadir=/root/.aegeus stop Restart=always PrivateTmp=true TimeoutStopSec=60s TimeoutStartSec=10s StartLimitInterval=120s StartLimitBurst=5 [Install] WantedBy=multi-user.target To leave the nano text editor, type the following:

10 The Future of Data Management Page 10 of Ctrl+x 2. Yes 3. Enter 10. Configure the Aegeus service to start when the system starts. systemctl daemon-reload systemctl enable Aegeus.service 11. Clean up history after install. rm /root/.aegeus/qmysphknjtqvcy7w2dnol5uuue4mewapu15glfgh8loqlh rm -rf /root/aegeus 12. (optional) Update the packages on your Pi Before we start the Aegeus wallet for the first time, you can take the opportunity to update all the packages (including firmware) on your Raspberry Pi apt-get update apt-get upgrade 13. Start the Aegeus wallet for the first time. aegeusd -daemon 14. Waiting for the blockchain to sync

11 The Future of Data Management Page 11 of 32 Type in aegeus-cli getinfo to display general wallet information to determine if wallet is ready staking. Continue to type aegeus-cli getinfo to obtain wallet information. "Blockchain information not yet available" or "Loading block index" just means the wall is still starting, which takes a few minutes and quite a bit longer on a single board computer. aegeus-cli getinfo 15. Encrypt your wallet. Remember to be safe and always encrypt the wallet before holding any Aegeus. Do not lose this password since it needed to unlock the wallet or access funds. The following command provides the wallet with a password: aegeus-cli encryptwallet <mysupercomplexpasswordhere> The wallet will turn off once it has completed encrypting. It needs to be restarted again. systemctl start Aegeus.service Note that the systemctl start command does not give any output. Check if the service was successfully started with systemctl status Aegeus.service or just check aegeus-cli getinfo. systemctl status Aegeus.service aegeus-cli getinfo

12 The Future of Data Management Page 12 of 32 Note: We prefer using systemctl start over aegeusd -daemon to start the service because systemctl has built in error routines. For example, it will automatically restart the service when it crashes. 16. Unlock the wallet. Now to be able to stake coins unlock the wallet for staking only. Note: To not store your password in the command history, simply put a space before the command. walletpassphrase <passphrase> <unlock time> <for staking/anonymization only true/false> <passphrase> is the passphrase created in the previous step. <unlock time> this is the time the wallet will stay unlocked. Use 0 to enable it forever (or better: until the service restarts). <for staking/anonymization only true/false> For staking only, use true here. for example: aegeus-cli walletpassphrase 6zArYuNpWUrDV2F3N3hdyA 0 true Notice the space before the command to remove the password from the command history cache. Now the coins in the wallet are ready for staking. The process to add AEG coins to the wallet is explained in the following chapter.

13 The Future of Data Management Page 13 of Add an address or transfer funds To be able to stake, there needs to be funds in the wallet. There is more than one way to do this: Create a new address and transfer funds (this is the preferred way) or can import funds using an existing private key. This can be done in the GUI wallet or through CLI. 1. When using the Aegeus GUI wallet, the CLI service has to stop prior executing the GUI wallet (they can t run simultaneously). systemctl stop Aegeus.service 2. Activate VNC server on the Raspbian desktop to be able to remotely control the graphical user interface (if you connect a keyboard, mouse and screen, this can also be done locally off course). Note: If working directly on the Pi desktop, skip to step 5, but do a logoff and log on with the root user then.

14 The Future of Data Management Page 14 of 32 raspi-config The Raspberry Pi configuration tool will open. Choose 5. Interfacing Options Now choose P3 VNC.

15 Select Yes. The Future of Data Management Page 15 of 32

16 The Future of Data Management Page 16 of 32 Click OK Select Finish to exit tool.

17 The Future of Data Management Page 17 of Download a VNC viewer (free remote desktop tool) for your Operating System. For example: 4. Open the VNC viewer and create a new connection to your Pi. Key in the IP address of the Pi and push Enter. Put in the IP address of you Pi and push Enter.

18 The Future of Data Management Page 18 of 32 Now open this connection. The first time it will ask for the password. Use the root user and input the password. The Pi desktop will now open.

19 The Future of Data Management Page 19 of Start the graphical Aegeus wallet with the following steps: Open File Manager in the top left of the screen (yellow icon) Navigate to /usr/local/bin and open aegeus-qt This wallet will now look exactly the same as the windows or Mac OSX wallet. Wait for the wallet to start up and sync. Once the wallet starts, unlock the wallet, create addresses, transfer funds, etc.

20 The Future of Data Management Page 20 of 32 Note: To add an existing address, please see Addendum A. This is helpful when moving a wallet from another computer to the Pi. 6. As soon as the wallet is ready, close it. Start the wallet or system in command-line mode again because this is more stable. Exit the wallet. It might take a minute or two for the wallet to exit and close completely. Go back to you SSH session and start the Aegeus service again systemctl start Aegeus.service Note: If opening a new SSH session, become root first with su -. Wait for the service to start up (few seconds to a few minutes) and then check coin balance. aegeus-cli getinfo Unlock your wallet for staking only. aegeus-cli walletpassphrase <yourpassphrase> 0 true Check if the wallet is staking. aegeus-cli getstakingstatus

21 The Future of Data Management Page 21 of 32 All these outputs must show true for staking to be active. Note: If coins were just transferred to a new address, it is possible that mintablecoins is false in the first 30 minutes or so. Finally remove all command history from Pi. history -c

22 The Future of Data Management Page 22 of Conclusion The Raspberry Pi is now staking coins and will continue to do so. The easiest way to follow transactions is by using the Aegeus blockchain explorer shown here: Search the coin address and see which transactions have been made. To see the addresses through CLI on the Raspberry Pi: aegeus-cli listaddressgroupings Also, to use the Raspberry Pi as a controlling (cold) wallet for masternodes, please see Addendum B Addendum A Add an Existing Address to Your Wallet To transfer an existing address from one wallet to another, use the following steps: Open the debug console in the primary wallet. Dump the private key for your address. dumpprivkey <aegeusaddress> Repeat the above steps to transfer AEG coins. If addresses are not known, use the following commands. listaddressgroupings

23 The Future of Data Management Page 23 of 32 NEVER give this private key to anyone. Securely save it somewhere in case there is a need to restore the wallet (like an offline USB stick in your safe deposit box). If anyone gets hold of this key, they can steal your coins!! To add private keys to the Raspberry Pi wallet, first unlock the wallet (not only for staking, but fully). aegeus-cli walletpassphrase <yourpassphrase> 0 Add the private keys one by one. aegeus-cli importprivkey <aegeusprivkey> Now check account status. aegeus-cli listaddressgroupings If the coin balance is not shown, restart the Aegeus service. systemctl restart Aegeus.service aegeus-cli walletpassphrase <yourpassphrase> 0 true Check if the coins are staking correctly. aegeus-cli getstakingstatus Everything must be true. Finally remove all command history from Pi (user). history -c

24 The Future of Data Management Page 24 of Addendum B Control your Masternodes To configure the Raspberry Pi Wallet as a control (cold) wallet to control new or existing masternodes, please follow the steps: 1. Open a SSH session to the Raspberry Pi and login as root (Use desired SSH tool for this terminal such as Putty, Bitvise, ). The standard user for a Raspberry Pi running Raspbian is pi ssh pi@<ip address> su - 2. Open the masternode configuration file. nano /root/.aegeus/masternode.conf Start a new line for the masternode config and enter it like the example shown below.

25 The Future of Data Management Page 25 of 32 <MASTERNODE ALIAS> <IP ADDRESS> <MASTERNODE GEN KEY> <TX ID> <TX OUTPUT> Below is a sample masternode config: mn :29328 w22fbeetvcqgvey4umaapla7pzgwouaaudjjjwhryjwlkwdmm cyopy9p9eukcqksrpnvxxybrwljmrm8t9qtstqmbadvoihctm4 0 To exit the nano text editor, type the following: 1. Ctrl+x 2. Yes 3. Enter In the masternode config, there are 5 pieces of information used. The Masternode Alias is an alias name chosen by the user (can be anything). The IP Address and Port number comes from the VPS (Vultr, Aruba, Google Cloud, etc ) which is inputted into the SSH terminal to run the masternode installer script (the guide for a masternode can be found here: The Masternode genkey is obtained from the wallet after the transaction has been confirmed. The Tx ID is obtained from the cold wallet in debug console. aegeus-cli masternode outputs

26 The Future of Data Management Page 26 of 32 The Tx Output is either a 0 or 1 from the masternode outputs command. Each of these must be separated with exactly one space. Note: If masternode outputs is empty, then there is no address with exactly 5000 coins. To finish adding the masternodes, restart the wallet and unlock for staking only. systemctl restart Aegeus.service aegeus-cli walletpassphrase <yourpassphrase> 0 true Now enable your masternode from the wallet. aegeus-cli masternode start-missing mn1 Check if the start was successful. aegeus-cli masternode list-conf (Optional) Use the following command to automatically combine masternode rewards to larger stacks for staking. aegeus-cli autocombinerewards true false <threshold> For example: aegeus-cli autocombinerewards true 5 If there is a stack with more than 5 coins, the wallet will automatically combine stacks (to prevent dust <5 coins from trying to autocombine all the time). (Optional) Use the following command to automatically split stacks when they get too large. aegeus-cli setstakesplitthreshold <value>

27 The Future of Data Management Page 27 of 32 For example, if 2000 is used as value, the stack will only split into two stacks when the stack reaches 4,000 coins. Never forget to always check if the wallet is staking before existing the SSH session: aegeus-cli getstakingstatus Tip: Use to monitor the masternodes. This service can be configured to send masternode status updates or paid rewards to discord/telegram/ Addendum C Backup Your wallet.dat File to USB Drive To be extra safe, backup the wallet.dat to a USB drive as it contains the private keys to the coin addresses. To properly mount after the USB drive is plugged in, follow this guide: Once mounted copy the wallet.dat file onto the USB drive after stopping wallet. systemctl stop Aegeus.service cp ~/.Aegeus/wallet.dat /media/usb systemctl start Aegeus.service aegeus-cli walletpassphrase <yourpassphrase> 0 true

28 The Future of Data Management Page 28 of Addendum D Update your wallet When a new version of the wallet is released, you can easily update your wallet with the following steps: (In this example we will update the wallet from v2.0.4 to v3.0) 1. Open an SSH session to your Raspberry Pi and become root ssh pi@<ip address> su 2. Stop the Aegeus service before starting an upgrade systemctl stop Aegeus.service 3. Create a working directory cd /root/ mkdir aegeus cd aegeus

29 The Future of Data Management Page 29 of Backup your config files before starting the upgrade cp /root/.aegeus/wallet.dat. cp /root/.aegeus/aegeus.conf. ls 5. Download and extract the wallet Go to and find the latest ARM build (for example Aegeus ARM.tar.gz) Download this build to your Pi with the following command and extract it: ARM.tar.gz wget tar -zxvf Aegeus ARM.tar.gz

30 The Future of Data Management Page 30 of Copy the wallet files to /usr/local/bin to make them runnable from everywhere: cd Aegeus ARM cp * /usr/local/bin 7. We will take this opportunity to bring all packages on the Raspberry Pi up-to-date apt-get update apt-get upgrade reboot Type y to continue and after the upgrade is finished, do a reboot 8. When the Pi is rebooted, the Aegeus service will have automatically started. Check if the version is correct aegeus-cli getinfo 9. Unlock your wallet for staking only aegeus-cli walletpassphrase <yourpassphrase> 0 true

31 The Future of Data Management Page 31 of 32 Check if the wallet is staking aegeus-cli getstakingstatus All these outputs must show true for staking to be active (this can take a few minutes after starting and unlocking the wallet) 10. Finally remove all command history from your Pi history -c

32 The Future of Data Management Page 32 of 32

Masternode Setup Guide Local Wallet with VPS Server

Masternode Setup Guide Local Wallet with VPS Server Masternode Setup Guide Local Wallet with VPS Server What you will need: 1) Local computer windows 7-10 2) Remote server VPS [vultr.com] 3) PuTTY to configure and setup VPS 4) 10,000 PHR If you would like

More information

What you need: 5001 AEG. Computer with wallet installed. Make sure the wallet contains the Masternode Collateral of at least 5001 AEGEUS

What you need: 5001 AEG. Computer with wallet installed. Make sure the wallet contains the Masternode Collateral of at least 5001 AEGEUS What you need: 5001 AEG Computer with wallet installed. Make sure the wallet contains the Masternode Collateral of at least 5001 AEGEUS Download Windows Wallet Here Step 1: Install AEGEUS wallet on Windows

More information

SmartCash SmartNode SCRIPT Setup Guide v2.2. Windows 10. Date: 20/02/2018. By (Jazz) yoyomonkey

SmartCash SmartNode SCRIPT Setup Guide v2.2. Windows 10. Date: 20/02/2018. By (Jazz) yoyomonkey SmartCash SmartNode SCRIPT Setup Guide v2.2 Date: Introduction Welcome to this step by step guide that will take you through the process of creating your own SmartCash SmartNode. This guide is aimed at

More information

SmartCash SmartNode Setup Guide v1.2. Windows 10. Date: 13/01/2018. By (Jazz) yoyomonkey

SmartCash SmartNode Setup Guide v1.2. Windows 10. Date: 13/01/2018. By (Jazz) yoyomonkey SmartCash SmartNode Setup Guide v1.2 Date: Introduction Welcome to this step by step guide that will take you through the process of creating your own SmartCash SmartNode. This guide is aimed at the casual

More information

SmartCash SmartNode Setup Guide V1.2 Windows 10 13/01/2018 By (Jazz) yoyomonkey Page 1

SmartCash SmartNode Setup Guide V1.2 Windows 10 13/01/2018 By (Jazz) yoyomonkey Page 1 SmartCash SmartNode Setup Guide v1.2 Date: Introduction Welcome to this step by step guide that will take you through the process of creating your own SmartCash SmartNode. This guide is aimed at the casual

More information

This guide assumes that you are setting up a masternode for the first time. You will need:

This guide assumes that you are setting up a masternode for the first time. You will need: KRT MN Guide Setting up a masternode requires a basic understanding of Linux and blockchain technology, as well as the ability to follow instructions closely. It also requires regular maintenance and careful

More information

LOCAL WALLET (COLD WALLET):

LOCAL WALLET (COLD WALLET): This tutorial will teach you how to create a masternode with a "cold/hot" setup. The whole process is as follows. LOCAL WALLET (COLD WALLET): Visit TRAID platform s official repository on GitHub and download

More information

Contents. Crave Masternode Setup Guides. Single / Multiple Local Masternode(s) Single Masternode using a VPS. Multiple Masternodes using a VPS

Contents. Crave Masternode Setup Guides. Single / Multiple Local Masternode(s) Single Masternode using a VPS. Multiple Masternodes using a VPS Contents Crave Masternode Setup Guides Single / Multiple Local Masternode(s) 1 Requirements...1 2 Preparing Masternodes...1 3 Preparing Controller Wallet...2 4 Masternode Configuration...3 5 Starting Masternodes...3

More information

(Ubuntu 16.04) This guide will assist you in setting up an Aegeus Masternode on a Linux Server running Ubuntu (use at your own risk).

(Ubuntu 16.04) This guide will assist you in setting up an Aegeus Masternode on a Linux Server running Ubuntu (use at your own risk). AEGEUS Aegeus Masternode VPS Setup Guide (Ubuntu 16.04) This guide will assist you in setting up an Aegeus Masternode on a Linux Server running Ubuntu 16.04 (use at your own risk). If you require further

More information

DogeCash Masternode Setup Guide Version 1.2 (Ubuntu 16.04)

DogeCash Masternode Setup Guide Version 1.2 (Ubuntu 16.04) DogeCash Masternode Setup Guide Version 1.2 (Ubuntu 16.04) This guide will assist you in setting up a DogeCash Masternode on a Linux Server running Ubuntu 16.04. (Use at your own risk) If you require further

More information

Cold Masternode Guide

Cold Masternode Guide Cold Masternode Guide Rev. 3 01/25/2018 Overview While it is possible to set up a hot node in which the masternode stores the 1000 CBS collateral, it is more secure and safer to set up a cold node in which

More information

MTI Coin. MTI Coin. Hot Cold Wallet Masternode VPS setup Guide

MTI Coin. MTI Coin. Hot Cold Wallet Masternode VPS setup Guide MTI Coin Hot Cold Wallet Masternode VPS setup Guide 2018.03.19 1 Contents 1. Windows cold wallet guide... 3 1.1 Download the latest MTI windows wallet.... 3 1.2 How to make your own MTI address..... 3

More information

Masternode Setup Guide

Masternode Setup Guide Masternode Setup Guide Preface The following guide to set up a CREDITS Masternode is geared towards beginners with no experience of servers nor of CREDITS. You can skip certain parts if you re already

More information

We will create an address, private key and transaction for each masternode (MN in the following) and show the necessary steps for configuration.

We will create an address, private key and transaction for each masternode (MN in the following) and show the necessary steps for configuration. ARENON Coin Cold VPS Masternode on Windows & Linux Part 1 Controller-Cold-Setup This is the advised Method to setup your Masternodes. The wallet containing the coins does not have to be exposed and can

More information

Rover Coin. Hot Cold Wallet Masternode VPS setup Guide

Rover Coin. Hot Cold Wallet Masternode VPS setup Guide Rover Coin Hot Cold Wallet Masternode VPS setup Guide 2018.03.07 1 Contents 1. Windows cold wallet guide... 3 1.1 Download the latest Rover windows wallet.... 3 1.2 How to make your own Rover address.....

More information

CazCoin VPS Masternode Setup December 2018

CazCoin VPS Masternode Setup December 2018 Contents 1. Introduction... 3 2. Requirements... 3 3. VPS Preparation... 4 4. Local Wallet Setup... 4 5. Edit Local Configuration Files... 6 6. VPS Setup... 7 7. Starting the Masternode... 10 8. Wallet

More information

Flex Linux Masternode with Windows Cold Wallet

Flex Linux Masternode with Windows Cold Wallet Flex Linux Masternode with Windows Cold Wallet This is the condensed version of the video showing how to install and set up a Linux VPS with local cold wallet setup for a Flexinodes masternode. If you

More information

Relarium (RLM) Masternode Guide for VPS

Relarium (RLM) Masternode Guide for VPS Relarium (RLM) Masternode Guide for VPS Table of Contents Requirements 2 VPS Set-up 2 Create a MasterNode Address (ALIAS) & send collateral 4 MasterNode private key & Index ID 5 Edit Configuration files

More information

MarketC - Masternode Setup Guide

MarketC - Masternode Setup Guide MarketC - Masternode Setup Guide Preface In this guide we will be focusing on setting up a masternode for Marketc (CMK). This guide will focus on a typical "hot node" / "cold wallet" scenario. The "hot

More information

50,000 THC (have an additional.01 THC available to cover transaction costs)

50,000 THC (have an additional.01 THC available to cover transaction costs) Basic Requirements 50,000 THC (have an additional.01 THC available to cover transaction costs) Local Computer with THC wallet installed Download a THC wallet for your operating system at hempcoin.org.

More information

Nyerium Hot Cold Masternode Guide

Nyerium Hot Cold Masternode Guide Nyerium Hot Cold Masternode Guide Overview These are the steps to setup a secure and sager cold node: a masternode on a VPS and a local wallet with your coins in your Windows or Linux wallet hot node.

More information

LINUX VPS GUIDE. Pre-requisites: (this guide assumes you are using windows)

LINUX VPS GUIDE. Pre-requisites: (this guide assumes you are using windows) LINUX VPS GUIDE Pre-requisites: (this guide assumes you are using windows) Philscurrency Wallet Download PHILS wallet if you don t have already from the link below https://github.com/philscurrency/philscurrency/releases/download/v1.2/phils

More information

SUB1X Masternode Setup Guide: LINUX Version

SUB1X Masternode Setup Guide: LINUX Version SUB1X Masternode Setup Guide: LINUX Version What you will need for this guide: 1) Local computer with Windows, MacOS or Linux. 2) Remote server VPS [Vultr.com or AWS for instance] 3) PuTTY to configure

More information

Dixicoin (DXC) Masternode Guide for VPS

Dixicoin (DXC) Masternode Guide for VPS Dixicoin (DXC) Masternode Guide for VPS Table of Contents Requirements 2 VPS Set-up 2 Create a MasterNode Address (ALIAS) & send collateral 4 MasterNode private key & Index ID 5 Edit Configuration files

More information

Masternode Guide Version 1.0.4

Masternode Guide Version 1.0.4 Thunderstake Coin Version 1.0.4 Thunderstake Team 1 P age Welcome to the Thunderstake The information contained in this guide will help you to set up your very own TSC masternode. If you feel like you

More information

Rabbit Linux Masternode with Windows Cold Wallet

Rabbit Linux Masternode with Windows Cold Wallet Rabbit Linux Masternode with Windows Cold Wallet This is the condensed version of the video showing how to install and set up a Linux VPS with Windows cold wallet setup for a Rabbit masternode. If you

More information

COLD WALLET STEP BY STEP SETUP TUTORIAL FOR BEGINNERS

COLD WALLET STEP BY STEP SETUP TUTORIAL FOR BEGINNERS COLD WALLET STEP BY STEP SETUP TUTORIAL FOR BEGINNERS This tutorial shows the steps required to setup your cold wallet. Let s get started! 1. GETTING VPS SERVER FROM VULTR.COM (UBUNTU 17.10) 2. SYNCHRONIZE

More information

Controller-Cold-Setup

Controller-Cold-Setup Controller-Cold-Setup This is the advised Method to setup your Masternodes. The wallet containing the coins does not have to be exposed and can run on your local computer. It does not have to run all the

More information

Setting up a Chaincoin Masternode

Setting up a Chaincoin Masternode Setting up a Chaincoin Masternode Introduction So you want to set up your own Chaincoin Masternode? You ve come to the right place! These instructions are correct as of April, 2017, and relate to version

More information

XLink Kai Raspberry Pi Beginners Tutorial

XLink Kai Raspberry Pi Beginners Tutorial XLink-Kai-Raspberry-Pi-Beginners-Tutorial.md XLink Kai Raspberry Pi Beginners Tutorial Hi! This tutorial will guide you through setting up XLink Kai on a Raspberry Pi to play multiplayer system link Xbox

More information

CazCoin VPS Masternode Setup May 2018

CazCoin VPS Masternode Setup May 2018 VPS Masternode Setup May 2018 VPS Masternode Setup May 2018 Contents 1. Introduction... 3 2. Requirements... 3 3. Block Rewards?... 4 4. VPS Preparation... 4 5. Local Wallet Setup... 5 6. Edit Local Config

More information

Anonymity and Privacy Blockchain

Anonymity and Privacy Blockchain Anonymity and Privacy Blockchain BitcoinZero is an improved version of Bitcoin with addi onal features including Zerocoin protocol, faster block me, and masternodes (BZnodes) MASTERNODE SETUP GUIDE SOCIAL

More information

TECHNOLOGY. Cold Masternode Guide

TECHNOLOGY. Cold Masternode Guide Cold Masternode Guide Absolute Coin 2018 Overview There are 2 possible setup options for a MasterNode: 1 2 Absolute Hot Node Absolute Cold Node 1 2 Absolute Hot Node 1000 ABS are stored as a collateral

More information

Beetle Coin Masternodes Guide

Beetle Coin Masternodes Guide Beetle Coin Masternodes Guide Beetles, Indomitable Creatures. What you need: 1-More than 50,000 BEET. 2-One computer with Beetle-qt wallet installed.(put more than 50,000 BEET in this wallet) 3-One VPS.

More information

NAV Coin NavTech Server Installation and setup instructions

NAV Coin NavTech Server Installation and setup instructions NAV Coin NavTech Server Installation and setup instructions NavTech disconnects sender and receiver Unique double-blockchain Technology V4.0.5 October 2017 2 Index General information... 5 NavTech... 5

More information

Master Node Setup Guide

Master Node Setup Guide Introduction Welcome to this step by step guide that will take you through the process of creating your own Masternode. This guide is aimed at the casual Windows 10 PC user who has purchased Satoshi Coin

More information

Masternode Guide #1. Single masternode on Linux VPS (Ubuntu)+ control wallet on local PC (Windows)

Masternode Guide #1. Single masternode on Linux VPS (Ubuntu)+ control wallet on local PC (Windows) Masternode Guide #1 Single masternode on Linux VPS (Ubuntu)+ control wallet on local PC (Windows) Prerequisites: a - A remote server (Virtual Private Server, VPS) which will be our masternode wallet. b

More information

SCRIV NETWORK WINDOWS HOT WALLET MASTERNODE SETUP GUIDE DETAILED

SCRIV NETWORK WINDOWS HOT WALLET MASTERNODE SETUP GUIDE DETAILED SCRIV NETWORK MASTERNODE SETUP GUIDE WINDOWS HOT WALLET DETAILED March, 2018 Table of Contents Requirements for running SCRIV hot wallet masternode on Windows OS:... 3 Setup Windows VPS (Recommended)...

More information

Windows cold wallet managing Linux VPS connected Masternode

Windows cold wallet managing Linux VPS connected Masternode Discount Coin Masternodes How to setup a Discount Coin Masternode Single and Multiple masternodes Windows cold wallet managing Linux VPS connected Masternode Version 1.0.2 The DiscountCoin Core Team February

More information

Complete Guide to Setting Up Linda on Ubuntu 16 For Staking

Complete Guide to Setting Up Linda on Ubuntu 16 For Staking Complete Guide to Setting Up Linda on Ubuntu 16 For Staking By Chris T. aka lagwag0n Join Us on Discord: https://discord.gg/8evurqx Table of Contents: 1. Introduction 2. Purchasing a VPS from Vultr 3.

More information

WHAT YOU WILL NEED FOR THIS GUIDE:

WHAT YOU WILL NEED FOR THIS GUIDE: WHAT YOU WILL NEED FOR THIS GUIDE: 1. Local computer with Windows or Linux. 2. Remote server VPS [This guide uses digitaloceans.com but any provider will work] 3. PuTTY to configure and setup the VPS 4.

More information

Anonymity and Privacy Blockchain

Anonymity and Privacy Blockchain Anonymity and Privacy Blockchain BitcoinZero is an improved version of Bitcoin with addi onal features including Zerocoin protocol, faster block me, and masternodes (BZnodes) MASTERNODE SETUP GUIDE SOCIAL

More information

Install Guides. Automated Compiler Cold Node (Linux VPS) Absolute. Proof of View

Install Guides. Automated Compiler Cold Node (Linux VPS) Absolute. Proof of View Install Guides Automated Compiler Cold Node (Linux VPS) Absolute. Proof of View Automated Compiler Cold Node Masternode - Linux VPS Cold Node Masternode A Masternode runs on another computer (VPS) which

More information

BitcoinMonster Masternode Linux VPS Tutorial - Vultr VPS Created By : Samshak Donet Mon: MKX8PFz1uvBkwNDTXtUuj6KinudhsKZh1K

BitcoinMonster Masternode Linux VPS Tutorial - Vultr VPS Created By : Samshak Donet Mon: MKX8PFz1uvBkwNDTXtUuj6KinudhsKZh1K BitcoinMonster Masternode Linux VPS Tutorial - Vultr VPS Created By : Samshak Donet Mon: MKX8PFz1uvBkwNDTXtUuj6KinudhsKZh1K Step 1 Download, install and sync latest BitcoinMonster Windows s wallet on both

More information

SAROS MasterNode Guide V1.1

SAROS MasterNode Guide V1.1 SAROS MasterNode Guide V1.1 Pre-requisites Local Windows wallet holding at least 1501 SAROS coins Remote VPS Ubuntu 14.04 VPS (in this guide I am using a XS ordered from www.masterhash.us) OVERVIEW This

More information

Masternode Guide #1. Single masternode on Linux VPS (Ubuntu)+ Control wallet on local PC (Windows) (VPS installation with script :-) )

Masternode Guide #1. Single masternode on Linux VPS (Ubuntu)+ Control wallet on local PC (Windows) (VPS installation with script :-) ) Masternode Guide #1 Single masternode on Linux VPS (Ubuntu)+ Control wallet on local PC (Windows) (VPS installation with script :-) ) Prerequisites: a - A remote server (Virtual Private Server, VPS) which

More information

SCRIV NETWORK COLD WALLET MASTERNODE SETUP GUIDE DETAILED

SCRIV NETWORK COLD WALLET MASTERNODE SETUP GUIDE DETAILED SCRIV NETWORK MASTERNODE SETUP GUIDE COLD WALLET DETAILED March, 2018 Table of Contents Requirements for running SCRIV cold wallet masternode on Linux VPS: 3 Setup Linux-based VPS... 3 1. Install SCRIV

More information

VPS SETUP: What is a VPS? A VPS is a cloud server, running on a virtual machine. You can t run a masternode on your computer itself.

VPS SETUP: What is a VPS? A VPS is a cloud server, running on a virtual machine. You can t run a masternode on your computer itself. Our guide makes it easy to set up your own masternode! BEFORE YOU BEGIN, YOU WILL NEED: 1. 1,000 SUPPO s 2. The latest SuppoCoin wallet, which can always be found here: https://www.suppocoin.io 3. Two

More information

AEGEUS Official Aegeus FAQ

AEGEUS Official Aegeus FAQ AEGEUS Official Aegeus FAQ Written and rights reserved by the Aegeus Team September 2018 1 Contents Wallets Q1: How do I download the Aegeus wallet? Q2: How do I backup my wallet? Q3: How often should

More information

Crave Setup Guide v1.07

Crave Setup Guide v1.07 Crave Setup Guide v1.07 Contents Single / Multiple Local Masternode(s) 1 Requirements...1 2 Preparing Masternodes...1 3 Preparing Controller Wallet...2 4 Masternode Configuration...3 5 Starting Masternodes...3

More information

RETROPIE INSTALLATION GUIDE

RETROPIE INSTALLATION GUIDE RETROPIE INSTALLATION GUIDE CONTENTS THE FOLLOWING GUIDE WILL COVER THE INSTALLATION, SETUP AND CONFIGURATION OF THE RASPBERRY PI, RASPBIAN OS AND RETROPIE Author: http://rpiarcadebuild.wordpress.com/

More information

Configure router. 26. Start AirPort Utility (located in the Utilities folder). The AirPort Utility window show a component diagram:

Configure router. 26. Start AirPort Utility (located in the Utilities folder). The AirPort Utility window show a component diagram: Configure router The Raspberry Pi 3 (RPi) should be assigned a fixed IP address in the router. After installing osmc for the first time, you should configure the router. 26. Start AirPort Utility (located

More information

Official Aegeus FAQ s

Official Aegeus FAQ s Official Aegeus FAQ s Wallets Q1: How do I download the Aegeus wallet? Q2: How do I backup my wallet? Q3: How often should I backup my wallet? Q4: How do I encrypt my wallet? Q5: How do I unlock my wallet?

More information

Masternode Setup in VPS server

Masternode Setup in VPS server Masternode Setup in VPS server In order to start up MasterNode and Sentinel, the user must possess at least 10000 PSC You can use any VPS Server (10 GB HDD/1 CPU/512MB Memory) or better. As an example,

More information

Create MedicCoin Master Node Instruction Rev2

Create MedicCoin Master Node Instruction Rev2 Create MedicCoin Master Node Instruction Rev2 1. Download MedicCoin wallet using below link https://mediccoin.com/mediccoin-window.zip 2. Unzip/extract MedicCoin-Window.zip to C:\coins\MedicCoin folder.

More information

COLD WALLET + MASTERNODE SETUP ON LINUX

COLD WALLET + MASTERNODE SETUP ON LINUX COLD WALLET + MASTERNODE SETUP ON LINUX This tutorial shows the steps required to setup your Magnet masternode on a Linux system while running a local cold wallet (Windows system here). Let s get started!

More information

Masternode Setup Guide. HexCash Coin. Masternode Setup Guide Version /

Masternode Setup Guide. HexCash Coin. Masternode Setup Guide Version / HexCash Coin Version 1.0.0 1 / 15 Welcome to the The Hex Ecosystem This guide will help you with setting up your own Masternode The guide is meant to be used with its accompanying Masternode Setup Script

More information

MASTERNODE Setup Guide

MASTERNODE Setup Guide MASTERNODE Setup Guide Version 1.0 February 2018 Page 1 / 13 Table of Contents Table of Contents... 2 Linux Setup... 3 Prerequisites... 3 Updates and dependencies... 3 Building the wallet... 4 Starting

More information

Raspberry Pi Setup Tutorial

Raspberry Pi Setup Tutorial Raspberry Pi Setup Tutorial The Raspberry Pi is basically a miniature linux- based computer. It has an ARM processor on it, specifically the ARM1176JZF- S 700 MHz processor. This is the main reason why

More information

Masternode&Sentinel Setup Guide

Masternode&Sentinel Setup Guide Masternode&Sentinel Setup Guide In order to start up MasterNode and Sentinel, the user must possess at least 1000 PSC You can use any VPS Server (10 GB HDD/1 CPU/512MB Memory/IPv4) or better. As an example,

More information

Citizenship Coin. Installation Instructions

Citizenship Coin. Installation Instructions Citizenship Coin Installation Instructions Please download and install our wallet software which works in Windows (32 bit, 64 bit), MacosX (64 bit) and Linux (64 bit). Once you run the software, it will

More information

KINGSTON COIN VPS MASTERNODE SETUP GUIDE

KINGSTON COIN VPS MASTERNODE SETUP GUIDE KINGSTON COIN VPS MASTERNODE SETUP GUIDE UBUNTU 16.04 x64 ** THIS GUIDE ASSUMES YOU HAVE PURCHASED A VPS THROUGH A SERVICE LIKE DIGITALOCEAN. COM OR VULTR.COM AND HAVE CONNECTED TO YOUR VPS THROUGH SSH/TERMINAL**

More information

Adafruit's Raspberry Pi Lesson 6. Using SSH

Adafruit's Raspberry Pi Lesson 6. Using SSH Adafruit's Raspberry Pi Lesson 6. Using SSH Created by Simon Monk Last updated on 2017-08-16 01:12:07 AM UTC Guide Contents Guide Contents Overview Enabling SSH Using a blank boot file Using Raspi-Config

More information

ZEALIUM WINDOWS MASTERNODE SETUP GUIDE

ZEALIUM WINDOWS MASTERNODE SETUP GUIDE ZEALIUM WINDOWS MASTERNODE SETUP GUIDE Single Masternode Setup Guide Step-by-step guide for starting a local masternode (cold storage) with some FAQ s Requirements Zealium wallet running on your local

More information

MASTERNODE SETUP GUIDE

MASTERNODE SETUP GUIDE MASTERNODE SETUP GUIDE PREREQUISITES: -10,001 XCZM -A main computer with local wallet -Ubuntu 16.0.4 VPS server from vultr or any other reputable company. Open you Xavander Coin local wallet 1) Using the

More information

TZC WALLET + HEADLESS WALLET ON LINUX. Local Wallet + PoS Headless Wallet on VPS (Ubuntu 16.04)

TZC WALLET + HEADLESS WALLET ON LINUX. Local Wallet + PoS Headless Wallet on VPS (Ubuntu 16.04) TZC WALLET + HEADLESS WALLET ON LINUX Local Wallet + PoS Headless Wallet on VPS (Ubuntu 16.04) What you need: a - A local computer running under Ubuntu 16.04 b - A remote server (Virtual Private Network,

More information

5inch HDMI LCD (B) User Manual

5inch HDMI LCD (B) User Manual 5inch HDMI LCD (B) User Manual Description 5 inch Resistive Touch Screen LCD, HDMI interface, supports various systems Features 800 480 high resolution, touch control Supports Raspberry Pi, and driver

More information

This is a step-by-step guide for starting a single BeetleCoin masternode on Windows 7 10 operating systems.

This is a step-by-step guide for starting a single BeetleCoin masternode on Windows 7 10 operating systems. This is a step-by-step guide for starting a single BeetleCoin masternode on Windows 7 10 operating systems. BeetleCoin wallet running on your local Windows 7 10 computer with at least 50001 BEET White

More information

KickSoccer Coin Masternode Setup Guide

KickSoccer Coin Masternode Setup Guide KickSoccer Coin Masternode Setup Guide Contents... 1 Introduction... 1 First the basic requirements... 1 Configuration... 2 VPS Remote wallet install... 3 Config file configuration... 4 Start your masternode...

More information

Wallet Setup Guide WINDOWS. Version 1 /

Wallet Setup Guide WINDOWS. Version 1 / Wallet Setup Guide WINDOWS Version 1 / 1-1-2018 Downloading and Installing the COLX Wallet If this is the first time you are installing the COLX desktop wallet, please follow these steps. 1. Visit the

More information

Kodaro s Niagara 4 Port Installation Guide

Kodaro s Niagara 4 Port Installation Guide Kodaro s Niagara 4 Port Installation Guide August 16, 2018 Documents the process of installing Kodaro s Niagara 4 Port on the Dell Edge Gateway hardware OVERVIEW... 2 SYSTEM COMPATIBILITY... 2 WORKFLOW

More information

Adafruit PiUART - USB Console and Power Add-on for Raspberry Pi

Adafruit PiUART - USB Console and Power Add-on for Raspberry Pi Adafruit PiUART - USB Console and Power Add-on for Raspberry Pi Created by lady ada Last updated on 2017-08-29 10:20:23 PM UTC Guide Contents Guide Contents Overview Pinouts Enabling Serial Console Option

More information

Renos Local Wallet Masternode Setup

Renos Local Wallet Masternode Setup Renos Local Wallet Masternode Setup There are a variety of methods to set up a Masternode. They are of varying difficulty to set up and offer different levels of security. This tutorial details the set

More information

Performing Administrative Tasks

Performing Administrative Tasks This chapter describes how to perform administrative tasks using Cisco CMX. Users who are assigned administration privileges can perform administrative tasks. Cisco CMX User Accounts, page 1 Backing Up

More information

Preparing SD card for Pi

Preparing SD card for Pi Preparing SD card for Pi Sarwan Singh Assistant Director(S) NIELIT Chandigarh Education is the kindling of a flame, not the filling of a vessel. - Socrates 1 sarwan@nielit Using NOOBS- New Out Of Box Software

More information

Masternode Setup Guide

Masternode Setup Guide Masternode Setup Guide What this guide is This guide is aimed at anyone who wants to run a Reliance masternode on an Ubuntu 16.04 VPS. What this guide is not A tutorial for linux. What I mean by that,

More information

SUB1X Masternode Setup Guide: Windows Version

SUB1X Masternode Setup Guide: Windows Version SUB1X Masternode Setup Guide: Windows Version What you will need for this guide: 1) Local computer with Windows, MacOS or Linux. 2) Remote server VPS [Vultr.com or AWS for instance] 3) 20 Sub1X Version

More information

WOLFCOIN MASTERNODE MANUAL

WOLFCOIN MASTERNODE MANUAL WOLFCOIN MASTERNODE MANUAL Contents Introduction... 3 About Wolfcoin Blockchain... 3 Download the Wolfcoin Wallet... 4 Installation of your Wallet... 5 Make a receiving address... 12 Closing the Wolfcoin

More information

CROWDCOIN MASTERNODE SETUP COLD WALLET ON WINDOWS WITH LINUX VPS

CROWDCOIN MASTERNODE SETUP COLD WALLET ON WINDOWS WITH LINUX VPS CROWDCOIN MASTERNODE SETUP COLD WALLET ON WINDOWS WITH LINUX VPS This tutorial shows the steps required to setup your Crowdcoin Masternode on a Linux server and run your wallet on a Windows operating system

More information

XSN coin. TPoS Setup Guide. https://discord.gg/cyf5yca. https://xsncoin.io

XSN coin. TPoS Setup Guide. https://discord.gg/cyf5yca. https://xsncoin.io XSN coin TPoS Setup Guide https://discord.gg/cyf5yca https://xsncoin.io Contents Introduction... 3 What is TPoS?... 3 DISCLAIMER:... 4 How to be an Owner... 4 How to be a merchant... 5 Step 1. Controller

More information

Manual to install experimental firmware on a TYTERA MD380

Manual to install experimental firmware on a TYTERA MD380 By Erik, PA0ESH. Monday 28 November 2016 I've been a while in the possession of a MD380/390 Tytera to experiment with DMR. This Chinese MD380/390 is a delight in use and with the support of Arjan Hogt,

More information

Bitnami MySQL for Huawei Enterprise Cloud

Bitnami MySQL for Huawei Enterprise Cloud Bitnami MySQL for Huawei Enterprise Cloud Description MySQL is a fast, reliable, scalable, and easy to use open-source relational database system. MySQL Server is intended for mission-critical, heavy-load

More information

How to make GCN, bitcoin and other Altcoin Paper Wallet (Cold Storage, Offline Storage)

How to make GCN, bitcoin and other Altcoin Paper Wallet (Cold Storage, Offline Storage) How to make GCN, bitcoin and other Altcoin Paper Wallet (Cold Storage, Offline Storage) While this manual has been created with a walkthrough of the GCN Wallet, it is suitable for most cryptocurrencies.

More information

Bitnami MariaDB for Huawei Enterprise Cloud

Bitnami MariaDB for Huawei Enterprise Cloud Bitnami MariaDB for Huawei Enterprise Cloud First steps with the Bitnami MariaDB Stack Welcome to your new Bitnami application running on Huawei Enterprise Cloud! Here are a few questions (and answers!)

More information

More Raspian. An editor Configuration files Shell scripts Shell variables System admin

More Raspian. An editor Configuration files Shell scripts Shell variables System admin More Raspian An editor Configuration files Shell scripts Shell variables System admin Nano, a simple editor Nano does not require the mouse. You must use your keyboard to move around the file and make

More information

Bitnami Coppermine for Huawei Enterprise Cloud

Bitnami Coppermine for Huawei Enterprise Cloud Bitnami Coppermine for Huawei Enterprise Cloud Description Coppermine is a multi-purpose, full-featured web picture gallery. It includes user management, private galleries, automatic thumbnail creation,

More information

Node-RED Dashboard: Pi Control

Node-RED Dashboard: Pi Control : Pi Control Will English June 26, 2017 will.english@vivaldi.net 1 Summary I am using a Raspberry Pi as a headless computer through VNC. A particular interest is learning Node-RED flow programming and

More information

Install and Configure Ubuntu on a VirtualBox Virtual Machine

Install and Configure Ubuntu on a VirtualBox Virtual Machine Install and Configure Ubuntu on a VirtualBox Virtual Machine Ronald Mak Department of Computer Engineering Department of Computer Science January 11, 2019 Introduction Because the class will use Linux

More information

Lab 0: Intro to running Jupyter Notebook on a Raspberry Pi

Lab 0: Intro to running Jupyter Notebook on a Raspberry Pi Lab 0: Intro to running Jupyter Notebook on a Raspberry Pi Nick Antipa, Li-Hao Yeh, based on labs by Jon Tamir and Frank Ong January 24, 2018 This lab will walk you through setting up your Raspberry Pi

More information

Masternode Setup Guide

Masternode Setup Guide Masternode Setup Guide This guide will help you to setup a Lizus masternode on an Ubuntu 16.04 64bit Server. Requirements - 10.000.01 LIZ (10.000 LIZ for the initial transaction and 0.1 LIZ for covering

More information

Guide to your Plug Computer

Guide to your Plug Computer This document lives here: http://inst.eecs.berkeley.edu/~ee122/fa11/project3/guide-to-plug.pdf Guide to your Plug Computer UC Berkeley, EE 122, Fall 2011 Version 1 This document is a step-by-step guide

More information

Raspberry Pi 2b PART 1. Table of Contents. Step by step guide. 1. Hardware (0:05) RS Online (ex-tax prices)... 3 MSY ebay...

Raspberry Pi 2b PART 1. Table of Contents. Step by step guide. 1. Hardware (0:05) RS Online (ex-tax prices)... 3 MSY ebay... Step by step guide PART 1 Table of Contents 1. Hardware (0:05)... 3 RS Online (ex-tax prices)... 3 MSY... 4 ebay... 4 Centercom Computers... 4 2. Installing the operating system (0:21)... 5 Preparing the

More information

RaspiDigiHamClock. Raspberry Pi Amateur Radio Digital Clock. v WA4EFH R.Grokett

RaspiDigiHamClock. Raspberry Pi Amateur Radio Digital Clock. v WA4EFH R.Grokett RaspiDigiHamClock Raspberry Pi Amateur Radio Digital Clock v2018-07-08 WA4EFH R.Grokett Overview Amateur Radio Operators (aka HAM Radio) use 24 hour UTC (Universal Coordinated Time) for much of their operation.

More information

KINGSTON COIN VPS MASTERNODE SETUP GUIDE

KINGSTON COIN VPS MASTERNODE SETUP GUIDE KINGSTON COIN VPS MASTERNODE SETUP GUIDE ** THIS GUIDE ASSUMES YOU HAVE PURCHASED A VPS THROUGH A SERVICE LIKE DIGITALOCEAN. COM OR VULTR.COM AND HAVE CONNECTED TO YOUR VPS THROUGH SSH/TERMINAL** STEP

More information

Spreedbox Getting Started Guide

Spreedbox Getting Started Guide Spreedbox Getting Started Guide Last Updated: September 2017 CONTENTS 1. Introduction... 3 2. Prerequisites... 4 3. Opening the box... 5 4. USB Manual, Quick Start Guide & MAC Sticker... 6 5. International

More information

PiCloud. Building owncloud on a Raspberry PI

PiCloud. Building owncloud on a Raspberry PI PiCloud Building owncloud on a Raspberry PI PiCloud - Building owncloud on a Raspberry PI by Sebastian Büttrich is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International

More information

Topics. What is a RaspberryPi? Why should I want one? What is Raspbian? What is SSH? What is FTP? What is LAMP? Making a LAMP Stack!

Topics. What is a RaspberryPi? Why should I want one? What is Raspbian? What is SSH? What is FTP? What is LAMP? Making a LAMP Stack! Topics What is a RaspberryPi? Why should I want one? What is Raspbian? What is SSH? What is FTP? What is LAMP? Making a LAMP Stack! What is a Raspberry Pi? The Raspberry Pi is a Credit Card sized computer.

More information

Parallel Programming Pre-Assignment. Setting up the Software Environment

Parallel Programming Pre-Assignment. Setting up the Software Environment Parallel Programming Pre-Assignment Setting up the Software Environment Authors: B. Wilkinson and C. Ferner. Modification date: Aug 21, 2014 (Minor correction Aug 27, 2014.) Software The purpose of this

More information

Adafruit's Raspberry Pi Lesson 1. Preparing an SD Card for your Raspberry Pi

Adafruit's Raspberry Pi Lesson 1. Preparing an SD Card for your Raspberry Pi Adafruit's Raspberry Pi Lesson 1. Preparing an SD Card for your Raspberry Pi Created by Simon Monk Last updated on 2016-12-03 03:20:15 AM UTC Guide Contents Guide Contents Overview You Will Need Downloading

More information

Raspberry Pi NTP Clock Setup Guide

Raspberry Pi NTP Clock Setup Guide Raspberry Pi NTP Clock Setup Guide Several steps are involved in getting your Raspberry Pi to operate as a NTP Clock. To begin with, you must obtain a LCD Plate (www.adafruit.com) and build it. You must

More information