Bitcoin Forum
April 24, 2024, 02:15:27 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Bitcoin / Mining support / Re: BITMAIN Antminer S3 support and OverClocking thread on: November 14, 2014, 09:30:09 AM
anyone familiar with openwrt's implementation of opkg? apparently on the S3's "OPKG Update" isn't working.

When I run it i get the following:
Code:
root@LabS31:/# opkg update
Downloading http://downloads.openwrt.org/snapshots/trunk/ar71xx/packages/Packages.gz.
wget: server returned error: HTTP/1.1 404 Not Found
Collected errors:
 * opkg_download: Failed to download http://downloads.openwrt.org/snapshots/trunk/ar71xx/packages/Packages.gz, wget returned 1.

I checked the path at http://downloads.openwrt.org/snapshots/trunk/ar71xx/packages/ and Packages.gz does not exist.

Anyone have a clue how to resolve this?

Code:
root@antMiner: #-> cd /etc && cp opkg.conf opkg.conf.bak && vim opkg.conf 
Change "src/gz barrier_breaker http://downloads.openwrt.org/snapshots/trunk/ar71xx/packages" to
"src/gz barrier_breaker http://downloads.openwrt.org/snapshots/trunk/ar71xx/packages/packages"
And then:
Code:
root@antMiner: #-> opkg update
It works well. Hope to help you.  Cheesy
2  Alternate cryptocurrencies / Altcoin Discussion / Re: How to build a Linux 64bit GUI wallet? mistcoin on: November 08, 2014, 09:57:21 AM
I googled the error. Response was:

"Maybe try with Qt5?"
I have tried both Qt4 and Qt5, but there is still the same error.
3  Alternate cryptocurrencies / Altcoin Discussion / Re: How to build a Linux 64bit GUI wallet? mistcoin on: November 08, 2014, 05:55:34 AM
Build the daemon, then the wallet.

(unless you have already)
Same error  Sad
4  Alternate cryptocurrencies / Altcoin Discussion / Re: How to build a Linux 64bit GUI wallet? mistcoin on: November 08, 2014, 05:09:09 AM
Do you have all deps  ?
 
apt-get install qt5-default qt5-qmake qtbase5-dev-tools qttools5-dev-tools
                        build-essential libboost-dev libboost-system-dev
                        libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev
                        libssl-dev libdb++-dev libminiupnpc-dev

compile with USE_UPNP=- option

Code:
make -f makefile.unix USE_UPNP=-

yeah, I have followed all of these steps. But there is the same error Sad
5  Alternate cryptocurrencies / Altcoin Discussion / How to build a Linux 64bit GUI wallet? mistcoin on: November 07, 2014, 03:58:57 PM
I tried to compile on Ubuntu 14.04 64bit and I can't compile from source.
Does anybody have an idea?

source code: https://github.com/MistCoinTeam/mistcoin

src/qt/statisticspage.cpp: In member function ‘void StatisticsPage::updateStatistics()’:
src/qt/statisticspage.cpp:72:64: error: call of overloaded ‘toString(int64_t&)’ is ambiguous
src/qt/statisticspage.cpp:72:64: note: candidates are:
In file included from /usr/include/qt4/QtGui/qvalidator.h:48:0,
from /usr/include/qt4/QtGui/qabstractspinbox.h:46,
from /usr/include/qt4/QtGui/qstyleoption.h:46,
from /usr/include/qt4/QtGui/qabstractitemdelegate.h:46,
from /usr/include/qt4/QtGui/qabstractitemview.h:48,
from /usr/include/qt4/QtGui/qheaderview.h:45,
from /usr/include/qt4/QtGui/QHeaderView:1,
from build/ui_statisticspage.h:21,
from src/qt/statisticspage.cpp:2:
/usr/include/qt4/QtCore/qlocale.h:675:13: note: QString QLocale::toString(qlonglong) const
/usr/include/qt4/QtCore/qlocale.h:676:13: note: QString QLocale::toString(qulonglong) const
/usr/include/qt4/QtCore/qlocale.h:782:16: note: QString QLocale::toString(short int) const
/usr/include/qt4/QtCore/qlocale.h:784:16: note: QString QLocale::toString(ushort) const
/usr/include/qt4/QtCore/qlocale.h:786:16: note: QString QLocale::toString(int) const
/usr/include/qt4/QtCore/qlocale.h:788:16: note: QString QLocale::toString(uint) const
/usr/include/qt4/QtCore/qlocale.h:681:13: note: QString QLocale::toString(double, char, int) const
/usr/include/qt4/QtCore/qlocale.h:790:16: note: QString QLocale::toString(float, char, int) const
make: *** [build/statisticspage.o] Error 1
6  Alternate cryptocurrencies / Altcoin Discussion / How to build a Linux 64bit GUI wallet? mistcoin on: November 07, 2014, 03:52:49 PM
I tried to compile on Ubuntu 14.04 64bit and I can't compile from source.
Does anybody have an idea?

source code: https://github.com/MistCoinTeam/mistcoin

src/qt/statisticspage.cpp: In member function ‘void StatisticsPage::updateStatistics()’:
src/qt/statisticspage.cpp:72:64: error: call of overloaded ‘toString(int64_t&)’ is ambiguous
src/qt/statisticspage.cpp:72:64: note: candidates are:
In file included from /usr/include/qt4/QtGui/qvalidator.h:48:0,
from /usr/include/qt4/QtGui/qabstractspinbox.h:46,
from /usr/include/qt4/QtGui/qstyleoption.h:46,
from /usr/include/qt4/QtGui/qabstractitemdelegate.h:46,
from /usr/include/qt4/QtGui/qabstractitemview.h:48,
from /usr/include/qt4/QtGui/qheaderview.h:45,
from /usr/include/qt4/QtGui/QHeaderView:1,
from build/ui_statisticspage.h:21,
from src/qt/statisticspage.cpp:2:
/usr/include/qt4/QtCore/qlocale.h:675:13: note: QString QLocale::toString(qlonglong) const
/usr/include/qt4/QtCore/qlocale.h:676:13: note: QString QLocale::toString(qulonglong) const
/usr/include/qt4/QtCore/qlocale.h:782:16: note: QString QLocale::toString(short int) const
/usr/include/qt4/QtCore/qlocale.h:784:16: note: QString QLocale::toString(ushort) const
/usr/include/qt4/QtCore/qlocale.h:786:16: note: QString QLocale::toString(int) const
/usr/include/qt4/QtCore/qlocale.h:788:16: note: QString QLocale::toString(uint) const
/usr/include/qt4/QtCore/qlocale.h:681:13: note: QString QLocale::toString(double, char, int) const
/usr/include/qt4/QtCore/qlocale.h:790:16: note: QString QLocale::toString(float, char, int) const
make: *** [build/statisticspage.o] Error 1
7  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][MIC] Mist Coin | Pos | NO IPO or ICO| no Premine | 3Exchange | Roadmap on: November 07, 2014, 03:42:45 PM
I tried to compile on Ubuntu 14.04 64bit and I can't compile from source.
Does anybody have an idea?

src/qt/statisticspage.cpp: In member function ‘void StatisticsPage::updateStatistics()’:
src/qt/statisticspage.cpp:72:64: error: call of overloaded ‘toString(int64_t&)’ is ambiguous
src/qt/statisticspage.cpp:72:64: note: candidates are:
In file included from /usr/include/qt4/QtGui/qvalidator.h:48:0,
from /usr/include/qt4/QtGui/qabstractspinbox.h:46,
from /usr/include/qt4/QtGui/qstyleoption.h:46,
from /usr/include/qt4/QtGui/qabstractitemdelegate.h:46,
from /usr/include/qt4/QtGui/qabstractitemview.h:48,
from /usr/include/qt4/QtGui/qheaderview.h:45,
from /usr/include/qt4/QtGui/QHeaderView:1,
from build/ui_statisticspage.h:21,
from src/qt/statisticspage.cpp:2:
/usr/include/qt4/QtCore/qlocale.h:675:13: note: QString QLocale::toString(qlonglong) const
/usr/include/qt4/QtCore/qlocale.h:676:13: note: QString QLocale::toString(qulonglong) const
/usr/include/qt4/QtCore/qlocale.h:782:16: note: QString QLocale::toString(short int) const
/usr/include/qt4/QtCore/qlocale.h:784:16: note: QString QLocale::toString(ushort) const
/usr/include/qt4/QtCore/qlocale.h:786:16: note: QString QLocale::toString(int) const
/usr/include/qt4/QtCore/qlocale.h:788:16: note: QString QLocale::toString(uint) const
/usr/include/qt4/QtCore/qlocale.h:681:13: note: QString QLocale::toString(double, char, int) const
/usr/include/qt4/QtCore/qlocale.h:790:16: note: QString QLocale::toString(float, char, int) const
make: *** [build/statisticspage.o] Error 1
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!