Ubuntu-server20.04命令行安装Matlab2022b

Ubuntu-server20.04命令行安装Matlab2022b

准备文件

安装

1
2
3
4
5
6
7
8
9
10
# 解压压缩包
unzip Crack.zip

# 挂载ISO
mkdir matlab_installer
sudo mount -o loop R2022b_Linux.iso matlab_installer

# 复制安装配置文件
sudo cp matlab_installer/installer_input.txt .
sudo vim installer_input.txt

需要修改的配置如下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 安装路径
destinationFolder=/usr/local/matlab

# 激活码
fileInstallationKey=05322-36228-06991-12654-51812-34369-14072-44298-22786-36732-05503-35033-50900-29808-05166-12170-05630-02560-02687-62114-45079-42917-06281-13007-19512-18270

# 同意协议
agreeToLicense=yes

# 日志文件,您自定义一个即可
outputFile=/home/user/matlabinstaller.log

mode=silent
# 您的lic文件所在位置
licensePath=/home/user/license.lic
  • 继续安装
1
2
3
4
5
# 安装
sudo ./matlab_installer/install -inputFile installer_input.txt
# 等待完成后
# 复制破解文件
sudo cp libmwlmgrimpl.so /usr/local/matlab/bin/glnxa64/matlab_startup_plugins/lmgrimpl/
  • 增加环境变量
1
2
# /etc/profile 尾部增加
export PATH="$PATH:/usr/local/matlab/bin"
  • 生效配置
1
source /etc/profile
  • 运行
1
matlab

参考

https://www.bilibili.com/read/cv26979628/