[Solved] Need help building QT on linux \* Team concentrate release packageing
-
I redownloaded the bitcoin blockchain today and was happy to see it installed after work. Ironically the feathercoin blockchain is still installing, although the amount of blocks are rising! Why is this happening? I installed feathercoin from a deb package because i wasn’t having any luck via terminal. Most tutorials I found are for people who have a good understanding of linux.
I’m on ubuntu 13.04 can anyone help point me in the right direction?
-
No success installing the feathercoin client. I don’t understand what to do after installing all the dependacies. I’ve installed bitcoin and litecoin clients with no problem so would really appreciate a helping hand. I know i’m missing something incredibly simple…
After installing the dependencies i type q make in directory /Documents/FeatherCoin-master/src$ and get the following
[code]-d Increase debug level
-t templ Overrides TEMPLATE as templ
-tp prefix Overrides TEMPLATE so that prefix is prefixed into the value
-help This help
-v Version information
-after All variable assignments after this will be
parsed after [files]
-norecursive Don’t do a recursive search
-recursive Do a recursive search
-set Set persistent property
-unset Unset persistent property
-query Query persistent property. Show all if is empty.
-cache file Use file as cache [makefile mode only]
-spec spec Use spec as QMAKESPEC [makefile mode only]
-nocache Don’t use a cache file [makefile mode only]
-nodepend Don’t generate dependencies [makefile mode only]
-nomoc Don’t generate moc targets [makefile mode only]
-nopwd Don’t look for files in pwd [project mode only]
[/code]any help on what i’m doing wrong?
-
[quote name=“jekyllisland” post=“34675” timestamp=“1384731291”]
I redownloaded the bitcoin blockchain today and was happy to see it installed after work. Ironically the feathercoin blockchain is still installing, although the amount of blocks are rising! Why is this happening? I installed feathercoin from a deb package because i wasn’t having any luck via terminal. Most tutorials I found are for people who have a good understanding of linux.I’m on ubuntu 13.04 can anyone help point me in the right direction?
[/quote]Where did you get the .deb file you used to install?
May be I can help out with a Feathercoin-qt 0.6.4.4 install package for Ubuntu 13.04
Also the command you need to run is 'qmake -f ’ where is the name of the .pro file PC was mentioning.
you need to changedir into the directory where the -pro file is located, of course
-
[quote name=“Wellenreiter” post=“34769” timestamp=“1384776673”]
[quote author=jekyllisland link=topic=4476.msg34675#msg34675 date=1384731291]
I redownloaded the bitcoin blockchain today and was happy to see it installed after work. Ironically the feathercoin blockchain is still installing, although the amount of blocks are rising! Why is this happening? I installed feathercoin from a deb package because i wasn’t having any luck via terminal. Most tutorials I found are for people who have a good understanding of linux.I’m on ubuntu 13.04 can anyone help point me in the right direction?
[/quote]Where did you get the .deb file you used to install?
May be I can help out with a Feathercoin-qt 0.6.4.4 install package for Ubuntu 13.04
Also the command you need to run is 'qmake -f ’ where is the name of the .pro file PC was mentioning.
you need to changedir into the directory where the -pro file is located, of course
[/quote]
I downloaded it on this forum, it must be out dated at a certain part of the blockchain. I’m going to try reinstalling via command line and I’ll return with my results.Thanks for the helpful responses
-
You can get the current 0.6.4.4 package at:
[url=http://software.opensuse.org/package/feathercoin]http://software.opensuse.org/package/feathercoin[/url]
there is also a package for Ubuntu 13.x on the server ;)
-
[quote name=“Wellenreiter” post=“35120” timestamp=“1384934381”]
You can get the current 0.6.4.4 package at:[url=http://software.opensuse.org/package/feathercoin]http://software.opensuse.org/package/feathercoin[/url]
there is also a package for Ubuntu 13.x on the server ;)
[/quote]bash: /etc/apt/sources.list.d/feathercoin.list: Permission denied :o
-
[quote name=“Wellenreiter” post=“35120” timestamp=“1384934381”]
You can get the current 0.6.4.4 package at:[url=http://software.opensuse.org/package/feathercoin]http://software.opensuse.org/package/feathercoin[/url]
there is also a package for Ubuntu 13.x on the server ;)
[/quote]Project MESSAGE: Building with UPNP support
Project MESSAGE: Building with UPNP supportRemoved plural forms as the target language has less forms.
If this sounds wrong, possibly the target language is not set or recognized.Getting closer…what did i do wrong?
-
/home/USER/Documents/FeatherCoin-master/src/net.cpp:21: error: miniupnpc/miniwget.h: No such file or directory
this is what i get when trying to build in qt creator, can someone help me out? I know I must be missing something small, but I’m just not sure what i’m doing wrong.
-
you are missing upnpc support in your distro.
possibility 1) search for a package called miniupnpc or libminiupnpc or something like that
possibility 2) run ‘qmake USE_UPN=0 feathercoin-qt.pro’ to disable upnpc support.
then simple run ‘make’ in the same directorythe client will work without upnpc, but it may be a bit slower in syncing
-
[quote name=“Wellenreiter” post=“35619” timestamp=“1385109900”]
you are missing upnpc support in your distro.possibility 1) search for a package called miniupnpc or libminiupnpc or something like that
possibility 2) run ‘qmake USE_UPN=0 feathercoin-qt.pro’ to disable upnpc support.
then simple run ‘make’ in the same directorythe client will work without upnpc, but it may be a bit slower in syncing
[/quote]I downloaded the above packages only to get the follwoing error
[code]
Project MESSAGE: Building with UPNP support
sh: 1: /usr/lib/x86_64-linux-gnu/qt5/bin/lrelease: not found
WARNING: TARGET is empty[/code]I appreciate your help thus far. I’ll try installing without upnpc support but would prefer to have it if that means faster sync times
-
First of all I have to apologize :-[
USE_UPN=0 is wrong, should be ‘USE_upn=-’
Regarding the errormessage, do a ‘find lrelease’ on your system and if a file is found link it to /usr/lib/x86_64-linux-gnu/qt5/bin/lrelease
I’ve never had this problem, but that’s one way to solve it.
Another way is to google the message and check, if it is a known problem for qt5
If you get it compiled without upnpc, that’s a start and from there on we can figure out how to compile with upnpc while your wallet is syncing ;)
-
[quote name=“Wellenreiter” post=“35703” timestamp=“1385130792”]
First of all I have to apologize :-[USE_UPN=0 is wrong, should be ‘USE_upn=-’
Regarding the errormessage, do a ‘find lrelease’ on your system and if a file is found link it to /usr/lib/x86_64-linux-gnu/qt5/bin/lrelease
I’ve never had this problem, but that’s one way to solve it.
Another way is to google the message and check, if it is a known problem for qt5
If you get it compiled without upnpc, that’s a start and from there on we can figure out how to compile with upnpc while your wallet is syncing ;)
[/quote]find: `lrelease’: No such file or directory
No luck with google, i have it installed on windows for now but i barely use windows anymore and would like to get this installed. I’ll see what i can find on google and post the results
-
lrelease is used to build the qt translation files for languages.
see: [url=http://www.linuxcommand.org/man_pages/lrelease1.html]http://www.linuxcommand.org/man_pages/lrelease1.html[/url]
on my system (opensuse) it’s simply under /usr/bin and I can run it by simply typing ‘lrelease’
-
[quote name=“Wellenreiter” post=“35731” timestamp=“1385136824”]
lrelease is used to build the qt translation files for languages.see: [url=http://www.linuxcommand.org/man_pages/lrelease1.html]http://www.linuxcommand.org/man_pages/lrelease1.html[/url]
on my system (opensuse) it’s simply under /usr/bin and I can run it by simply typing ‘lrelease’
[/quote]How do i install if i don’t have it on ubuntu 13.04?
-
I just created a virtual machine running ubuntu 13.10 and found out that during the install of the package I got from [url=http://software.opensuse.org/package/feathercoin]http://software.opensuse.org/package/feathercoin[/url] that the system complained and refused to install, as there seems to be a conflict.
I start working on that and will come back to you as soon as my Ubuntu package is installing fine. That will take a day or two, but hopefully not any longer