0. 原料
(1). CentOS_x64系统 CentOS 2.6.32-573.el6.x86_64
(2). Matlab R2015b_glnxa64.iso,可以从百度网盘下载到:链接: http://pan.baidu.com/s/1hqfhqFa 密码: wggd
1. CentOS/Linux 安装MATLAB
(0). Matlab的安装说明readme.txt,全文摘抄如下(可略过)。
I offer two modes of installation:1) standalone:- Install choosing the option "Use a File Installation Key" and supply the following FIK aaaaa-bbbbb-ccccc-ddddd-eeeee-xxxxx- To install Matlab Production Server,using this aaaaa-bbbbb-ccccc-ddddd-eeeee- Use license_standalone.lic to activate, or make a "licenses" folder in %installdir% and copy license_standalone.lic to it,and run matlab without activation- after the installation finishes copy the folders to %installdir% to overwriting the originally installed files2) floating license (network license server):- Install choosing the option "Use a File Installation Key" and supply the following FIK aaaaa-bbbbb-ccccc-ddddd-eeeee-fffff- To install Matlab Production Server,using this aaaaa-bbbbb-ccccc-ddddd-eeeee- Use license_server.lic when asked- after the installation finishes copy the folders to %installdir% to overwriting the originally installed files
(1). 挂载ISO镜像文件
$ sudo mount -o loop R2015b_glnxa64.iso /mnt/tmp
(2). 执行安装过程,选择不联网安装,序列号在~/crack/readme.txt文件中。
$ cd /mnt/tmp$ sudo ./install
(3). 安装完毕,采用不联网激活,找到相应的激活文件*.lic,并且将~/crack/bin/中的文件复制到~/MATLAB/Rxxxx/bin中。
$ sudo cp /[Your crack directory]/Matlab_R2015b/Matlab_2015b_Linux64_Crack/R2015b/bin/glnxa64/* /usr/local/MATLAB/R2015b/bin/glnxa64
(4). 卸载ISO镜像。
$ sudo umount /mnt/tmp
(5). 添加桌面快捷方式。
新建一个桌面配置文件,文件名为Matab_2015b.desktop: $ gedit Matlab_2015b.desktop ,其内容如下:
[Desktop Entry]Name=Matlab 2015bExec=/usr/local/MATLAB/R2015b/bin/matlab -desktopIcon=/home/She/Documents/MATLAB/matlab.pngType=ApplicationName[zh_CN]=Matlab_2015b
红色字体是图标文件的绝对路径,请修改到它所在的正确位置。
把这个桌面配置文件复制到桌面,即可在桌面得到一个Matlab启动的快捷方式;如果将它复制到/usr/share/applications,则得到主面板菜单栏的快捷方式。
$ cp Matlab_2015b.desktop /home/She/桌面$ sudo cp Matlab_2015b.desktop /usr/share/applications
安装完毕,单击桌面上的快捷方式,试试能不能用吧?Happy Matlab!
2. CentOS/Linux 卸载MATLAB
$ sudo rm -rf /usr/local/MATLAB/R2014b$ sudo rm /usr/local/bin/matlab /usr/local/bin/mcc /usr/local/bin/mex /usr/local/bin/mbuild # 仅供参考,这些文件可能不存在