Install Tubecoin wallet on a Raspberry PI 3 if anyone is interested:-
I've just done this myself and works without any problems!
Setup a file swap if you have less than 1.5GB of RAM, Open up the terminal,
sudo su
fallocate -l 2G /swapfile
chown root:root /swapfile
chmod 0600 /swapfile
mkswap /swapfile (after this command i had to shut down the terminal and reopen it, said directory not found, but carry on after reopening the terminal with the rest.)
swapon /swapfile
nano /etc/fstab (then go to the bottom of the page and put this in)
/swapfile none swap sw 0 0 (press CTRL + X then Y then ENTER you should be back at the terminal) NEXT
Install all required dependencies:
apt-get update
apt-get install ntp unzip git build-essential libssl-dev libdb-dev
apt-get install libdb++-dev libboost-all-dev libqrencode-dev
aptitude install miniupnpc libminiupnpc-dev
sudo apt-get install qt4-qmake libqt4-dev
Pull the source code from github:
git clone https://github.com/McKnight-1/Tube
Compile the database
cd Tube/src/leveldb
chmod 755 build_detect_platform
make libleveldb.a libmemenv.a
Got to Tube directory
Make Wallet
When its finished you'll find the Tubecoin-qt in the Tube directory