matlab,mcr 安装编译

1. matlab 安装 root用户
挂载: mount -o loop /home/hadoop/matlab/R2014b.iso /mnt/cd1
安装: cd /mnt/cd1  
      ./install
导入 crack文件夹下的key code,及导入lic文件激活


安装完成后,将 crack 文件夹下的 libmwservices.so  拷贝覆盖到 /usr/local/MATLAB/R2014A/bin/glnxa64 下


按照MATLAB正常的安装步骤,到激活完整之后,执行./matlab命令仍然无法正常运行MATLAB,出现以下错误提示:
icense checkout failed. license manager error -8.
Make sure the HostID of the license file matches this machine, and that the HostID on the server.
Licensing error: -8,523.
Linux Copy/overwrite libmwservices.so ( from the linux folder provided ) to : /usr/local/MATLAB/R2014A/bin/glnxa64..
所以我们只需将crack中的ibmwservices.so复制到安装目录中bin/glnxa64中覆盖对应的文件,即可.




2. 编译文件
mcc -m filename  例如: ./mcc -m /root/work/code/wqms_quickplot/wqms_create.m
在 /usr/local/MATLAB/R2014b/bin 生成 wqms_create 文件,即执行文件


3. mcr_r2014b 环境安装
./install -mode silent -agreeToLicense  yes
可能会出现Permission denied 问题   
以下3个文件都需要chmod a+x filename
dir/install           dir/bin/glnxa64/install_unix     dir/sys/java/jre/glnxa64/jre/bin/java   


安装完毕后,需要将 /usr/local/MATLAB/MATLAB_Compiler_Runtime/v84/runtime/glnxa64 下的 .so 文件 拷贝覆盖到 /usr/local/MATLAB/MATLAB_Compiler_Runtime/v84/bin/glnxa64 

你可能感兴趣的:(matlab)