linux 安装 Matlab R2013b

我在安装过程中主要遇到了两个问题:

第一,权限问题,第五步安装matlab,具体指令是./install, 之后会出现“bash: ./install: 权限不够”,需要使用命令:sudo chmod -R 777 install 赋予特权,

第二 有权限之后还是不是出现“./install: 1: eval: /tmp/mathworks_3665/sys/java/jre/glnxa64/jre/bin/java: Permission deniedFinished”参照网上的解决方案是:

My solution turns out to be the following:

From the install package, cd to sys/java/jre/xxx/jre/bin directory. (xxx could be glnx86 or glnxa64 or something similar)

chmod a+x *

Execute the install command once again. You should be all set.

参照链接: /blog/2013/01/02/solved-matlab-linux-install-error-tmpmathworks_15227javajreglnxa64jrebinjava-permission-denied/