Quarkcoin 夸克币 Linux Ubuntu 安装
cd Desktop
sudo apt-get update
sudo apt-get -y install make gcc m4 automake libevent-dev zlibc zlib1g-dev libjansson-dev libcurl4-openssl-dev git
git clone https://github.com/MaxGuevara/quark.git
cd quark
qmake
make
You should now have a quark folder on your desktop - open that and double click on quarkmine-qt to open the wallet
I am using Slackware 13.37 x86_64
gcc (GCC) 4.5.2
QMake version 2.01a
Qt version 4.7.0
Followed these commands:
git clone github.com/MaxGuevara/quark.git
cd quark/
qmake
make
Seemed to be going along fine until:
In file included from src/walletdb.h:8:0,
from src/wallet.h:19,
from src/init.h:8,
from src/qt/bitcoin.cpp:13:
src/db.h: In member function ‘bool CDB::Exists(const K&)’:
src/db.h:209:24: error: ‘class Db’ has no member named ‘exists’
make: *** [build/bitcoin.o] Error 1
Since you asked for people to post their compiling issues.
Now, I would like help in solving this, but I also have some questions about software sources, updates, versions, etc.
1. Just how dependent is the Quark system on current versions of software?
2. What about someone's "wallet" being hijacked i.e. uploaded to a malware site?
Ubuntu
sudo apt-get update
sudo apt-get install autoconf
sudo apt-get install automake
sudo apt-get install git
sudo apt-get install libcurl4-openssl-dev
sudo apt-get install make
sudo apt-get install build-essential
git clone github.com/Neisklar/quarkcoin-cpuminer.git
cd quarkcoin-cpuminer
./autogen.sh
./configure CFLAGS="-O3"
make
Запуск:
./minerd -o stratum+tcp://qrk.coinmine.pl:6010 -u user.worker -p password
Использую этот метод запуска на CentOS
yum groupinstall “Development Tools”
yum install libcurl-devel python-devel screen rsync gcc make automake git
git clone git://github.com/Neisklar/quarkcoin-cpuminer.git
cd quarkcoin-cpuminer
./autogen.sh
./configure CFLAGS="-O3"
make
Запуск:
./minerd -o stratum+tcp://qrk.coinmine.pl:6010 -u user.worker -p password
Ubuntu/Mint/Debian Guide
This will be all text since, you're going to be using all text.
1. Install dependencies: sudo apt-get install autoconf autogen automake build-essential libcurl4-openssl-dev git
2. When that is finished type: git clone https://github.com/uncle-bob/quarkcoin-cpuminer.git
3. That will finish downloading, type: cd quarkcoin-cpuminer
4. Type: wget raw.github.com/rallat/quarkcoin-cpuminer/4e6c263c837bd04261df1ba7383ea828409ff498/acinclude.m4
5. Wait for the above to download, and type: ./autogen.sh
6. Wait for the above to finish, and type: ./configure CFLAGS="-O3"
7. Wait some more for the above to finish and finally type: make
8. Type your command: ./minerd -a quark -o stratum+tcp://lowend.fm:8372 -t 8 -u <wallet address> &
9. Edit above command as needed for your pool, threads, and wallet address
目录 返回
首页