First, make a mount point, which is just a folder. For example:
mkdir /media/mathworks
-----------------------------------------------------
ps: change user to root as:
sudo -s
change the file that can be written:
sudo chown username [foldername] -R
-----------------------------------------------------
Then mount the downloaded ISO to that directory. For this example, the ISO is in the home folder under the downloads folder and the ISO is called matlab.iso:
mount -t iso9660 -o loop ~/downloads/matlab.iso /media/mathworks
Now you can navigate there and run the installer as if it were a copy of the DVD, for example:
cd /media/mathworks
./install
If you are unable to utilize the ISO image, you may be able to request a DVD in the License Center. See the related solution below.
pps:
Error: can't find /lib/libc.so.6 in 12.04
sudo ln -s /lib/i386-linux-gnu/libc.so.6 /lib/libc.so.6
本文介绍了如何在Linux系统中通过创建挂载点并挂载Matlab的ISO镜像文件来安装Matlab软件。首先需要创建一个挂载点文件夹,然后使用sudo权限将ISO镜像挂载到该目录下,最后进入该目录运行安装程序即可开始安装。
1708

被折叠的 条评论
为什么被折叠?



