Difference between revisions of "How to get Matlab to work on Ubuntu 11.04"

From ITSwiki
Jump to: navigation, search
[unchecked revision][unchecked revision]
(Created page with "<div class="art-PostContent" style="font-style: normal; font-weight: normal; text-align: justify; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px"><di...")
 
m
Line 19: Line 19:
 
This should restore the missing library that was uninstalled during the Ubuntu update process.
 
This should restore the missing library that was uninstalled during the Ubuntu update process.
  
</div></div>
 
 
[[Category:2011]]
 
[[Category:2011]]
 
[[Category:How do I...]]
 
[[Category:How do I...]]
 +
[[Category:Howto]]

Revision as of 16:02, 8 June 2012

Under the new Ubuntu 11.04 (Natty Narwhal), when you try and run MATLAB you'll get the following error

/matlab/bin/util/oscheck.sh: 605: /lib64/libc.so.6: not found

To resolve this problem, go to a terminal window (Alt + F2 from anywhere) and type

For 64 bit:

sudo ln -s /lib64/x86_64-linux-gnu/libc-2.13.so /lib64/libc.so.6


For 32 bit:

sudo ln -s /lib/i386-linux-gnu/libc-2.13.so /lib/libc.so.6
This should restore the missing library that was uninstalled during the Ubuntu update process.