Bitcoin Forum
May 26, 2024, 06:49:39 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 [8] 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 »  All
  Print  
Author Topic: Proof of Stake  (Read 16037 times)
cygan
Legendary
*
Offline Offline

Activity: 3164
Merit: 8042


Crypto Swap Exchange


View Profile WWW
September 20, 2017, 07:25:37 PM
 #141

hat schon jemand neuigkeiten bzgl der masternodecoin wallet auf dem pi - hat die jemand schon erfolgreich zum laufen gebracht?

da ich bei mtnc seit gestern einen masternode am laufen habe würde ich das ganze auf mein raspberry pi3 verlagern.
die pi-anleitung, die im engl. ann thread von einem user gepostet wurde, bricht bei mir bei einem bestimmten punkt ab...

Bin gerade beim compilieren, mal sehen was dabei raus kommt Wink

Versuche es vorerst so:

Quote
sudo apt-get update
sudo apt-get install git build-essential libtool autotools-dev autoconf pkg-config libssl-dev libprotobuf-dev protobuf-compiler libcrypto++-dev libevent-dev libminiupnpc-dev libgmp-dev libboost-all-dev
sudo apt-get install libssl1.0-dev libssl1.0.2 # downgrade SSL from 1.1 to 1.0.2


cd ~
wget 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz'
echo '12edc0df75bf9abd7f82f821795bcee50f42cb2e5f76a6a281b85732798364ef  db-4.8.30.NC.tar.gz' | sha256sum -c
tar -xzvf db-4.8.30.NC.tar.gz

cd db-4.8.30.NC/build_unix/
../dist/configure --prefix=/usr/local --enable-cxx
make -j4 # compile on 4 cores
sudo make install

# You can delete db-4.8.30.NC.tar.gz file and db-4.8.30.NC folder now if you like.

export LD_LIBRARY_PATH="/usr/local/lib/"

cd /home/pi
git clone https://github.com/masternodecoin/masternodecoin
cd masternodecoin

# these scripts need to be executable
chmod +x src/leveldb/build_detect_platform
chmod +x src/secp256k1/autogen.sh

# Now we can build the MasterNodeCoin daemon
qmake
make

ok, hat bis jetzt keine probleme gegeben.
was muss ich als nächstes tun?

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
Buchi-88
Legendary
*
Offline Offline

Activity: 3808
Merit: 2560



View Profile
September 20, 2017, 08:19:46 PM
Last edit: September 21, 2017, 06:59:17 AM by Buchi-88
 #142

hat schon jemand neuigkeiten bzgl der masternodecoin wallet auf dem pi - hat die jemand schon erfolgreich zum laufen gebracht?

da ich bei mtnc seit gestern einen masternode am laufen habe würde ich das ganze auf mein raspberry pi3 verlagern.
die pi-anleitung, die im engl. ann thread von einem user gepostet wurde, bricht bei mir bei einem bestimmten punkt ab...

Bin gerade beim compilieren, mal sehen was dabei raus kommt Wink

Versuche es vorerst so:

Quote
sudo apt-get update
sudo apt-get install git build-essential libtool autotools-dev autoconf pkg-config libssl-dev libprotobuf-dev protobuf-compiler libcrypto++-dev libevent-dev libminiupnpc-dev libgmp-dev libboost-all-dev
sudo apt-get install libssl1.0-dev libssl1.0.2 # downgrade SSL from 1.1 to 1.0.2


cd ~
wget 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz'
echo '12edc0df75bf9abd7f82f821795bcee50f42cb2e5f76a6a281b85732798364ef  db-4.8.30.NC.tar.gz' | sha256sum -c
tar -xzvf db-4.8.30.NC.tar.gz

cd db-4.8.30.NC/build_unix/
../dist/configure --prefix=/usr/local --enable-cxx
make -j4 # compile on 4 cores
sudo make install

# You can delete db-4.8.30.NC.tar.gz file and db-4.8.30.NC folder now if you like.

export LD_LIBRARY_PATH="/usr/local/lib/"

cd /home/pi
git clone https://github.com/masternodecoin/masternodecoin
cd masternodecoin

# these scripts need to be executable
chmod +x src/leveldb/build_detect_platform
chmod +x src/secp256k1/autogen.sh

# Now we can build the MasterNodeCoin daemon
qmake
make

ok, hat bis jetzt keine probleme gegeben.
was muss ich als nächstes tun?

in das Verzeichnis gehen und,

qmake
make

stehe aber nachdem Durchlauf vor folgendem Problem:



??

Denke es liegt an dem: db-4.8.30.NC

??

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
cygan
Legendary
*
Offline Offline

Activity: 3164
Merit: 8042


Crypto Swap Exchange


View Profile WWW
September 21, 2017, 01:14:47 PM
 #143

hat schon jemand neuigkeiten bzgl der masternodecoin wallet auf dem pi - hat die jemand schon erfolgreich zum laufen gebracht?

da ich bei mtnc seit gestern einen masternode am laufen habe würde ich das ganze auf mein raspberry pi3 verlagern.
die pi-anleitung, die im engl. ann thread von einem user gepostet wurde, bricht bei mir bei einem bestimmten punkt ab...

Bin gerade beim compilieren, mal sehen was dabei raus kommt Wink

Versuche es vorerst so:

Quote
sudo apt-get update
sudo apt-get install git build-essential libtool autotools-dev autoconf pkg-config libssl-dev libprotobuf-dev protobuf-compiler libcrypto++-dev libevent-dev libminiupnpc-dev libgmp-dev libboost-all-dev
sudo apt-get install libssl1.0-dev libssl1.0.2 # downgrade SSL from 1.1 to 1.0.2


cd ~
wget 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz'
echo '12edc0df75bf9abd7f82f821795bcee50f42cb2e5f76a6a281b85732798364ef  db-4.8.30.NC.tar.gz' | sha256sum -c
tar -xzvf db-4.8.30.NC.tar.gz

cd db-4.8.30.NC/build_unix/
../dist/configure --prefix=/usr/local --enable-cxx
make -j4 # compile on 4 cores
sudo make install

# You can delete db-4.8.30.NC.tar.gz file and db-4.8.30.NC folder now if you like.

export LD_LIBRARY_PATH="/usr/local/lib/"

cd /home/pi
git clone https://github.com/masternodecoin/masternodecoin
cd masternodecoin

# these scripts need to be executable
chmod +x src/leveldb/build_detect_platform
chmod +x src/secp256k1/autogen.sh

# Now we can build the MasterNodeCoin daemon
qmake
make

ok, hat bis jetzt keine probleme gegeben.
was muss ich als nächstes tun?

in das Verzeichnis gehen und,

qmake
make

stehe aber nachdem Durchlauf vor folgendem Problem:



??

Denke es liegt an dem: db-4.8.30.NC

??

vor dem gleichen problem stehe ich momentan auch.
hat vielleicht jemand anders schon es hinbekommen?!

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
saugwurm
Hero Member
*****
Offline Offline

Activity: 1061
Merit: 551


View Profile WWW
September 21, 2017, 01:42:56 PM
 #144

hatte ein ähnliches Problem mit der DEM damals. Was bei mir geholfen hat:
Wallet auf Rechner installieren, Sync durchlaufen lassen und dann denn "Database" Ordner vom Rechner auf Raspberry kopiert und ersetzt Smiley

Hat Jemand von euch die 50k Masternodecoins bekommen?
cygan
Legendary
*
Offline Offline

Activity: 3164
Merit: 8042


Crypto Swap Exchange


View Profile WWW
September 21, 2017, 01:51:52 PM
 #145

hatte ein ähnliches Problem mit der DEM damals. Was bei mir geholfen hat:
Wallet auf Rechner installieren, Sync durchlaufen lassen und dann denn "Database" Ordner vom Rechner auf Raspberry kopiert und ersetzt Smiley

Hat Jemand von euch die 50k Masternodecoins bekommen?

jo, ich.
masternode läuft auf meinem laptop zur zeit - 24 neue coins die stunde...  Smiley

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
Koal-84
Legendary
*
Offline Offline

Activity: 2478
Merit: 1084



View Profile
September 21, 2017, 02:44:58 PM
 #146

hat schon jemand neuigkeiten bzgl der masternodecoin wallet auf dem pi - hat die jemand schon erfolgreich zum laufen gebracht?

da ich bei mtnc seit gestern einen masternode am laufen habe würde ich das ganze auf mein raspberry pi3 verlagern.
die pi-anleitung, die im engl. ann thread von einem user gepostet wurde, bricht bei mir bei einem bestimmten punkt ab...

Bin gerade beim compilieren, mal sehen was dabei raus kommt Wink

Versuche es vorerst so:

Quote
sudo apt-get update
sudo apt-get install git build-essential libtool autotools-dev autoconf pkg-config libssl-dev libprotobuf-dev protobuf-compiler libcrypto++-dev libevent-dev libminiupnpc-dev libgmp-dev libboost-all-dev
sudo apt-get install libssl1.0-dev libssl1.0.2 # downgrade SSL from 1.1 to 1.0.2


cd ~
wget 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz'
echo '12edc0df75bf9abd7f82f821795bcee50f42cb2e5f76a6a281b85732798364ef  db-4.8.30.NC.tar.gz' | sha256sum -c
tar -xzvf db-4.8.30.NC.tar.gz

cd db-4.8.30.NC/build_unix/
../dist/configure --prefix=/usr/local --enable-cxx
make -j4 # compile on 4 cores
sudo make install

# You can delete db-4.8.30.NC.tar.gz file and db-4.8.30.NC folder now if you like.

export LD_LIBRARY_PATH="/usr/local/lib/"

cd /home/pi
git clone https://github.com/masternodecoin/masternodecoin
cd masternodecoin

# these scripts need to be executable
chmod +x src/leveldb/build_detect_platform
chmod +x src/secp256k1/autogen.sh

# Now we can build the MasterNodeCoin daemon
qmake
make

ok, hat bis jetzt keine probleme gegeben.
was muss ich als nächstes tun?

in das Verzeichnis gehen und,

qmake
make

stehe aber nachdem Durchlauf vor folgendem Problem:



??

Denke es liegt an dem: db-4.8.30.NC

??

vor dem gleichen problem stehe ich momentan auch.
hat vielleicht jemand anders schon es hinbekommen?!

Denke das es an dieser Installation liegt: db-4.8.30.NC

Versuche das ganze noch einmal mit einem "Jungfräulichen" Raspi Image?!

█████████████████████████
██
█████▀▀███████▀▀███████
█████▀░░▄███████▄░░▀█████
██▀░░██████▀░▀████░░▀██
██▀░░▀▀▀████████████░░▀██
██░░█▄████▀▀███▀█████░░██
██░░███▄▄███████▀▀███░░██
██░░█████████████████░░██
██▄░░████▄▄██████▄▄█░░▄██
██▄░░██████▄░░████░░▄██
█████▄░░▀███▌░░▐▀░░▄█████
███████▄▄███████▄▄███████
█████████████████████████
.
.ROOBET 2.0..██████.IIIIIFASTER & SLEEKER.██████.
|

█▄█
▀█▀
████▄▄██████▄▄████
█▄███▀█░░█████░░█▀███▄█
▀█▄▄░▐█████████▌▄▄█▀
██▄▄█████████▄▄████▌
██████▄▄████████
█▀▀████████████████
██████
█████████████
██
█▀▀██████████████
▀▀▀███████████▀▀▀▀
|.
    PLAY NOW    
Buchi-88
Legendary
*
Offline Offline

Activity: 3808
Merit: 2560



View Profile
September 22, 2017, 08:32:56 AM
 #147

Eine neue Revision der HOW TO Masternodecoin on Raspberry inkl. GUI Support, von mir aber noch ungetestet...

sorry, i was running console version only on a pi

i will try to get the qt version working
might take 1-2 days for a (hopefully positive) result

So here is a working guide how to compile the Masternode-qt binary on a Raspberry Pi 3:
Code:
#
# ###########################
# raspbian-stretch (tested with version of 2017-09-07) on a Raspberry Pi 3 with 16 GiB sdcard
# (running from a user-account with sudo rights)
# ###########################
#

#
# Install dependencies
#
sudo apt-get update
sudo apt-get install git build-essential qt5-default libtool autotools-dev autoconf pkg-config libssl-dev libprotobuf-dev protobuf-compiler libcrypto++-dev libevent-dev libminiupnpc-dev libgmp-dev libboost-all-dev
sudo apt-get install libssl1.0-dev libssl1.0.2 # downgrade SSL from 1.1 to 1.0.2

# set the swap space on sd-card to 2 GB (the amount of physical memory is insufficient)
sudo su -
echo "CONF_SWAPSIZE=2048" > /etc/dphys-swapfile
systemctl restart dphys-swapfile
exit # exit root shell to be logged in as user again


#
# Build Berkeley DB
# Debian 9 ships with version 5.3 but this wallet needs older version 4.8
# The required version is not hosted in the newer debian repositories, so we need to compile on our own.
#
# Fetch the source
cd ~
wget 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz'
# verify it's really the file we are looking for
echo '12edc0df75bf9abd7f82f821795bcee50f42cb2e5f76a6a281b85732798364ef  db-4.8.30.NC.tar.gz' | sha256sum -c
# ONLY CONTINUE if there is no error - should be a line like this:
# -> db-4.8.30.NC.tar.gz: OK
tar -xzvf db-4.8.30.NC.tar.gz

# Build the library and install to /usr/local
cd db-4.8.30.NC/build_unix/
../dist/configure --prefix=/usr/local --enable-cxx
make -j4 # compile on 4 cores
sudo make install # copy compiled files to /usr/local

# You can delete db-4.8.30.NC.tar.gz file and db-4.8.30.NC folder now if you like.

# I added LD_LIBRARY_PATH to my .bashrc, so the bdb lib can be found by the executable we will compile later on
export LD_LIBRARY_PATH="/usr/local/lib/"



#
# Get MasterNodeCoin sources from github and compile it
#
cd ~
mkdir masternodecoin
cd masternodecoin
git clone https://github.com/masternodecoin/masternodecoin.git .

# these scripts need to be executable
chmod +x src/leveldb/build_detect_platform
chmod +x src/secp256k1/autogen.sh



# workaround because lrelease is not working on raspi - it never starts...
# so qmake would never end. we just create a dummy executable which does nothing
sudo touch dummy.sh
sudo chmod +x dummy.sh
sudo mv dummy.sh /usr/bin/
sudo ln -s /usr/bin/dummy.sh /usr/lib/arm-linux-gnueabihf/qt5/bin/lrelease

# ensure using the right version of qt
export QT_SELECT=qt5
# Now we can build the MasterNodeCoin-QT binary ...
qmake
make # compile.. this will take ages, wait patiently ;)
# ... and copy the resulting binary to bin-folder
sudo cp Masternodecoin-qt /usr/bin/Masternodecoin


# to run it simply type "Masternodecoin" to a terminal
# or create a link to the binary in the start-menu / on the desktop

# Data (Blockchain and wallet.dat) is saved to ~/.Masternodecoin

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
andreas911
Sr. Member
****
Offline Offline

Activity: 896
Merit: 323



View Profile
September 22, 2017, 08:50:24 AM
 #148

Für alle Staker habe ich gute Nachrichten! Mit diesen Mini-PC: Mini PC - CSL PC on a Stick / Win 10 - Silent HDMI-Stick mit Intel QuadCore CPU 1833MHz, 32GB SSD, Intel HD Graphics, WLAN, USB, HDMI, microSD, Bluetooth, Windows 10 Home (einfach mal googeln) wird das Staken wohl um einiges leichter. Ich habe Erfahrungsberichte gelesen, wonach der Mini-PC wie ein normaler Windowsrechner läuft, muss nur an einen Fernseher oder Monitor angeschlossen werden. Es gibt auch verschiedene Varianten mit besseren CPU und höhere Speicherkapazität. Der Stromverbrauch ist extrem gering. Ja ein nachteil gibt es vielleicht, er ist etwas teurer als das Pi, aber die paar Euronen nehme ich für die Arbeitserleichterung gerne in Kauf.
Buchi-88
Legendary
*
Offline Offline

Activity: 3808
Merit: 2560



View Profile
September 22, 2017, 09:06:27 AM
 #149

Für alle Staker habe ich gute Nachrichten! Mit diesen Mini-PC: Mini PC - CSL PC on a Stick / Win 10 - Silent HDMI-Stick mit Intel QuadCore CPU 1833MHz, 32GB SSD, Intel HD Graphics, WLAN, USB, HDMI, microSD, Bluetooth, Windows 10 Home (einfach mal googeln) wird das Staken wohl um einiges leichter. Ich habe Erfahrungsberichte gelesen, wonach der Mini-PC wie ein normaler Windowsrechner läuft, muss nur an einen Fernseher oder Monitor angeschlossen werden. Es gibt auch verschiedene Varianten mit besseren CPU und höhere Speicherkapazität. Der Stromverbrauch ist extrem gering. Ja ein nachteil gibt es vielleicht, er ist etwas teurer als das Pi, aber die paar Euronen nehme ich für die Arbeitserleichterung gerne in Kauf.

Und da wirst du auch nicht mehr als 5 - 6 Wallets zum laufen bringen, denke das eher bei < 4 Schluss ist (2 GB RAM), ich hoffe auf den Pi 4 mit 2GB Ram Wink... oder halt die Banane Wink

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
cimpex
Sr. Member
****
Offline Offline

Activity: 588
Merit: 252



View Profile
September 22, 2017, 09:56:20 AM
 #150

Für alle Staker habe ich gute Nachrichten! Mit diesen Mini-PC: Mini PC - CSL PC on a Stick / Win 10 - Silent HDMI-Stick mit Intel QuadCore CPU 1833MHz, 32GB SSD, Intel HD Graphics, WLAN, USB, HDMI, microSD, Bluetooth, Windows 10 Home (einfach mal googeln) wird das Staken wohl um einiges leichter. Ich habe Erfahrungsberichte gelesen, wonach der Mini-PC wie ein normaler Windowsrechner läuft, muss nur an einen Fernseher oder Monitor angeschlossen werden. Es gibt auch verschiedene Varianten mit besseren CPU und höhere Speicherkapazität. Der Stromverbrauch ist extrem gering. Ja ein nachteil gibt es vielleicht, er ist etwas teurer als das Pi, aber die paar Euronen nehme ich für die Arbeitserleichterung gerne in Kauf.

Und da wirst du auch nicht mehr als 5 - 6 Wallets zum laufen bringen, denke das eher bei < 4 Schluss ist (2 GB RAM), ich hoffe auf den Pi 4 mit 2GB Ram Wink... oder halt die Banane Wink
Das denke ich auch. Wallets verbrauchen im Bereich von 150-250 MB. 2 GB sind sehr wenig, wenn man bedenkt, dass auch Windows selbst etwas Platz benötigt. Wer viele Wallets betreiben möchte, der nimmt sich am besten einen vollwertigen PC. Es gibt günstige ITX Boards mit SoC, wo man bis zu 32 GB RAM verbauen kann, wenn man das möchte/benötigt. Insbesondere für jene die mit Linux nur schlecht zurecht kommen, ist das eine gute und auch stromsparende Lösung.


            ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
         █████████████████████████▄   
       ███████                 ██████
     ██████                      ██████
    █████      ███████████▄        ████
   ████      █████████████▀         ████
  ████      █████            ██      ████
 █████     ████     ▄▄▄      ███     ████
 █████     ████   ███████   ████
 ████      ████   ███████   ████
 ████      ████   ██████    ████      ███
  ████     █████   ▀▀▀▀     ████     ████
  ████      █████            ██      ████
   ████      █████████████▄         ████
    █████      ███████████▀        ████
     ██████                       ████
       ██████
         ██████████████████████▄
             ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
SKYFchain
█▀▀▀▀▀▀█
█  ▄██
██▀  █
█  ▄██
██▀  █
█  ▄██
██▀  █
█  ▄██
██▀  █
█      █
█▄▄▄▄▄▄█

█▀▀▀▀▀▀█
█  ▄██
██▀  █
█  ▄██
██▀  █
█  ▄██
██▀  █
█  ▄██
██▀  █
█      █
█▄▄▄▄▄▄█
cygan
Legendary
*
Offline Offline

Activity: 3164
Merit: 8042


Crypto Swap Exchange


View Profile WWW
September 22, 2017, 04:30:34 PM
 #151

Eine neue Revision der HOW TO Masternodecoin on Raspberry inkl. GUI Support, von mir aber noch ungetestet...

sorry, i was running console version only on a pi

i will try to get the qt version working
might take 1-2 days for a (hopefully positive) result

So here is a working guide how to compile the Masternode-qt binary on a Raspberry Pi 3:
Code:
#
# ###########################
# raspbian-stretch (tested with version of 2017-09-07) on a Raspberry Pi 3 with 16 GiB sdcard
# (running from a user-account with sudo rights)
# ###########################
#

#
# Install dependencies
#
sudo apt-get update
sudo apt-get install git build-essential qt5-default libtool autotools-dev autoconf pkg-config libssl-dev libprotobuf-dev protobuf-compiler libcrypto++-dev libevent-dev libminiupnpc-dev libgmp-dev libboost-all-dev
sudo apt-get install libssl1.0-dev libssl1.0.2 # downgrade SSL from 1.1 to 1.0.2

# set the swap space on sd-card to 2 GB (the amount of physical memory is insufficient)
sudo su -
echo "CONF_SWAPSIZE=2048" > /etc/dphys-swapfile
systemctl restart dphys-swapfile
exit # exit root shell to be logged in as user again


#
# Build Berkeley DB
# Debian 9 ships with version 5.3 but this wallet needs older version 4.8
# The required version is not hosted in the newer debian repositories, so we need to compile on our own.
#
# Fetch the source
cd ~
wget 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz'
# verify it's really the file we are looking for
echo '12edc0df75bf9abd7f82f821795bcee50f42cb2e5f76a6a281b85732798364ef  db-4.8.30.NC.tar.gz' | sha256sum -c
# ONLY CONTINUE if there is no error - should be a line like this:
# -> db-4.8.30.NC.tar.gz: OK
tar -xzvf db-4.8.30.NC.tar.gz

# Build the library and install to /usr/local
cd db-4.8.30.NC/build_unix/
../dist/configure --prefix=/usr/local --enable-cxx
make -j4 # compile on 4 cores
sudo make install # copy compiled files to /usr/local

# You can delete db-4.8.30.NC.tar.gz file and db-4.8.30.NC folder now if you like.

# I added LD_LIBRARY_PATH to my .bashrc, so the bdb lib can be found by the executable we will compile later on
export LD_LIBRARY_PATH="/usr/local/lib/"



#
# Get MasterNodeCoin sources from github and compile it
#
cd ~
mkdir masternodecoin
cd masternodecoin
git clone https://github.com/masternodecoin/masternodecoin.git .

# these scripts need to be executable
chmod +x src/leveldb/build_detect_platform
chmod +x src/secp256k1/autogen.sh



# workaround because lrelease is not working on raspi - it never starts...
# so qmake would never end. we just create a dummy executable which does nothing
sudo touch dummy.sh
sudo chmod +x dummy.sh
sudo mv dummy.sh /usr/bin/
sudo ln -s /usr/bin/dummy.sh /usr/lib/arm-linux-gnueabihf/qt5/bin/lrelease

# ensure using the right version of qt
export QT_SELECT=qt5
# Now we can build the MasterNodeCoin-QT binary ...
qmake
make # compile.. this will take ages, wait patiently ;)
# ... and copy the resulting binary to bin-folder
sudo cp Masternodecoin-qt /usr/bin/Masternodecoin


# to run it simply type "Masternodecoin" to a terminal
# or create a link to the binary in the start-menu / on the desktop

# Data (Blockchain and wallet.dat) is saved to ~/.Masternodecoin

also nach dieser anleitung läuft die wallet auf dem pi3 immernoch nicht  Roll Eyes Undecided

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
Buchi-88
Legendary
*
Offline Offline

Activity: 3808
Merit: 2560



View Profile
September 22, 2017, 05:10:46 PM
 #152

Eine neue Revision der HOW TO Masternodecoin on Raspberry inkl. GUI Support, von mir aber noch ungetestet...

sorry, i was running console version only on a pi

i will try to get the qt version working
might take 1-2 days for a (hopefully positive) result

So here is a working guide how to compile the Masternode-qt binary on a Raspberry Pi 3:
Code:
#
# ###########################
# raspbian-stretch (tested with version of 2017-09-07) on a Raspberry Pi 3 with 16 GiB sdcard
# (running from a user-account with sudo rights)
# ###########################
#

#
# Install dependencies
#
sudo apt-get update
sudo apt-get install git build-essential qt5-default libtool autotools-dev autoconf pkg-config libssl-dev libprotobuf-dev protobuf-compiler libcrypto++-dev libevent-dev libminiupnpc-dev libgmp-dev libboost-all-dev
sudo apt-get install libssl1.0-dev libssl1.0.2 # downgrade SSL from 1.1 to 1.0.2

# set the swap space on sd-card to 2 GB (the amount of physical memory is insufficient)
sudo su -
echo "CONF_SWAPSIZE=2048" > /etc/dphys-swapfile
systemctl restart dphys-swapfile
exit # exit root shell to be logged in as user again


#
# Build Berkeley DB
# Debian 9 ships with version 5.3 but this wallet needs older version 4.8
# The required version is not hosted in the newer debian repositories, so we need to compile on our own.
#
# Fetch the source
cd ~
wget 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz'
# verify it's really the file we are looking for
echo '12edc0df75bf9abd7f82f821795bcee50f42cb2e5f76a6a281b85732798364ef  db-4.8.30.NC.tar.gz' | sha256sum -c
# ONLY CONTINUE if there is no error - should be a line like this:
# -> db-4.8.30.NC.tar.gz: OK
tar -xzvf db-4.8.30.NC.tar.gz

# Build the library and install to /usr/local
cd db-4.8.30.NC/build_unix/
../dist/configure --prefix=/usr/local --enable-cxx
make -j4 # compile on 4 cores
sudo make install # copy compiled files to /usr/local

# You can delete db-4.8.30.NC.tar.gz file and db-4.8.30.NC folder now if you like.

# I added LD_LIBRARY_PATH to my .bashrc, so the bdb lib can be found by the executable we will compile later on
export LD_LIBRARY_PATH="/usr/local/lib/"



#
# Get MasterNodeCoin sources from github and compile it
#
cd ~
mkdir masternodecoin
cd masternodecoin
git clone https://github.com/masternodecoin/masternodecoin.git .

# these scripts need to be executable
chmod +x src/leveldb/build_detect_platform
chmod +x src/secp256k1/autogen.sh



# workaround because lrelease is not working on raspi - it never starts...
# so qmake would never end. we just create a dummy executable which does nothing
sudo touch dummy.sh
sudo chmod +x dummy.sh
sudo mv dummy.sh /usr/bin/
sudo ln -s /usr/bin/dummy.sh /usr/lib/arm-linux-gnueabihf/qt5/bin/lrelease

# ensure using the right version of qt
export QT_SELECT=qt5
# Now we can build the MasterNodeCoin-QT binary ...
qmake
make # compile.. this will take ages, wait patiently ;)
# ... and copy the resulting binary to bin-folder
sudo cp Masternodecoin-qt /usr/bin/Masternodecoin


# to run it simply type "Masternodecoin" to a terminal
# or create a link to the binary in the start-menu / on the desktop

# Data (Blockchain and wallet.dat) is saved to ~/.Masternodecoin

also nach dieser anleitung läuft die wallet auf dem pi3 immernoch nicht  Roll Eyes Undecided

Mein Pi ist noch am arbeiten, poste den Fehler im Original thread, ich denke es hat auch etwas mit dem zu tun...
Quote
sudo make install # copy compiled files to /usr/local

Was soll man dahin kopieren den ganzen Ordner? Ich habe auch eine andere Wallet versucht genau der gleiche Fehler bei der letzten Anwendung, eventuell ohne den 4.8 versuchen...

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
Buchi-88
Legendary
*
Offline Offline

Activity: 3808
Merit: 2560



View Profile
September 22, 2017, 07:25:38 PM
 #153

Eine neue Revision der HOW TO Masternodecoin on Raspberry inkl. GUI Support, von mir aber noch ungetestet...

sorry, i was running console version only on a pi

i will try to get the qt version working
might take 1-2 days for a (hopefully positive) result

So here is a working guide how to compile the Masternode-qt binary on a Raspberry Pi 3:
Code:
#
# ###########################
# raspbian-stretch (tested with version of 2017-09-07) on a Raspberry Pi 3 with 16 GiB sdcard
# (running from a user-account with sudo rights)
# ###########################
#

#
# Install dependencies
#
sudo apt-get update
sudo apt-get install git build-essential qt5-default libtool autotools-dev autoconf pkg-config libssl-dev libprotobuf-dev protobuf-compiler libcrypto++-dev libevent-dev libminiupnpc-dev libgmp-dev libboost-all-dev
sudo apt-get install libssl1.0-dev libssl1.0.2 # downgrade SSL from 1.1 to 1.0.2

# set the swap space on sd-card to 2 GB (the amount of physical memory is insufficient)
sudo su -
echo "CONF_SWAPSIZE=2048" > /etc/dphys-swapfile
systemctl restart dphys-swapfile
exit # exit root shell to be logged in as user again


#
# Build Berkeley DB
# Debian 9 ships with version 5.3 but this wallet needs older version 4.8
# The required version is not hosted in the newer debian repositories, so we need to compile on our own.
#
# Fetch the source
cd ~
wget 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz'
# verify it's really the file we are looking for
echo '12edc0df75bf9abd7f82f821795bcee50f42cb2e5f76a6a281b85732798364ef  db-4.8.30.NC.tar.gz' | sha256sum -c
# ONLY CONTINUE if there is no error - should be a line like this:
# -> db-4.8.30.NC.tar.gz: OK
tar -xzvf db-4.8.30.NC.tar.gz

# Build the library and install to /usr/local
cd db-4.8.30.NC/build_unix/
../dist/configure --prefix=/usr/local --enable-cxx
make -j4 # compile on 4 cores
sudo make install # copy compiled files to /usr/local

# You can delete db-4.8.30.NC.tar.gz file and db-4.8.30.NC folder now if you like.

# I added LD_LIBRARY_PATH to my .bashrc, so the bdb lib can be found by the executable we will compile later on
export LD_LIBRARY_PATH="/usr/local/lib/"



#
# Get MasterNodeCoin sources from github and compile it
#
cd ~
mkdir masternodecoin
cd masternodecoin
git clone https://github.com/masternodecoin/masternodecoin.git .

# these scripts need to be executable
chmod +x src/leveldb/build_detect_platform
chmod +x src/secp256k1/autogen.sh



# workaround because lrelease is not working on raspi - it never starts...
# so qmake would never end. we just create a dummy executable which does nothing
sudo touch dummy.sh
sudo chmod +x dummy.sh
sudo mv dummy.sh /usr/bin/
sudo ln -s /usr/bin/dummy.sh /usr/lib/arm-linux-gnueabihf/qt5/bin/lrelease

# ensure using the right version of qt
export QT_SELECT=qt5
# Now we can build the MasterNodeCoin-QT binary ...
qmake
make # compile.. this will take ages, wait patiently ;)
# ... and copy the resulting binary to bin-folder
sudo cp Masternodecoin-qt /usr/bin/Masternodecoin


# to run it simply type "Masternodecoin" to a terminal
# or create a link to the binary in the start-menu / on the desktop

# Data (Blockchain and wallet.dat) is saved to ~/.Masternodecoin

also nach dieser anleitung läuft die wallet auf dem pi3 immernoch nicht  Roll Eyes Undecided

Bei mir läuft es jetzt auf dem Pi 2  Grin Grin Grin Shocked Shocked Shocked


█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
cygan
Legendary
*
Offline Offline

Activity: 3164
Merit: 8042


Crypto Swap Exchange


View Profile WWW
September 22, 2017, 07:37:31 PM
 #154

Eine neue Revision der HOW TO Masternodecoin on Raspberry inkl. GUI Support, von mir aber noch ungetestet...

sorry, i was running console version only on a pi

i will try to get the qt version working
might take 1-2 days for a (hopefully positive) result

So here is a working guide how to compile the Masternode-qt binary on a Raspberry Pi 3:
Code:
#
# ###########################
# raspbian-stretch (tested with version of 2017-09-07) on a Raspberry Pi 3 with 16 GiB sdcard
# (running from a user-account with sudo rights)
# ###########################
#

#
# Install dependencies
#
sudo apt-get update
sudo apt-get install git build-essential qt5-default libtool autotools-dev autoconf pkg-config libssl-dev libprotobuf-dev protobuf-compiler libcrypto++-dev libevent-dev libminiupnpc-dev libgmp-dev libboost-all-dev
sudo apt-get install libssl1.0-dev libssl1.0.2 # downgrade SSL from 1.1 to 1.0.2

# set the swap space on sd-card to 2 GB (the amount of physical memory is insufficient)
sudo su -
echo "CONF_SWAPSIZE=2048" > /etc/dphys-swapfile
systemctl restart dphys-swapfile
exit # exit root shell to be logged in as user again


#
# Build Berkeley DB
# Debian 9 ships with version 5.3 but this wallet needs older version 4.8
# The required version is not hosted in the newer debian repositories, so we need to compile on our own.
#
# Fetch the source
cd ~
wget 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz'
# verify it's really the file we are looking for
echo '12edc0df75bf9abd7f82f821795bcee50f42cb2e5f76a6a281b85732798364ef  db-4.8.30.NC.tar.gz' | sha256sum -c
# ONLY CONTINUE if there is no error - should be a line like this:
# -> db-4.8.30.NC.tar.gz: OK
tar -xzvf db-4.8.30.NC.tar.gz

# Build the library and install to /usr/local
cd db-4.8.30.NC/build_unix/
../dist/configure --prefix=/usr/local --enable-cxx
make -j4 # compile on 4 cores
sudo make install # copy compiled files to /usr/local

# You can delete db-4.8.30.NC.tar.gz file and db-4.8.30.NC folder now if you like.

# I added LD_LIBRARY_PATH to my .bashrc, so the bdb lib can be found by the executable we will compile later on
export LD_LIBRARY_PATH="/usr/local/lib/"



#
# Get MasterNodeCoin sources from github and compile it
#
cd ~
mkdir masternodecoin
cd masternodecoin
git clone https://github.com/masternodecoin/masternodecoin.git .

# these scripts need to be executable
chmod +x src/leveldb/build_detect_platform
chmod +x src/secp256k1/autogen.sh



# workaround because lrelease is not working on raspi - it never starts...
# so qmake would never end. we just create a dummy executable which does nothing
sudo touch dummy.sh
sudo chmod +x dummy.sh
sudo mv dummy.sh /usr/bin/
sudo ln -s /usr/bin/dummy.sh /usr/lib/arm-linux-gnueabihf/qt5/bin/lrelease

# ensure using the right version of qt
export QT_SELECT=qt5
# Now we can build the MasterNodeCoin-QT binary ...
qmake
make # compile.. this will take ages, wait patiently ;)
# ... and copy the resulting binary to bin-folder
sudo cp Masternodecoin-qt /usr/bin/Masternodecoin


# to run it simply type "Masternodecoin" to a terminal
# or create a link to the binary in the start-menu / on the desktop

# Data (Blockchain and wallet.dat) is saved to ~/.Masternodecoin

also nach dieser anleitung läuft die wallet auf dem pi3 immernoch nicht  Roll Eyes Undecided

Bei mir läuft es jetzt auf dem Pi 2  Grin Grin Grin Shocked Shocked Shocked



geil!
nach welcher anleitung bzw. was hast du anders gemacht?!

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
Buchi-88
Legendary
*
Offline Offline

Activity: 3808
Merit: 2560



View Profile
September 22, 2017, 07:41:42 PM
 #155

Genau nach Revision2, welcher Feler kommt bei dir? Ich habe meine SD Karte vom Pi noch einmal komplett platt gemacht Wink

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
cygan
Legendary
*
Offline Offline

Activity: 3164
Merit: 8042


Crypto Swap Exchange


View Profile WWW
September 22, 2017, 07:44:37 PM
 #156

Genau nach Revision2, welcher Feler kommt bei dir? Ich habe meine SD Karte vom Pi noch einmal komplett platt gemacht Wink

habe den gleichen fehler, wie du vorhin

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
Buchi-88
Legendary
*
Offline Offline

Activity: 3808
Merit: 2560



View Profile
September 22, 2017, 07:48:33 PM
 #157

Genau nach Revision2, welcher Feler kommt bei dir? Ich habe meine SD Karte vom Pi noch einmal komplett platt gemacht Wink

habe den gleichen fehler, wie du vorhin

Hast du beim kopieren das so gemacht?
Quote
# Build the library and install to /usr/local
cd db-4.8.30.NC/build_unix/
../dist/configure --prefix=/usr/local --enable-cxx
make -j4 # compile on 4 cores
sudo make install # copy compiled files to /usr/local

sudo cp -r db-4.8.30.NC /usr/local


█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
cygan
Legendary
*
Offline Offline

Activity: 3164
Merit: 8042


Crypto Swap Exchange


View Profile WWW
September 22, 2017, 07:52:08 PM
 #158

Genau nach Revision2, welcher Feler kommt bei dir? Ich habe meine SD Karte vom Pi noch einmal komplett platt gemacht Wink

habe den gleichen fehler, wie du vorhin

Hast du beim kopieren das so gemacht?
Quote
# Build the library and install to /usr/local
cd db-4.8.30.NC/build_unix/
../dist/configure --prefix=/usr/local --enable-cxx
make -j4 # compile on 4 cores
sudo make install # copy compiled files to /usr/local

sudo cp -r db-4.8.30.NC /usr/local



also den befehl sudo cp -r db-4.8.30.NC /usr/local hatte ich jetzt garnicht auf dem schirm

kann ich das gleich nachholen oder muss die ganze installation wieder von neu begonnen werden?

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
Buchi-88
Legendary
*
Offline Offline

Activity: 3808
Merit: 2560



View Profile
September 22, 2017, 08:17:19 PM
 #159

Genau nach Revision2, welcher Feler kommt bei dir? Ich habe meine SD Karte vom Pi noch einmal komplett platt gemacht Wink

habe den gleichen fehler, wie du vorhin

Hast du beim kopieren das so gemacht?
Quote
# Build the library and install to /usr/local
cd db-4.8.30.NC/build_unix/
../dist/configure --prefix=/usr/local --enable-cxx
make -j4 # compile on 4 cores
sudo make install # copy compiled files to /usr/local

sudo cp -r db-4.8.30.NC /usr/local



also den befehl sudo cp -r db-4.8.30.NC /usr/local hatte ich jetzt garnicht auf dem schirm

kann ich das gleich nachholen oder muss die ganze installation wieder von neu begonnen werden?

#olllte gleich nach dem kompilieren noch immer funktionieren, danach die Installation einfach wiederholen?!

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
cygan
Legendary
*
Offline Offline

Activity: 3164
Merit: 8042


Crypto Swap Exchange


View Profile WWW
September 22, 2017, 08:22:14 PM
 #160

Genau nach Revision2, welcher Feler kommt bei dir? Ich habe meine SD Karte vom Pi noch einmal komplett platt gemacht Wink

habe den gleichen fehler, wie du vorhin

Hast du beim kopieren das so gemacht?
Quote
# Build the library and install to /usr/local
cd db-4.8.30.NC/build_unix/
../dist/configure --prefix=/usr/local --enable-cxx
make -j4 # compile on 4 cores
sudo make install # copy compiled files to /usr/local

sudo cp -r db-4.8.30.NC /usr/local



also den befehl sudo cp -r db-4.8.30.NC /usr/local hatte ich jetzt garnicht auf dem schirm

kann ich das gleich nachholen oder muss die ganze installation wieder von neu begonnen werden?

#olllte gleich nach dem kompilieren noch immer funktionieren, danach die Installation einfach wiederholen?!

Code:
pi@raspberrypi:~/masternodecoin $ sudo cp -r db-4.8.30.NC /usr/local
cp: der Aufruf von stat für „db-4.8.30.NC“ ist nicht möglich: Datei oder Verzeichnis nicht gefunden

 Huh

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
Pages: « 1 2 3 4 5 6 7 [8] 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!