zoukankan      html  css  js  c++  java
  • ubuntu 10.04下安装matlab的过程记录

      安装前,需要下载matlab在unix下的安装光盘镜像iso文件。matlab的安装包文件很大,但校园网(教育网也可登录)在哈工大的ftp上的下载速度惊人。安装包具体位置:ftp://202.118.224.241/software/Science/Mathworks.Matlab/,在这个目录下选择一个unix版本。我使用的是cuteFTP下载ftp://202.118.224.241/software/Science/Mathworks.Matlab/Matlab.2011/Mathworks.Matlab.R2011a.UNIX.ISO-TBE/这个版本,浏览器下的下载速度未经验证。没错儿,目录下的所有文件都下载下来。

    点击下载目录下的File:ml2011au.rar,等上一段时间,你的镜像文件ml2011au.iso就得到了。

    正式开始安装前需要说明的是,我的机器上还装有Windows系统,上述下载以及解压缩过程是在windows下完成,这样你就使用winrar,迅雷等工具(完全是为了linux服务,不必反感)。镜像完成了,那么可以开始安装了:

    STEP 1. 将镜像文件挂载到linux下:

      1)  sudo mkdir /mnt/matlab  为挂载找个地方

      2)  sudo mount  [filepath]   /mnt/matlab  -o loop    filepath是文件ml2011au.iso的具体位置,你可以找到这个文件后,鼠标左键将其拽进终端,这样就能获得它的完整路径。

    STEP 2. 启动安装程序及安装过程:

      1) cd  /mnt/matlab  这个目录下就是安装光盘里的所有内容。

      2) sudo ./install  最好是超级用户权限,安装过程中需要建立目录。安装前最好阅读下/mnt/matlab/crack目录下 install.txt :

         “ we offer you two ways to license matlab r2011a:
     
          standalone
            1) choose "install manually without using the internet"        
            2) enter the "file installation key"
                 27148-10273-27823-12342-16466
            3) use "license_standalone.dat" when asked for license file
     
          network
            1) choose "install manually without using the internet"        
            2) enter the "file installation key"
                 46502-49379-06867-32603-40799
            3) if neccessary install "license manager"
            4) use "license_server.dat" when asked for license file
     
          enjoy !  ”

    我选择独立安装standalone,不联网模式。standalone模式下的安装key在文本已经列出来了,其中不用输入数字之间的‘-’。而在安装最后的激活过程中,使用/mnt/matlab/crack/下的lic_standalone.dat。在这个过程中需要注意的就是安装key的输入和激活文件的导入,其它一律 ‘next>’ 呀。

    STEP 2.5. 完成安装之后不要忘记把镜像文件卸载,以及/mnt/matlab/文件夹删掉。当然这些都不是不需的。

      1)sudo umount -f /mnt/matlab/      un-mount 卸载。

      2)  sudo rmdir /mnt/matlab/   

    STEP 3. 祝你好运!如果出现问题可以试一试哈工大ftp上的其他unix版本。

  • 相关阅读:
    Python基础:28正则表达式
    Remove Duplicates from Sorted Array
    Reverse Nodes in k-Group
    Merge k Sorted Lists
    Generate Parentheses
    Container With Most Water
    Regular Expression Matching
    Median of Two Sorted Arrays
    sql 子查询
    linux安装服务器
  • 原文地址:https://www.cnblogs.com/instona/p/2974952.html
Copyright © 2011-2022 走看看