Filter löschen
Filter löschen

/usr/local​/MATLAB/R2​011a/bin/u​til/oschec​k.sh: 605: /lib64/libc.so.6: not found

7 Ansichten (letzte 30 Tage)
My MATLAB R2011a installation on Ubuntu 11.04 64-bit gives the following warning when starting up:
/usr/local/MATLAB/R2011a/bin/util/oscheck.sh: 605: /lib64/libc.so.6: not found
The library in question is installed on the system:
$ locate libc.so
/lib/x86_64-linux-gnu/libc.so.6
/lib32/libc.so.6
/usr/lib/x86_64-linux-gnu/libc.so

Akzeptierte Antwort

Gerhard Burger
Gerhard Burger am 9 Jul. 2011
I had the same problem, you can make a symbolic link to the location matlab expects it to be with the following command:
ln -s /lib/x86_64-linux-gnu/libc.so.6 /lib64/libc.so.6
hope this helps!
  3 Kommentare
rjarvinen
rjarvinen am 25 Jul. 2011
Thanks! This is an obvious and working workaround for this issue.
kabel
kabel am 20 Okt. 2011
It doesn't work for 2010b in ubuntu 11.10

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (7)

Walter Roberson
Walter Roberson am 23 Jun. 2011
I don't know about Ubuntu 11.04 systems, but the Ubuntu 10.04 system I am using has /lib64/libc.so.6
Unfortunately I do not know enough about packages to query which package it came as part of.
  1 Kommentar
Daniel Shub
Daniel Shub am 18 Okt. 2011
For ubuntu http://packages.ubuntu.com/search will let you search package contents (you need to change the option).

Melden Sie sich an, um zu kommentieren.


rjarvinen
rjarvinen am 18 Okt. 2011
Just to report that the same problem exist still for a fresh install of the latest MATLAB on the latest Ubuntu. The above workaround still works ok.
MATLAB version: R2011b (7.13.0.564) 64-bit (glnxa64) August 13, 2011
Ubuntu version: 11.10 (oneiric) 64-bit

Daniel Shub
Daniel Shub am 18 Okt. 2011
For Arch Linux the package glibc provides lib/libc.so.6 for both x86_64 and i686 architectures.
For Debian Squeeze the package libc6 provides /lib/libc.so.6 for all but ia64 architectures. The libc6-amd64 provides /lib64/libc.so.6 for the i386 architecture.
For Ubuntu Oneiric it is too crazy to describe (just look at the search).
I don't know how to search rpm based distros (and I don't think people care enough to learn the results).

kabel
kabel am 20 Okt. 2011
The solution
"ln -s /lib/x86_64-linux-gnu/libc.so.6 /lib64/libc.so.6"
for Matlab 2010b 64-bit in Ubuntu 11.10 does not work. What else i could do?
The error message is the same:
"/usr/local/MATLAB/R2010b/bin/util/oscheck.sh: 605: /lib64/libc.so.6: not found"
Thanks
  2 Kommentare
rjarvinen
rjarvinen am 20 Okt. 2011
You may need to use "sudo":
sudo ln -s /lib/x86_64-linux-gnu/libc.so.6 /lib64/libc.so.6
Hussain
Hussain am 22 Dez. 2011
I had the same issue. Apparently, libc.so.6 was in the right place but it was broken so I had to remove it then re-implement the work around with sudo.
Open a terminal to /lib64 and try:
sudo rm libc.so.6
sudo ln -s /lib/x86_64-linux-gnu/libc.so.6 /lib64/libc.so.6
I blame it on Unity :-P

Melden Sie sich an, um zu kommentieren.


Gerhard Burger
Gerhard Burger am 20 Okt. 2011
if for some reason the solution I gave above does not work, try to see where the libc.so.6 files are on your system by executing
locate libc.so.6
then change the first argument in the solution, otherwise see the info Daniel posted.
edit: and of course sudo, thanks for reminding me Riku Jarvinen

Milos
Milos am 16 Dez. 2011
The problem is that in Ubuntu 11.10 things got further complicated. This command that did the trick for me (Kubuntu 11.10 64-bit):
sudo ln -s /lib/x86_64-linux-gnu/libc-2.13.so /lib64/libc.so.6
It's because /lib/x86_64-linux-gnu/libc.so.6 is a symbolic link to /lib/x86_64-linux-gnu/libc-2.13.so Hope this helps.
  1 Kommentar
Daniel Shub
Daniel Shub am 17 Dez. 2011
I don't see why you couldn't just link to /lib/x86_64-linux-gnu/libc.so.6. Do you know what package creates the link? What does the libc6 package, or its approriate extenstions for you system, do?

Melden Sie sich an, um zu kommentieren.


Daniel Shub
Daniel Shub am 6 Jan. 2012

Kategorien

Mehr zu Introduction to Installation and Licensing finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by