CentOS command-line installation matlab2018a

1. Download

Links: https://pan.baidu.com/s/19LYKyP1-_zyI2Xviiz3QfA extraction code: zbrk copy the contents of this open Baidu network disk phone App, the operation more convenient oh
Here Insert Picture Description

2. Installation Preparation

  注意使用root权限,以下命令均使用root权限

2.1 mount iso

Create a directory to mount and mount the mirror to the directory.

mkdir /mnt/rom
mount -o loop R2018a_glnxa64_dvd1.iso  /mnt/rom
If a problem occurs
  XXX is write-protected, mounting read-only
Modify folder permissions remounting
 chmod 755 -R /mnt
 mount -o loop R2018a_glnxa64_dvd1.iso  /mnt/rom

2.2 modify the installation file

Backup copy installation files
cp /mnt/rom/activate.ini ~/
cp /mnt/rom/installer_input.txt  ~/
chmod 777 ~/installer_input.txt
vim ~/installer_input.txt
In accordance with changes need
  destinationFolder=/eda/matlab2018  #安装目录
  fileInstallationKey=09806-07443-53955-64350-21751-41297  #安装密钥,在Crack中readme.txt查找
  agreeToLicense=yes
  mode=silent

Here also annotate mode, use the graphical installation, the installation procedure unchanged

3. Install

Perform the installation
/mnt/rom/install -inputFile ~/installer_input.txt

Here you need to use the root account, you can not use sudo
to perform after installation to about 50%, you will be prompted to mount dvd2
this time to re-open a terminal mount dvd2

Mount iso2
umount /mnt/rom
mount -o loop R2018a_glnxa64_dvd2.iso  /mnt/rom

Can be activated after the installation is complete

4. Activate

j into the download of Crack folder, replacing crack file, to note here the target path cp need to modify the path for their installation.
unzip MATLABR2018aLinux64Crack.zip
cp MATLABR2018aLinux64Crack/R2018a/bin/glnxa64/matlab_startup_plugins/lmgrimpl/libmwlmgrimpl.so  /eda/matlab2018/bin/glnxa64/matlab_startup_plugins/lmgrimpl/libmwlmgrimpl.so
Configuration environment variable
  vim /etc/profile
Adding the following code
  export PATH=$PATH:/eda/matlab2018/bin

5. Open Software

In the following command line command to open matlab
  matlab
Published 11 original articles · won praise 11 · views 2332

Guess you like

Origin blog.csdn.net/baidu_32639021/article/details/93973313