https://wallet.burstcoin.ro/rewardassignment.htmlon the bottom ( see "Set reward recipient" )
BURST-GG4B-34Y9-ZXGV-FNTNJ
https://github.com/Creepsky/creepMiner/releases/download/2.6.0/creepMiner-1.6.0.zip
jminer: https://github.com/de-luxe/burstcoin-jminer/releases
https://github.com/Blagodarenko/miner-burst/releases/
https://github.com/Creepsky/creepMiner
I use CentOS 7. It comes with gcc 4.8 (CentOS focuses on stability), but it is quite easy to get newer versions runing using the Software Collections. Here I show how to compile creepMiner starting from a clean minimal CentOS 7 instalation:
# update the system & reboot
sudo yum -y update && sudo reboot
#Install Extra Packages for Enterprise Linux
sudo yum -y install epel-release
# install git
sudo yum -y install git
# download creepminer
git clone https://github.com/Creepsky/creepMiner
# install poco libraries
sudo yum -y install poco-*
# install openssl headers
sudo yum -y install openssl-devel
# Here is the trick to get gcc 5.3.1 working
# Install Software Collections (www.softwarecollections.org). It gives you
# the power to build, install, and use multiple versions of software
# on the same system, without affecting system-wide installed packages.
sudo yum -y install centos-release-scl
# Add the Devtoolset-4 collection, which includes gcc 5.3.1
sudo yum -y install devtoolset-4
# to start using software collections, just run
#
# $ scl enable devtoolset-4 bash
#
# and you get a "virtual" environment which includes gcc 5.3.1:
#
# $ gcc --version
#
# That's all. Type "exit" to exit the environment...
# Compile CreepMiner:
cd creepMiner
echo make | scl enable devtoolset-4 -