How to mount Matlab ISO file on Linux?

Hi,

In order to install matlab on Linux system, it is necessary to run ‘install’ script. However, this script is within the Matlab ISO file. So, we have to mount it first, and then we can execute ‘install’ script.

root# modprobe loop
root# mkdir -p /mnt/iso
root# mount -o loop matlab.iso /mnt/iso
root# cd /mnt/iso
root# ./install

That’s all,