how to run nightly builds
My system:
Ubuntu 9.10
I downloaded a linux nightly build, however, I am not sure how to run it. All I have is an mscore-r2649 file, and I'm not sure what to do with it.
Help would be appreciated.
Isaac.
My system:
Ubuntu 9.10
I downloaded a linux nightly build, however, I am not sure how to run it. All I have is an mscore-r2649 file, and I'm not sure what to do with it.
Help would be appreciated.
Isaac.
Do you still have an unanswered question? Please log in first to post your question.
Comments
I'm not on Linux, but I think all you have to do is decompress the file. Inside should be a program called "mscore" which starts the nightly.
A little more information about the Linux nightly build is on the developers mailing list: http://n2.nabble.com/GNU-Linux-nightly-build-td4077190.html
If you work it out feel free to post instructions for the benefit of others. If you don't work it out feel free to ask more questions.
In reply to I'm not on Linux, but I think by David Bolton
Yes there is a program called mscore-r2649 in the folder. After uncompressing, when I run it in the terminal this is what happens:
isaacd@dracula:~/scores/mscorenight$ mscore-r2649
mscore-r2649: command not found
isaacd@dracula:~/scores/mscorenight$ ./mscore-r2649
bash: ./mscore-r2649: Permission denied
isaacd@dracula:~/scores/mscorenight$ sudo ./mscore-r2649
[sudo] password for isaacd:
sudo: ./mscore-r2649: command not found
In reply to Yes there is a program called by isaac_
Maybe
$chmod a+x ./mscore-r2649
$sudo ./mscore-r2649
In reply to Maybe $chmod a+x by [DELETED] 5
I did this:
isaacd@dracula:~/scores/mscorenight$ sudo chmod a+x mscore-r2649
then I tried this:
isaacd@dracula:~/scores/mscorenight$ ./mscore-r2649
./mscore-r2649: symbol lookup error: ./mscore-r2649: undefined symbol: _ZN11QVectorData8allocateEii
I also tried:
isaacd@dracula:~/scores/mscorenight$ sudo ./mscore-r2649
./mscore-r2649: symbol lookup error: ./mscore-r2649: undefined symbol: _ZN11QVectorData8allocateEii
Nothing happened.
In reply to I did this: by isaac_
The Linux nightly build is an executable -- but it needs its libraries to be installed, they are not included in the executable file
$ file mscore-r2673
mscore-r2673: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.8, not stripped
if that helps
If it isn't running then it may be that it is missing a library or two, to find out run
sudo ldd mscore-r2673
this should display something like
$ ldd mscore-r2673
linux-gate.so.1 => (0xffffe000)
libQtDesigner.so.4 => /usr/lib/qt4/libQtDesigner.so.4 (0xb7180000)
libQtScript.so.4 => /usr/lib/qt4/libQtScript.so.4 (0xb6f80000)
libQtSvg.so.4 => /usr/lib/qt4/libQtSvg.so.4 (0xb6f3c000)
libQtGui.so.4 => /usr/lib/qt4/libQtGui.so.4 (0xb669c000)
libXext.so.6 => /usr/lib/libXext.so.6 (0xb668c000)
libX11.so.6 => /usr/lib/libX11.so.6 (0xb6573000)
libQtXml.so.4 => /usr/lib/qt4/libQtXml.so.4 (0xb652e000)
...
libFLAC.so.8 => /usr/lib/libFLAC.so.8 (0xb5a7f000)
libvorbisenc.so.2 => /usr/lib/libvorbisenc.so.2 (0xb5984000)
libvorbis.so.0 => /usr/lib/libvorbis.so.0 (0xb595a000)
libogg.so.0 => /usr/lib/libogg.so.0 (0xb5953000)
libuuid.so.1 => /lib/libuuid.so.1 (0xb594e000)
libexpat.so.1 => /usr/lib/libexpat.so.1 (0xb592d000)
if, instead of saying something like
libFLAC.so.8 => /usr/lib/libFLAC.so.8
it says
libFLAC.so.8 => not found
then this library is missing and you will need to install it.
The svn's need Qt version 4.6.x -- if you have 4.5.x then it may not run.
In reply to Running nightly builds by wynnmc
I think that I do not have qt 4.6 but I have 4.5.3 (or something 4.5.x). However, qt 4.6.x does not seem to be in the ubuntu software channel. I may just not bother with it.
In reply to I think that I do not have qt by isaac_
Find the Qt 4.6 packages for Linux at http://qt.nokia.com/downloads -> LGPL
In reply to Running nightly builds by wynnmc
If someone has experience with building a kind of "portable" application on linux, meaning not relying on system library (/usr/lib), you can join the discussion on the developer mailing list
In reply to I did this: by isaac_
I had Qt 4.5.3 installed (actually the whole SDK) and I got exacly the same message "undefined symbol: _ZN11QVectorData8allocateEii" when I tried to run the latest nightly (r2705).
After installing Qt 4.6.1, the nightly build runs regularly (again I installed the whole SDK, but I think it does not make a real difference from the library-only package).
M.