Ok and thank you again OGM4ME. I'm not sure if i want to send my coins to a pool. Keeping them in my own wallet would give me a better feeling
. If anyone can provide me a build of the latest linux wallet for raspian or a tutorial (for dummys) how to build it that would make me very happy.
Thanks for your support
this worked for me on ubuntu:
download newest source code from github:
https://github.com/aeriumcoin/Aerium/releases--> Aerium-1.7.1.tar.gz
extract to your home folder
Now make sure that the required packages for Qt5 development of your
distribution are installed, for Debian and Ubuntu these are:
::
apt-get install qt5-default qt5-qmake qtbase5-dev-tools qttools5-dev-tools \
build-essential libboost-dev libboost-system-dev \
libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev \
libssl-dev libdb++-dev libminiupnpc-dev
then
cd /src/leveldb
/Aerium-1.7.1/src/leveldb chmod +x build_detect_platform
/Aerium-1.7.1/src/leveldb make clean && make libleveldb.a libmemenv.a
cd ..
/Aerium-1.7.1/src make -f makefile.unix
cd ..
/Aerium-1.7.1 qmake
/Aerium-1.7.1 make
you might have to sudo for all. or at the beginning sudo -i
now you should have a file called
aerium-qt
just run it with
./arium-qt
you can find your wallet after syncing in your home folder (hidden directory called .aerium)
have fun and enjoy this great coin.
thank you rolfmetzger for your help. unfortunately i got the following error message after the make -f makefile.unix command:
fatal: Not a git repository (or any of the parent directories): .git
g++ -c -O2 -pthread -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/home/pi/Downloads/Aerium-1.7.1/src -I/home/pi/Downloads/Aerium-1.7.1/src/obj -DUSE_UPNP=0 -DENABLE_WALLET -I/home/pi/Downloads/Aerium-1.7.1/src/leveldb/include -I/home/pi/Downloads/Aerium-1.7.1/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2 -MMD -MF obj/init.d -o obj/init.o init.cpp
g++: internal compiler error: Killed (program cc1plus)
Please submit a full bug report,
with preprocessed source if appropriate.
See
for instructions.
makefile.unix:184: recipe for target 'obj/init.o' failed
make: *** [obj/init.o] Error 4
the following commands also fail. I'm not sure what the problem is an how i can solve it. i would be happy if anyone has an idea.