Why not spend $5 per month running a cloud based MonetaryUnit wallet miner using DigitalOcean.
Help support and protect the Mue network, and earn Mue while you're doing it

Thanks to drakoin for the walk through
Just copy and paste each
red line into the console, ONE line at a time
SET UP THE SERVER & WALLET# Sign up at digital ocean
http://tiny.cc/digocean NL USA Singapur
# You probably get 10$ welcome bonus if you go through my link before signing up.
# Create droplet: Choose 512MB; Region close to you; Ubuntu.
# Wait for the email with the root password.
# To connect use ssh putty.exe
# become superuser
sudo -i# update all software (all the installed packages)
apt-get update; apt-get upgrade# prep the system to be able to git & compile & build
apt-get install git make automake build-essential libboost-all-dev# might be necessary for other tools & distros:
apt-get install yasm binutils libcurl4-openssl-dev openssl libssl-dev# compiling needs a large SWAP file:
sudo dd if=/dev/zero of=/swapfile bs=80M count=16sudo mkswapswapfile; sudo swaponswapfile# For some reason, bitcoind is stuck in an old database version db4.8,
# which is not supported by newest ubuntu debian anymore, so we get it manually:
# Get db4.8 source, compile and install (takes 5 minutes)
cd ~wget http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gztar zxf db-4.8.30.NC.tar.gz
cd db-4.8.30.NC/build_unix; ../dist/configure enable-cxx
make; sudo make install
rm -R ~/db-4.8.30.NC* # delete the sources
# Link the libraries
sudo ln -susr/local/BerkeleyDB.4.8/lib/libdb-4.8.sousr/lib/libdb-4.8.sosudo ln -susr/local/BerkeleyDB.4.8/lib/libdb_cxx-4.8.sousr/lib/libdb_cxx-4.8.so#
# (SERVER IS PREPARED. FROM HERE ON YOU CAN INSTALL OTHER WALLETS)
#
# where to find db4.8 tell your system (needs to be redone after reboot)
export BDB_INCLUDE_PATH=/usr/local/BerkeleyDB.4.8/includeexport BDB_LIB_PATH=/usr/local/BerkeleyDB.4.8/lib# Wallet sources from github, and
# build the headless server daemon monetaryunitd (takes 7 minutes)
cd ~; git clone https://github.com/MonetaryUnit/MUE-srccd ~/MUE-src/srcmkdir obj; chmod a+x leveldb/build_detect_platform # fix 2 problems with these sources
make -f makefile.unix USE_UPNP=-
cp ~/MUE-src/src/monetaryunitdusr/local/bin# create config file copy-paste all in one go. Make sure to change your password.
cd ~
mkdir ~/.monetaryunit
cat << CONFIG >> ~/.monetaryunit/monetaryunit.conf
listen=1
server=1
daemon=1
testnet=0
rpcuser=LOCALUSER
rpcpassword=VERYSECURESUPERLONGSUPERSAFEPASSWORD
rpcport=29947
CONFIG
chmod 700 ~/.monetaryunit/monetaryunit.conf
chmod 700 ~/.monetaryunit
ls -la ~/.monetaryunit# start server
# Should result in: Monetaryunit server starting:
monetaryunitd# Most important RPC commands:
# see if the blockchain is syncing (right now blocks : 142874)
monetaryunitd getinfo
# most important RPC commands (try them one by one, no danger)
monetaryunitd getbalance
monetaryunitd getnewaddress forDonations
monetaryunitd listtransactions forDonations
monetaryunitd listreceivedbyaddress 0 true
monetaryunitd listaccounts
monetaryunitd getaddressesbyaccount forDonations
monetaryunitd getaddressesbyaccount
# for more RPC commands (explanations in the API calls list)
monetaryunitd help
# if this tutorial was useful, tip me some MUE ( OR write on a PostIt(tm): Tip drakoin some coins Smiley )
# to my MUE address 7QzuXv5p2Ys181CsLiYR9PFvqwzCW1aPmK by using this command:
monetaryunitd sendtoaddress 7QzuXv5p2Ys181CsLiYR9PFvqwzCW1aPmK 111 ThanksToDrakoin ThanksForTutorial
# or please tip me now in other currencies at
www.tiny.cc/drakointip,
# or pass on profitable hints to me (read
www.tiny.cc/drakoinhints)
NOW SET UP THE MINERwget https://raw.githubusercontent.com/drakoin/LinuxWallet/master/install-quarkminer-Neisklar.sh
chmod a+x install-quarkminer-Neisklar.sh; ./install-quarkminer-Neisklar.sh
wget https://raw.githubusercontent.com/drakoin/LinuxWallet/master/mueminerstart.sh
chmod a+x mueminerstart.sh; ./mueminerstart.shOf course, you want to change the POOLUSERNAME= to your own MUE address
Code:
nano mueminerstart.shCtrl-X Y to save & exit nano