Very cool! So I am curious. I extracted the RAR and its just a "radium-qt" file without an extension. Do you have to execute via terminal? I don't own a Raspberry Pi but am interested in learning how this works exactly. Thanks!
If you have another operating system and not all dependencies, then the wallet file will not start.
I did not make a demon purse, but a graphical shell.
Do everything according to this instruction.
Instructions for launching a purse at the Raspberry Pi 3.
Configuring Raspberry Pi 3
What do we need:
- Raspberry itself with power cable;
- SD card and computer with card reader;
- USB keyboard and mouse;
- HDMI cable;
- monitor with HDMI input.
1. Download from here:
http://downloads.raspberrypi.org/raspbian/images/raspbian-2017-07-05/2017-07-05-raspbian-jessie.zip.torrent 2. Insert the SD card into the card reader. To save the system to a card, use Win32 Disk Imager.
Download link -
https://sourceforge.net/projects/win32diskimager/3. Select the unpacked image, then the flash drive, then click "Write" and wait.
4. After completing the recording process, you can insert the card into Raspberry.
5. Connect the monitor, mouse, keyboard and power.
Login: pi
Password: raspberry
Remember them, you will have to enter often. You can change the password in Settings - Raspberry Pi Configuration.
Here it is better to disable Splash Screen splash screen.
6. Connect the Internet, wi-fi or wired. Here everything is simple, as in Windows.
7. After the appearance of the Internet, you can set the desired locale and time zone in Raspberry Pi Configuration.
8. Start the terminal
9. Updated:
sudo apt-get update
sudo apt-get dist-upgrade
10. We put the remote access:
sudo apt-get install tightvncserver
sudo apt-get install xrdp
11. Increase SWAP:
sudo nano /etc/dphys-swapfile
Change the value of CONF_SWAPSIZE = 100 to 1000. To save the file, press Ctrl + X followed by Y then Enter.
12. Connect SWAP:
sudo dphys-swapfile setup
sudo dphys-swapfile swapon
13. Now you can disconnect the mouse, keyboard, monitor and connect from a regular computer. Run in Windows Start - All Programs - Standard - "Remote Desktop Connection" or Start - Run - mstsc
Enter the IP address of Raspberry, click Connect and enter login and password (pi raspberry).
Now you can start installing the purse RadiumCoin.
1. Start the terminal.
2. Set the dependencies:
sudo apt-get install qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev \
libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev \
libssl-dev libdb4.8 ++ - dev
3. And this:
1: sudo apt-get install autoconf libtool libssl-dev libboost-all-dev libminiupnpc-dev -y
2: mkdir ~/bin
cd ~/bin
3: wget
http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gztar -xzvf db-4.8.30.NC.tar.gz
cd db-4.8.30.NC/build_unix/
../dist/configure --enable-cxx
make -j4
sudo make install
4. And this:
sudo apt-get install libdb5.3++-dev libdb++-dev libdb5.3-dev libdb-dev && ldconfig
5. To enable port forwarding, install UPnP:
sudo apt-get install miniupnpc