Hi

Originally Posted by
Alcidious
Thanks so much! That makes perfect sense. But where should I be looking? in the directory my I've put MATLAB? Or should I be searching some other directory in the filesystem?
-slowly but surely i am improving in linux!
I am sure you are aware of the caveats as stated in the post you linked regarding the symbolic link.
What the poster did was to create a symbolic link for libc.so.6 in /lib to point to the correct library in /lib/i386-linux-gnu/libc.so.6.
Assuming matlab is a 32 bit application then this should work for you (from your first post).
Code:
sudo ln -s /lib/i386-linux-gnu/libc.so.6 /lib/libc.so.6
You can check the link using
Code:
ls -l /lib/libc.so.6
or
Code:
readlink -f /lib/libc.so.6
/lib/i386-linux-gnu/libc.so.6 itself is a symbolic link that points to the correct libc library
On my system...
Code:
matthew-Aspire-7540:/home/matthew/Music % ls -l /lib/i386-linux-gnu/libc.so.6
lrwxrwxrwx 1 root root 12 Sep 12 13:27 /lib/i386-linux-gnu/libc.so.6 -> libc-2.15.so*
matthew-Aspire-7540:/home/matthew/Music % readlink -f /lib/i386-linux-gnu/libc.so.6
/lib/i386-linux-gnu/libc-2.15.so
matthew-Aspire-7540:/home/matthew/Music %
Where on you file system is matlab installed ?
Kind regards
Bookmarks