I will give it a try. Thanks. In regards to yum on RedHat. It all depends what repo you are connected to. Since RedHat is an enterprise system it only supports stable releases of software hence it was not able to find that package. Centos on the other hand is different and has more experimental software available. Our organization is connected to RHN Classic - Red Hat Satellite repo and libXNVCtrl is not available there.
Paul Palei Information Technology Specialist Massachusetts Institute of Technology Research Laboratory of Electronics 77 Massachusetts Ave, Cambridge, MA 02139 36-427B (617) 324-2197 | Direct ppa...@mit.edu -----Original Message----- From: Kislinskiy, Stefan [mailto:s.kislins...@dkfz-heidelberg.de] Sent: Tuesday, August 16, 2016 12:36 To: Paul Palei <ppa...@mit.edu>; Heim, Eric <e.h...@dkfz-heidelberg.de>; mitk-users@lists.sourceforge.net Subject: RE: MITK Workbench- installation advise In addition to the answers of Caspar and Sascha: I did try to reproduce your issue on CentOS 7, which is, as far as I know, very similar to RedHat. There I was able to find libXNVCtrl by "yum search libXNVCtrl". Even on Ubuntu you have to install a few dependencies like this in order to get MITK up and running. So, basically RedHat should be fine as well. :) -----Original Message----- From: Paul Palei [mailto:ppa...@mit.edu] Sent: Dienstag, 16. August 2016 17:19 To: Kislinskiy, Stefan; Heim, Eric; mitk-users@lists.sourceforge.net Subject: RE: MITK Workbench- installation advise libXNVCtrl is not found by yum. I guess I should of asked this question in the first place, is it possible to install MITK on RedHat or is not supported and I should switch to Ubuntu? This is per your supported platforms page: http://docs.mitk.org/2016.03/SupportedPlatformsPage.html Paul Palei Information Technology Specialist Massachusetts Institute of Technology Research Laboratory of Electronics 77 Massachusetts Ave, Cambridge, MA 02139 36-427B (617) 324-2197 | Direct ppa...@mit.edu -----Original Message----- From: Kislinskiy, Stefan [mailto:s.kislins...@dkfz-heidelberg.de] Sent: Tuesday, August 16, 2016 04:55 To: Paul Palei <ppa...@mit.edu>; Heim, Eric <e.h...@dkfz-heidelberg.de>; mitk-users@lists.sourceforge.net Subject: RE: MITK Workbench- installation advise Hi Paul, In your log file, the relevant lines are: Caused by: ctkPluginException: The plugin "/root/Desktop/mitk/MITK-2016.3.0-linux64/bin/plugins/liborg_mitk_core_services.so" could not be loaded: Cannot load library /root/Desktop/mitk/MITK-2016.3.0-linux64/bin/plugins/liborg_mitk_core_services.so: (libXNVCtrl.so.0: cannot open shared object file: No such file or directory) libXNVCtrl.so is missing. This is a library from Nvidia that's missing. You can install it by something like "sudo yum install libXNVCtrl". Best, Stefan -----Original Message----- From: Paul Palei [mailto:ppa...@mit.edu] Sent: Montag, 15. August 2016 14:32 To: Paul Palei; Heim, Eric; Kislinskiy, Stefan; mitk-users@lists.sourceforge.net Subject: RE: MITK Workbench- installation advise Just checking if anyone would be able to assist with installation issues on RedHat. Thanks Paul Palei Information Technology Specialist Massachusetts Institute of Technology Research Laboratory of Electronics 77 Massachusetts Ave, Cambridge, MA 02139 36-427B (617) 324-2197 | Direct ppa...@mit.edu -----Original Message----- From: Paul Palei [mailto:ppa...@mit.edu] Sent: Friday, August 5, 2016 10:36 To: Heim, Eric <e.h...@dkfz-heidelberg.de>; Kislinskiy, Stefan <s.kislins...@dkfz-heidelberg.de>; mitk-users@lists.sourceforge.net Subject: Re: [mitk-users] MITK Workbench- installation advise Hi Eric, Thank you so much for your advice. This got me further than I was before but still can't install it completely so that it can be used. It now generates lots of error messages and fails at the end. I am attaching those errors here if someone is brave enough to take a look at try to figure out what they mean. Thank you for all you help. Paul Palei Information Technology Specialist Massachusetts Institute of Technology Research Laboratory of Electronics 77 Massachusetts Ave, Cambridge, MA 02139 36-427B (617) 324-2197 | Direct ppa...@mit.edu -----Original Message----- From: Heim, Eric [mailto:e.h...@dkfz-heidelberg.de] Sent: Tuesday, August 2, 2016 11:16 To: Paul Palei <ppa...@mit.edu>; Kislinskiy, Stefan <s.kislins...@dkfz-heidelberg.de>; mitk-users@lists.sourceforge.net Subject: AW: MITK Workbench- installation advise Hi Paul, This is what solves the "xcb" error for me: MitkWorkbench.sh: #!/bin/sh export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/Qt5.4.0/5.4/gcc_64/lib export QT_QPA_PLATFORM_PLUGIN_PATH=/opt/Qt5.4.0/5.4/gcc_64/plugins binpath=$(dirname "$(readlink -f "$0")") appname=$(basename "$0" .sh) export LD_LIBRARY_PATH="$binpath/bin":"$binpath/bin/plugins":$LD_LIBRARY_PATH "$binpath/bin/$appname" $* Cheers, Eric -----Ursprüngliche Nachricht----- Von: Paul Palei [mailto:ppa...@mit.edu] Gesendet: Dienstag, 2. August 2016 16:42 An: Kislinskiy, Stefan; mitk-users@lists.sourceforge.net Betreff: Re: [mitk-users] MITK Workbench- installation advise When I do search for libQt5Core.so.5 it finds it in other than what you specified location. I tried exporting this path as well but it gives me the " could not find or load the Qt platform plugin "xcb"" error. Not sure on this. Paul Palei Information Technology Specialist Massachusetts Institute of Technology Research Laboratory of Electronics 77 Massachusetts Ave, Cambridge, MA 02139 36-427B (617) 324-2197 | Direct ppa...@mit.edu -----Original Message----- From: Kislinskiy, Stefan [mailto:s.kislins...@dkfz-heidelberg.de] Sent: Tuesday, August 2, 2016 10:28 To: Paul Palei <ppa...@mit.edu>; mitk-users@lists.sourceforge.net Subject: RE: MITK Workbench- installation advise Hi Paul, that probably means that you didn't correctly specify the QT_PLUGIN_PATH variable in MitkWorkbench.sh. See my last mail and double check the according line (and its position) in case you had already added it to your MitkWorkbench.sh. Best regards, Stefan -----Original Message----- From: Paul Palei [mailto:ppa...@mit.edu] Sent: Dienstag, 2. August 2016 16:16 To: Kislinskiy, Stefan; mitk-users@lists.sourceforge.net Subject: RE: MITK Workbench- installation advise Hi Stefan, Thank you for reply back and your suggestion. I tried what you advised but it gives me new error now. See attached. Any idea? Let me know if other system logs are needed. I am trying to install on RedHat 7.2 Any help is appreciated. Paul Palei Information Technology Specialist Massachusetts Institute of Technology Research Laboratory of Electronics 77 Massachusetts Ave, Cambridge, MA 02139 36-427B (617) 324-2197 | Direct ppa...@mit.edu -----Original Message----- From: Kislinskiy, Stefan [mailto:s.kislins...@dkfz-heidelberg.de] Sent: Friday, July 29, 2016 05:16 To: Paul Palei <ppa...@mit.edu>; mitk-users@lists.sourceforge.net Subject: AW: MITK Workbench- installation advise Hi Paul, does it help to add "/opt/Qt/5.4/gcc_64/lib" to the LD_LIBRARY_PATH line in MitkWorkbench.sh and to add an extra line like "export QT_PLUGIN_PATH=/opt/Qt/5.4/gcc_64/plugins" before the last line? Best, Stefan ________________________________________ Von: Paul Palei [ppa...@mit.edu] Gesendet: Dienstag, 26. Juli 2016 18:31 An: mitk-users@lists.sourceforge.net Betreff: [mitk-users] MITK Workbench- installation advise Hello all, I am having trouble installing it on RedHat Linux. It complains about qt .so file. See attached image with the error. I looked up in your Wiki but was not able to find an answer to this trouple. I also looked at the downloads page and saw instructions about QT_PLUGIN_PATH but this has not solved my install issue. I have QT 5.4.2 installed in /opt/ and I can see that libqt5core.so.5 is there and have set the path to it but then I am just getting another error. Systems are RedHat 7.2 and 6.5, all give the same error. Any help is appreciated. Paul Palei Information Technology Specialist Massachusetts Institute of Technology Research Laboratory of Electronics 77 Massachusetts Ave, Cambridge, MA 02139 36-427B (617) 324-2197 | Direct ppa...@mit.edu<mailto:ppa...@mit.edu> [cid:image001.gif@01D1E739.B4F67D60] ------------------------------------------------------------------------------ _______________________________________________ mitk-users mailing list mitk-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/mitk-users