I use whereis matlab and find: /usr/local/bin/matlab , which is a very long bash file.

How can I find where matlab is installed, I mean, its installed folder.

EDIT:

I used the following method: open matlab and use edit svds.m to open the svds.m file and the editor shows the folder:)

link|improve this question
What is your linux distribution? Is matlab installed as rpm package or from source/tarball? – Dmitry Yudakov May 28 '10 at 14:48
feedback

migrated from stackoverflow.com May 28 '10 at 15:00

This question came from our site for professional and enthusiast programmers.

5 Answers

Try

locate MATLAB

The binary file is spelled with all-caps. In my system, the MATLAB executable is installed in /usr/local/matlab/r2009b/bin/glnxa64/MATLAB (which is a slightly weird place). The matlab root would then be /usr/local/matlab/r2009b

Of course, normally you do run matlab using the long shell script...

link|improve this answer
1  
Note: you might need to run sudo updatedb once before running locate (it's possible it won't find nearly as much otherwise). – ChristopheD May 28 '10 at 14:55
feedback

I did

cat `which matlab` | grep matlab

with output

exec /usr/local/bin/matlab64 -r maxNumCompThreads=4 $*
    echo "   qsub -I -V -l nodes=1,matlab=1"
            exec /usr/local/bin/matlab64 $*
            exec /usr/local/bin/matlab32 $*

Then

$ ls -ld /usr/local/bin/matlab64
lrwxrwxrwx 1 root root 30 May  4 12:08 /usr/local/bin/matlab64 -> /usr/local/matlab64/bin/matlab
$ ls -ld /usr/local/bin/matlab32
lrwxrwxrwx 1 root root 28 May  4 12:08 /usr/local/bin/matlab32 -> /usr/local/matlab/bin/matlab
$ ls -ld /usr/local/matlab64 
lrwxrwxrwx 1 root root 27 May  4 12:01 /usr/local/matlab64 -> /usr/local/matlab_2010a-64/
$ ls -ld /usr/local/matlab 
lrwxrwxrwx 1 root root 23 May  4 12:01 /usr/local/matlab -> /usr/local/matlab_2010a

EDIT: The better way is to do it from matlab command line with matlabroot.

>> matlabroot

ans =

/usr/local/matlab_2010a-64
link|improve this answer
2  
Useless use of cat: grep matlab $(which matlab) – Dennis Williamson May 28 '10 at 16:33
feedback

On RPM based distributions you can use

rpm -ql <package_name>

It will show you all files from the package

# rpm -ql wget
/etc/wgetrc
/usr/bin/wget
/usr/share/doc/wget-1.10.2
/usr/share/doc/wget-1.10.2/AUTHORS
....

If you're not sure how the package is called, you may use something like rpm -qa | grep -i matlab to find its name

link|improve this answer
feedback

Tthe locations would depend (as Dmitry has suggested) on how you installed the packages. Usually, installation from source would dump the binaries and related files in /usr/local. For details on where standard distributions (like Debian and others put files), consult the Filesystem Hierarchy Standard.

link|improve this answer
feedback

Your package manager might tell you. YAST in opensuse has a files tab, which shows all the files and location they get installed to. I can't speak for other distros.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.