mpirun: error while loading shared libraries: libopen-rte.so.12:












0














I have installed openmpi-bin and openmpi-common, and I get the following error when I run either mpirun or mpiexec:



mpirun: error while loading shared libraries: libopen-rte.so.12


As I checked, this library should be a part of the openmpi-bin (or common), but no matter how many times I try to reinstall it i get the same error.



Also no libraries like lib*-rte.* can be found at /usr/lib, and i cant find anything similar in other lib folders neither.



What should I do?










share|improve this question
























  • Did you install openmpi-bin and openmpi-common fromthe standard repositories? What does apt-cache policy libopenmpi1.10 say?
    – steeldriver
    Jan 19 at 13:09










  • @steeldriver $ apt-cache policy libopenmpi1.10 libopenmpi1.10: Installed: 1.10.2-8ubuntu1 Candidate: 1.10.2-8ubuntu1 Version table: *** 1.10.2-8ubuntu1 500 500 http://archive.ubuntu.com/ubuntu xenial/universe amd64 Packages 100 /var/lib/dpkg/status
    – Gábor Erdős
    Jan 19 at 13:43


















0














I have installed openmpi-bin and openmpi-common, and I get the following error when I run either mpirun or mpiexec:



mpirun: error while loading shared libraries: libopen-rte.so.12


As I checked, this library should be a part of the openmpi-bin (or common), but no matter how many times I try to reinstall it i get the same error.



Also no libraries like lib*-rte.* can be found at /usr/lib, and i cant find anything similar in other lib folders neither.



What should I do?










share|improve this question
























  • Did you install openmpi-bin and openmpi-common fromthe standard repositories? What does apt-cache policy libopenmpi1.10 say?
    – steeldriver
    Jan 19 at 13:09










  • @steeldriver $ apt-cache policy libopenmpi1.10 libopenmpi1.10: Installed: 1.10.2-8ubuntu1 Candidate: 1.10.2-8ubuntu1 Version table: *** 1.10.2-8ubuntu1 500 500 http://archive.ubuntu.com/ubuntu xenial/universe amd64 Packages 100 /var/lib/dpkg/status
    – Gábor Erdős
    Jan 19 at 13:43
















0












0








0







I have installed openmpi-bin and openmpi-common, and I get the following error when I run either mpirun or mpiexec:



mpirun: error while loading shared libraries: libopen-rte.so.12


As I checked, this library should be a part of the openmpi-bin (or common), but no matter how many times I try to reinstall it i get the same error.



Also no libraries like lib*-rte.* can be found at /usr/lib, and i cant find anything similar in other lib folders neither.



What should I do?










share|improve this question















I have installed openmpi-bin and openmpi-common, and I get the following error when I run either mpirun or mpiexec:



mpirun: error while loading shared libraries: libopen-rte.so.12


As I checked, this library should be a part of the openmpi-bin (or common), but no matter how many times I try to reinstall it i get the same error.



Also no libraries like lib*-rte.* can be found at /usr/lib, and i cant find anything similar in other lib folders neither.



What should I do?







16.04 mpi






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 11 at 16:20









galoget

2,1442820




2,1442820










asked Jan 19 at 13:03









Gábor Erdős

1237




1237












  • Did you install openmpi-bin and openmpi-common fromthe standard repositories? What does apt-cache policy libopenmpi1.10 say?
    – steeldriver
    Jan 19 at 13:09










  • @steeldriver $ apt-cache policy libopenmpi1.10 libopenmpi1.10: Installed: 1.10.2-8ubuntu1 Candidate: 1.10.2-8ubuntu1 Version table: *** 1.10.2-8ubuntu1 500 500 http://archive.ubuntu.com/ubuntu xenial/universe amd64 Packages 100 /var/lib/dpkg/status
    – Gábor Erdős
    Jan 19 at 13:43




















  • Did you install openmpi-bin and openmpi-common fromthe standard repositories? What does apt-cache policy libopenmpi1.10 say?
    – steeldriver
    Jan 19 at 13:09










  • @steeldriver $ apt-cache policy libopenmpi1.10 libopenmpi1.10: Installed: 1.10.2-8ubuntu1 Candidate: 1.10.2-8ubuntu1 Version table: *** 1.10.2-8ubuntu1 500 500 http://archive.ubuntu.com/ubuntu xenial/universe amd64 Packages 100 /var/lib/dpkg/status
    – Gábor Erdős
    Jan 19 at 13:43


















Did you install openmpi-bin and openmpi-common fromthe standard repositories? What does apt-cache policy libopenmpi1.10 say?
– steeldriver
Jan 19 at 13:09




Did you install openmpi-bin and openmpi-common fromthe standard repositories? What does apt-cache policy libopenmpi1.10 say?
– steeldriver
Jan 19 at 13:09












@steeldriver $ apt-cache policy libopenmpi1.10 libopenmpi1.10: Installed: 1.10.2-8ubuntu1 Candidate: 1.10.2-8ubuntu1 Version table: *** 1.10.2-8ubuntu1 500 500 http://archive.ubuntu.com/ubuntu xenial/universe amd64 Packages 100 /var/lib/dpkg/status
– Gábor Erdős
Jan 19 at 13:43






@steeldriver $ apt-cache policy libopenmpi1.10 libopenmpi1.10: Installed: 1.10.2-8ubuntu1 Candidate: 1.10.2-8ubuntu1 Version table: *** 1.10.2-8ubuntu1 500 500 http://archive.ubuntu.com/ubuntu xenial/universe amd64 Packages 100 /var/lib/dpkg/status
– Gábor Erdős
Jan 19 at 13:43












2 Answers
2






active

oldest

votes


















2














My system says that this library comes from the package libopenmpi1.10. So you will need to install this.



$ find /usr/lib -name *libopen-rte*
/usr/lib/libopen-rte.so
/usr/lib/openmpi/lib/libopen-rte.so
/usr/lib/openmpi/lib/libopen-rte.so.12.0.2
/usr/lib/libopen-rte.so.12.0.2
/usr/lib/libopen-rte.so.12
$ dpkg -S /usr/lib/libopen-rte.so.12
libopenmpi1.10: /usr/lib/libopen-rte.so.12





share|improve this answer





















  • Reinstalling libopenmpi1.10 solved it! Thanks
    – Gábor Erdős
    Jan 19 at 13:45



















0














You may just need to run this command to link the appropriate libraries:



sudo ldconfig





share|improve this answer



















  • 2




    what does it do?
    – Pierre.Vriens
    Dec 11 at 11:32






  • 2




    ldconfig creates the necessary links and cache to the most recent shared libraries found in the directories specified on the command line, in the file /etc/ld.so.conf, and in the trusted directories (/lib and /usr/lib). look here for many informations systutorials.com/docs/linux/man/8-ldconfig
    – Compiii
    Dec 11 at 20:24






  • 2




    @Compiii Could you please edit your answer and provide the above comment there?
    – Fabby
    Dec 12 at 0:46











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f997681%2fmpirun-error-while-loading-shared-libraries-libopen-rte-so-12%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









2














My system says that this library comes from the package libopenmpi1.10. So you will need to install this.



$ find /usr/lib -name *libopen-rte*
/usr/lib/libopen-rte.so
/usr/lib/openmpi/lib/libopen-rte.so
/usr/lib/openmpi/lib/libopen-rte.so.12.0.2
/usr/lib/libopen-rte.so.12.0.2
/usr/lib/libopen-rte.so.12
$ dpkg -S /usr/lib/libopen-rte.so.12
libopenmpi1.10: /usr/lib/libopen-rte.so.12





share|improve this answer





















  • Reinstalling libopenmpi1.10 solved it! Thanks
    – Gábor Erdős
    Jan 19 at 13:45
















2














My system says that this library comes from the package libopenmpi1.10. So you will need to install this.



$ find /usr/lib -name *libopen-rte*
/usr/lib/libopen-rte.so
/usr/lib/openmpi/lib/libopen-rte.so
/usr/lib/openmpi/lib/libopen-rte.so.12.0.2
/usr/lib/libopen-rte.so.12.0.2
/usr/lib/libopen-rte.so.12
$ dpkg -S /usr/lib/libopen-rte.so.12
libopenmpi1.10: /usr/lib/libopen-rte.so.12





share|improve this answer





















  • Reinstalling libopenmpi1.10 solved it! Thanks
    – Gábor Erdős
    Jan 19 at 13:45














2












2








2






My system says that this library comes from the package libopenmpi1.10. So you will need to install this.



$ find /usr/lib -name *libopen-rte*
/usr/lib/libopen-rte.so
/usr/lib/openmpi/lib/libopen-rte.so
/usr/lib/openmpi/lib/libopen-rte.so.12.0.2
/usr/lib/libopen-rte.so.12.0.2
/usr/lib/libopen-rte.so.12
$ dpkg -S /usr/lib/libopen-rte.so.12
libopenmpi1.10: /usr/lib/libopen-rte.so.12





share|improve this answer












My system says that this library comes from the package libopenmpi1.10. So you will need to install this.



$ find /usr/lib -name *libopen-rte*
/usr/lib/libopen-rte.so
/usr/lib/openmpi/lib/libopen-rte.so
/usr/lib/openmpi/lib/libopen-rte.so.12.0.2
/usr/lib/libopen-rte.so.12.0.2
/usr/lib/libopen-rte.so.12
$ dpkg -S /usr/lib/libopen-rte.so.12
libopenmpi1.10: /usr/lib/libopen-rte.so.12






share|improve this answer












share|improve this answer



share|improve this answer










answered Jan 19 at 13:19









Sethos II

46928




46928












  • Reinstalling libopenmpi1.10 solved it! Thanks
    – Gábor Erdős
    Jan 19 at 13:45


















  • Reinstalling libopenmpi1.10 solved it! Thanks
    – Gábor Erdős
    Jan 19 at 13:45
















Reinstalling libopenmpi1.10 solved it! Thanks
– Gábor Erdős
Jan 19 at 13:45




Reinstalling libopenmpi1.10 solved it! Thanks
– Gábor Erdős
Jan 19 at 13:45













0














You may just need to run this command to link the appropriate libraries:



sudo ldconfig





share|improve this answer



















  • 2




    what does it do?
    – Pierre.Vriens
    Dec 11 at 11:32






  • 2




    ldconfig creates the necessary links and cache to the most recent shared libraries found in the directories specified on the command line, in the file /etc/ld.so.conf, and in the trusted directories (/lib and /usr/lib). look here for many informations systutorials.com/docs/linux/man/8-ldconfig
    – Compiii
    Dec 11 at 20:24






  • 2




    @Compiii Could you please edit your answer and provide the above comment there?
    – Fabby
    Dec 12 at 0:46
















0














You may just need to run this command to link the appropriate libraries:



sudo ldconfig





share|improve this answer



















  • 2




    what does it do?
    – Pierre.Vriens
    Dec 11 at 11:32






  • 2




    ldconfig creates the necessary links and cache to the most recent shared libraries found in the directories specified on the command line, in the file /etc/ld.so.conf, and in the trusted directories (/lib and /usr/lib). look here for many informations systutorials.com/docs/linux/man/8-ldconfig
    – Compiii
    Dec 11 at 20:24






  • 2




    @Compiii Could you please edit your answer and provide the above comment there?
    – Fabby
    Dec 12 at 0:46














0












0








0






You may just need to run this command to link the appropriate libraries:



sudo ldconfig





share|improve this answer














You may just need to run this command to link the appropriate libraries:



sudo ldconfig






share|improve this answer














share|improve this answer



share|improve this answer








edited Dec 11 at 18:06









Zanna

50k13131238




50k13131238










answered Dec 11 at 10:00









Compiii

11




11








  • 2




    what does it do?
    – Pierre.Vriens
    Dec 11 at 11:32






  • 2




    ldconfig creates the necessary links and cache to the most recent shared libraries found in the directories specified on the command line, in the file /etc/ld.so.conf, and in the trusted directories (/lib and /usr/lib). look here for many informations systutorials.com/docs/linux/man/8-ldconfig
    – Compiii
    Dec 11 at 20:24






  • 2




    @Compiii Could you please edit your answer and provide the above comment there?
    – Fabby
    Dec 12 at 0:46














  • 2




    what does it do?
    – Pierre.Vriens
    Dec 11 at 11:32






  • 2




    ldconfig creates the necessary links and cache to the most recent shared libraries found in the directories specified on the command line, in the file /etc/ld.so.conf, and in the trusted directories (/lib and /usr/lib). look here for many informations systutorials.com/docs/linux/man/8-ldconfig
    – Compiii
    Dec 11 at 20:24






  • 2




    @Compiii Could you please edit your answer and provide the above comment there?
    – Fabby
    Dec 12 at 0:46








2




2




what does it do?
– Pierre.Vriens
Dec 11 at 11:32




what does it do?
– Pierre.Vriens
Dec 11 at 11:32




2




2




ldconfig creates the necessary links and cache to the most recent shared libraries found in the directories specified on the command line, in the file /etc/ld.so.conf, and in the trusted directories (/lib and /usr/lib). look here for many informations systutorials.com/docs/linux/man/8-ldconfig
– Compiii
Dec 11 at 20:24




ldconfig creates the necessary links and cache to the most recent shared libraries found in the directories specified on the command line, in the file /etc/ld.so.conf, and in the trusted directories (/lib and /usr/lib). look here for many informations systutorials.com/docs/linux/man/8-ldconfig
– Compiii
Dec 11 at 20:24




2




2




@Compiii Could you please edit your answer and provide the above comment there?
– Fabby
Dec 12 at 0:46




@Compiii Could you please edit your answer and provide the above comment there?
– Fabby
Dec 12 at 0:46


















draft saved

draft discarded




















































Thanks for contributing an answer to Ask Ubuntu!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f997681%2fmpirun-error-while-loading-shared-libraries-libopen-rte-so-12%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Quarter-circle Tiles

build a pushdown automaton that recognizes the reverse language of a given pushdown automaton?

Mont Emei