Page 1 of 1

Help please on Linux version !

Posted: 06 Jan 2017, 12:22
by geo3geo
I'm unable to launch the app on Linux and would appreciate answers to a few basic questions about the shell script, my knowledge of shell programming isn't very deep.

Basically, looking at the qDslrDashboard.sh script it seems to export the Qt libraries, then check for the platform type (which it echos to the terminal), then executes itself again. Obviously I'm missing something. All I get when I run ./qDslrDashboard.sh is the xcb echo.

What actually starts the dslrdashboard program? A brief overview would be much appreciated and I might then be able to make progress in getting it to run.

I'm running antiX - a Debian based Linux86.

Re: Help please on Linux version !

Posted: 07 Jan 2017, 09:49
by hubaiz
The shell script only exports the path for the Qt libraries and invokes qDslrDashboard the executable.
You could run it with:

Code: Select all

./qDslrDashboard -platform xcb
You would need to export the Qt path so that it can found.

Re: Help please on Linux version !

Posted: 16 Jan 2017, 17:22
by geo3geo
How would I export the Qt path?

Re: Help please on Linux version !

Posted: 17 Jan 2017, 08:06
by hubaiz

Code: Select all

export LD_LIBRARY_PATH=$dirname/Qt_Libraries
export QT_PLUGIN_PATH=$dirname/Qt_Libraries/plugins
export QML_IMPORT_PATH=$dirname/Qt_Libraries/qml
export QML2_IMPORT_PATH=$dirname/Qt_Libraries/qml
export QT_QPA_PLATFORM_PLUGIN_PATH=$dirname/Qt_Libraries/plugins/platforms