CentOS 6.4 Final x64
# Get root access
su -
# Update repositories and install build tools & dependencies
yum update
yum groupinstall "Development Tools"
yum install gmp gmp-devel zlib zlib-devel
# NOTE: This only works if you have no boost, openssl and db4 isntalled. remove them and clean your system first.
# Get openssl source, compile and install
wget http://www.openssl.org/source/openssl-1.0.1e.tar.gz
tar -xzvf openssl-1.0.1e.tar.gz
cd openssl-1.0.1e
./config --prefix=/usr/local enable-ec enable-ecdh enable-ecdsa
make
make install
# Get boost source, compile and install
cd
wget http://sourceforge.net/projects/boost/files/boost/1.54.0/boost_1_54_0.tar.gz
tar -xzvf boost_1_54_0.tar.gz
cd boost_1_54_0
./bootstrap.sh --prefix=/usr/local
./b2 install --with=all
# Get db4.8 source, compile and install
cd
wget http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz
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
make install
# Pull the xolominer source from github
cd
git clone https://github.com/thbaumbach/primecoin.git xolominer
# Go to source and compile the code
cd xolominer/src
LDFLAGS="-Wl,-R/usr/local/lib" make -f makefile.unix
# Start mining
./primeminer -pooluser=[xpm-payout-address] -poolip=[choose-your-server] -poolport=1337 -genproclimit=[threads-to-use] -poolpassword=[some-random-password-for-protection]
origin: http://www.peercointalk.org/index.php?topic=798.msg7184#msg7184
saolasın, bunu dün denemiştim fakat olmadı.
Server'ın üzerinde radyo server, torrent server aynı zamanda Plesk kurulu, muhtemelen Plesk engelliyor olabilir.
neyse serverı tamamen torrent servera çevirince yeni bir Centos veya Debiant sürümü yükler en baştan denerim artık. İlgilenen arkadaşlara teşekkürler.