Pages:
Author

Topic: [ANN] [BTQ] BitQuark | Super secure hashing | CPU mining - page 34. (Read 162313 times)

hero member
Activity: 716
Merit: 501
It looks like someone dumped and filled a lot of the buy orders. My guess would be one of the pool operators??
sr. member
Activity: 258
Merit: 250
Whoa, what the hell happened yesterday? Were all those buy orders on ccex from one person and canceled them all or something?
newbie
Activity: 39
Merit: 0
Seems to be some flux in bitquark prices. 

bitquark.info/btq-stats.php   (142 BTQ = $1 USD)

cryptofleamarket.com/rates  (10,945 BTQ = $1 USD)

c-cex.com/?p=btq-btc    (0.00000019 BTC)

Could anyone maybe list the formulas used to calculate prices?  I'm writing some SEO articles on crypto coins and plan to plug BTQ.

It would be nice if there were an offical "price index" like coindesk does for BTC.

Also, I'm working on getting BTQ listed as a 2014 coin launch on https://en.wikipedia.org/wiki/Cryptocurrency

We have the http://coinwik.org/BitQuark wiki page, but I think there could be a lot more exposure and interest if it was listed on the official wikipedia page.
hero member
Activity: 716
Merit: 501
http://www.cryptocoinrank.com/BitQuark

I dont know why the API Status is down, but it might be good to contact them and help them get it reconnected. Otherwise people will see that and think the coin might be dead.
 Embarrassed
It's mostly likely due to me switching the website from the remote server to my home server. I will contact them with the new API address.
Thanks for the heads up!
sr. member
Activity: 258
Merit: 250
http://www.cryptocoinrank.com/BitQuark

I dont know why the API Status is down, but it might be good to contact them and help them get it reconnected. Otherwise people will see that and think the coin might be dead.
 Embarrassed
sr. member
Activity: 346
Merit: 250
More problems. On my production machine running Xubuntu 13.10 I have a bitcoin wallet installed. BTQ wallet won't build from the script. When I run just the dependencies portion of autobuild.sh without the -y switch in terminal I get.....
Quote
The following packages have unmet dependencies:
 libminiupnpc-dev : Depends: libminiupnpc8 (= 1.6-3ubuntu2.13.10.1) but 1.6-precise2 is to be installed
E: Unable to correct problems, you have held broken packages.
Funny part is libminiupnpc8 IS installed. If I try to remove it in synaptic, it also wants to remove my bitcoin client and install qt5 libraries. I'm stuck.
legendary
Activity: 2688
Merit: 1240
just a short heads up from suprnova, there was a flaw in the stratum code for quark which allowed some tweaks for submitting fake shares, everything is fixed now and no fake shares are counted anymore , they now automatically result in a ban of the account.

sorry for the delay.
hero member
Activity: 716
Merit: 501
Yeah what Zero said lol.

Just want give you guys a heads up that the main website and blockexplorer maybe down for a couple days...doing some upgrades on the server Smiley
sr. member
Activity: 346
Merit: 250
Awesome!!! Here's the corrected script.

Code:
# Download and Install the Latest Updates for the OS
sudo apt-get update && sudo apt-get upgrade -y

# Install essential packages
sudo apt-get -y install \
    gcc g++ autoconf automake make git zip unzip \
    qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev libboost-filesystem-dev \
    libboost-program-options-dev libboost-thread-dev libssl-dev libdb++-dev libminiupnpc-dev libprotobuf-dev \
    protobuf-compiler libqrencode-dev \
\

# Get latest BitQuark source
git clone https://github.com/bitquarkcoin/BitQuark-0.8.3r17.git BTQ-r17
cd BTQ-r17

# Install libpng (Used for PHP GD Library Extension)
wget -O- https://s3-us-west-2.amazonaws.com/lamp-software/libpng-1.6.10.tar.gz | tar -zxf -
cd libpng-1.6.10
./configure && make && sudo make install
cd ..

# Now building bitquarkd
cd src/leveldb
chmod +x build_detect_platform
cd ..
make -f makefile.unix clean
make -f makefile.unix

# Now building bitquark-qt
cd ..
qmake "USE_QRCODE=1" "USE_UPNP=1" "USE_IPV6=1" bitquark-qt.pro
make

Just copy the code and paste it in a text file, then rename the text file AutoBuild.sh & place it in your BitQuark dirctory and run it from your terminal on Ubuntu!

Ahem! And here is the script that will actually work. Tongue

qrencode and protobuf-c-compiler are not needed. Two missing \ switches are needed.
hero member
Activity: 716
Merit: 501
Awesome!!! Here's the corrected script.

Code:
# Download and Install the Latest Updates for the OS
#sudo apt-get update && sudo apt-get upgrade -y

# Install essential packages
sudo apt-get -y install \
    gcc g++ autoconf automake make git zip unzip \
    qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev libboost-filesystem-dev \
    libboost-program-options-dev libboost-thread-dev libssl-dev libdb++-dev libminiupnpc-dev libprotobuf-dev \
    protobuf-compiler libqrencode-dev qrencode protobuf-c-compiler

# Get lates BitQuark source
#git clone https://github.com/bitquarkcoin/BitQuark-0.8.3r17.git BTQ-r17
#cd BTQ-r17

# Install libpng (Used for PHP GD Library Extension)
wget -O- https://s3-us-west-2.amazonaws.com/lamp-software/libpng-1.6.10.tar.gz | tar -zxf -
cd libpng-1.6.10
./configure && make && sudo make install
cd ..

# Now building bitquarkd
cd src/leveldb
chmod +x build_detect_platform
cd ..
make -f makefile.unix clean
make -f makefile.unix

# Now building bitquark-qt
cd ..
qmake "USE_QRCODE=1" "USE_UPNP=1" "USE_IPV6=1" bitquark-qt.pro
make

Just copy the code and paste it in a text file, then rename the text file AutoBuild.sh & place it in your BitQuark dirctory and run it from your terminal on Ubuntu!
sr. member
Activity: 346
Merit: 250
Install script is ready for prime time!
sr. member
Activity: 346
Merit: 250
Here's the completed script code I'm testing right now. I'm pretty sure this is what you intended. I found I also needed a switch on a line by itself in order to include all lines. I just named this file btq.sh to keep it short, placed it in my home directory, made it executable, opened a terminal in my home directory, then "./btq.sh" enter.

Quote
# Download and Install the Latest Updates for the OS
#sudo apt-get update && sudo apt-get upgrade -y

# Install essential packages
sudo apt-get -y install \
    gcc g++ autoconf automake make git zip unzip \
    qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev libboost-filesystem-dev \
    libboost-program-options-dev libboost-thread-dev libssl-dev libdb++-dev libminiupnpc-dev libprotobuf-dev \
    protobuf-compiler libqrencode-dev \
\

# Get latest BitQuark source
git clone https://github.com/bitquarkcoin/BitQuark-0.8.3r17.git BTQ-r17
cd BTQ-r17

# Install libpng (Used for PHP GD Library Extension)
wget -O- https://s3-us-west-2.amazonaws.com/lamp-software/libpng-1.6.10.tar.gz | tar -zxf -
cd libpng-1.6.10
./configure && make && sudo make install
cd ..
rm libpng-1.6.10.tar.gz

# Now building bitquarkd
cd src/leveldb
chmod +x build_detect_platform
cd ..
make -f makefile.unix clean
make -f makefile.unix

# Now building bitquark-qt
cd ..
qmake "USE_QRCODE=1" "USE_UPNP=1" "USE_IPV6=1" bitquark-qt.pro
make

So should this work on earlier Ubuntu versions going back to 12.04 too?
hero member
Activity: 716
Merit: 501
I KNOW WHAT THE PROBLEM IS!!!

libprotobuf-compiler libqrencode-dev never got installed because you forgot \ at the end of the 4th line.

Also, I looked for libprotobuf-compiler in synaptic and found only protobuf-c-compiler. When I install that is also installs a few other deps.

Ran make again AND IT WORKED!

I'll run it again from the top tomorrow. Need sleep.

Oh DAMN!!! All the trouble because I forgot to include the freaking switch..smh
Glad you figured it out before I ran a re-install lol
sr. member
Activity: 346
Merit: 250
I KNOW WHAT THE PROBLEM IS!!!

libprotobuf-compiler libqrencode-dev never got installed because you forgot \ at the end of the 4th line.

Also, I looked for libprotobuf-compiler in synaptic and found only protobuf-c-compiler. When I install that is also installs a few other deps.

Ran make again AND IT WORKED!

I'll run it again from the top tomorrow. Need sleep.
hero member
Activity: 716
Merit: 501
run this command by itself in the terminal to make sure it installed correctly sudo apt-get install libqrencode-dev
sr. member
Activity: 346
Merit: 250
Quote
user@user-1215N:~/BTQ-r17$ whereis qrencode.h
qrencode: /usr/bin/qrencode /usr/bin/X11/qrencode /usr/share/man/man1/qrencode.1.gz
user@user-1215N:~/BTQ-r17$

And yes, they're already commented out. Says to uncomment if building on winblows.

Oh ok...I'm going to re-install a fresh copy of Ubuntu 14.04 and see what I'm missing. I do remember getting that same error, just can't remember what I did to fix it and obviously I forgot to include it in the script. So as soon as I get everything back up and going, I will post the new script on here.

So close I can taste it! Smiley
hero member
Activity: 716
Merit: 501
Quote
user@user-1215N:~/BTQ-r17$ whereis qrencode.h
qrencode: /usr/bin/qrencode /usr/bin/X11/qrencode /usr/share/man/man1/qrencode.1.gz
user@user-1215N:~/BTQ-r17$

And yes, they're already commented out. Says to uncomment if building on winblows.

Oh ok...I'm going to re-install a fresh copy of Ubuntu 14.04 and see what I'm missing. I do remember getting that same error, just can't remember what I did to fix it and obviously I forgot to include it in the script. So as soon as I get everything back up and going, I will post the new script on here.
sr. member
Activity: 346
Merit: 250
Quote
user@user-1215N:~/BTQ-r17$ whereis qrencode.h
qrencode: /usr/bin/qrencode /usr/bin/X11/qrencode /usr/share/man/man1/qrencode.1.gz
user@user-1215N:~/BTQ-r17$

And yes, they're already commented out. Says to uncomment if building on winblows.
hero member
Activity: 716
Merit: 501
{sigh} Can I just rerun the make after that?

Code:
user@user-1215N:~$ cd BTQ-r17
user@user-1215N:~/BTQ-r17$ make
cd /home/user/BTQ-r17/src/leveldb && CC=gcc CXX=g++ make OPT="-m64 -pipe -fstack-protector-all -D_FORTIFY_SOURCE=2 -O2" libleveldb.a libmemenv.a
make[1]: Entering directory `/home/user/BTQ-r17/src/leveldb'
make[1]: `libleveldb.a' is up to date.
make[1]: `libmemenv.a' is up to date.
make[1]: Leaving directory `/home/user/BTQ-r17/src/leveldb'
cd /home/user/BTQ-r17; /bin/sh share/genbuild.sh /home/user/BTQ-r17/build/build.h
g++ -c -m64 -pipe -fstack-protector-all -D_FORTIFY_SOURCE=2 -O2 -D_REENTRANT -fno-guess-branch-probability -frandom-seed=1984 -Wno-unused-variable -Wno-unused-value -Wno-sign-compare -Wno-strict-aliasing -DQT_GUI -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE -DUSE_QRCODE -DUSE_UPNP=1 -DSTATICLIB -DUSE_IPV6=1 -DHAVE_BUILD_INFO -DLINUX -D_FILE_OFFSET_BITS=64 -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++-64 -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtGui -I/usr/include/qt4 -Isrc -Isrc/json -Isrc/qt -Isrc/leveldb/include -Isrc/leveldb/helpers -Ibuild -Ibuild -o build/qrcodedialog.o src/qt/qrcodedialog.cpp
src/qt/qrcodedialog.cpp:12:22: fatal error: qrencode.h: No such file or directory
 #include
                      ^
compilation terminated.
make: *** [build/qrcodedialog.o] Error 1

Rerunning the script from the top.....

ok let me think about this one for a min....in the mean time check to make sure this is commented out or removed from the 'bitquark-qt.pro' file. It will be located at the first few lines of the file.

Quote
BOOST_LIB_SUFFIX=-mgw48-mt-s-1_55
BOOST_INCLUDE_PATH=C:/deps/boost_1_55_0
BOOST_LIB_PATH=C:/deps/boost_1_55_0/stage/lib
BDB_INCLUDE_PATH=C:/deps/db-4.8.30.NC/build_unix
BDB_LIB_PATH=C:/deps/db-4.8.30.NC/build_unix
OPENSSL_INCLUDE_PATH=C:/deps/openssl-1.0.1g/include
OPENSSL_LIB_PATH=C:/deps/openssl-1.0.1g
MINIUPNPC_INCLUDE_PATH=C:/deps/
MINIUPNPC_LIB_PATH=C:/deps/miniupnpc
QRENCODE_INCLUDE_PATH=C:/deps/qrencode-3.4.3
QRENCODE_LIB_PATH=C:/deps/qrencode-3.4.3/.libs
sr. member
Activity: 346
Merit: 250
No good. Installed the new dep. Ran the install again from the top. Still get.....

Quote
cd /home/user/BTQ-r17; /bin/sh share/genbuild.sh /home/user/BTQ-r17/build/build.h
g++ -c -m64 -pipe -fstack-protector-all -D_FORTIFY_SOURCE=2 -O2 -D_REENTRANT -fno-guess-branch-probability -frandom-seed=1984 -Wno-unused-variable -Wno-unused-value -Wno-sign-compare -Wno-strict-aliasing -DQT_GUI -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE -DUSE_QRCODE -DUSE_UPNP=1 -DSTATICLIB -DUSE_IPV6=1 -DHAVE_BUILD_INFO -DLINUX -D_FILE_OFFSET_BITS=64 -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++-64 -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtNetwork -I/usr/include/qt4/QtGui -I/usr/include/qt4 -Isrc -Isrc/json -Isrc/qt -Isrc/leveldb/include -Isrc/leveldb/helpers -Ibuild -Ibuild -o build/qrcodedialog.o src/qt/qrcodedialog.cpp
src/qt/qrcodedialog.cpp:12:22: fatal error: qrencode.h: No such file or directory
 #include
                      ^
compilation terminated.
make: *** [build/qrcodedialog.o] Error 1
Strange part is if I browse to src/qt/, qrcodedialog.cpp is in there. Let me try a reboot now that the dep is installed......
Pages:
Jump to: