CentOS x64上Matlab R2015b的镜像安装方法与卸载

------------------------------------------分割线------------------------------------------

点击这个 链接关注 Linux公社官方微信,关注后回复数字142290。即可得到网友的分享密码。

如果取消关注Linux公社公众号,即使再次关注,也将无法提供本服务!

链接:  密码:获得见上面的方法,地址失效请在下面留言。

------------------------------------------分割线------------------------------------------

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 files

2) 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 2015b
Exec=/usr/local/MATLAB/R2015b/bin/matlab -desktop
Icon=/home/She/Documents/MATLAB/matlab.png
Type=Application
Name[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 # 仅供参考,这些文件可能不存在

Ubuntu Server上安装Matlab

Matlab与C/C++联合编程之从Matlab调用C/C++代码

二分类SVM方法Matlab实现

Matlab中的取整函数fix, floor, ceil与round

Matlab编译cuda的.cu文件

Linux Matlab服务器进一步改造成Application Server(应用程序服务器)

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/15767.html