博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
some encountered problem and the solve methods when install Matlab in Linux
阅读量:6225 次
发布时间:2019-06-21

本文共 1029 字,大约阅读时间需要 3 分钟。

1. error while loading shared libraries: libXp.so.6 solve method : yum install libXp 2. An error status was returned by the program 'xsetup', the X Window System version of 'install'. The following messages were written to standard error: /tmp/27387tmwinstall/update/bin/glnxa64/xsetup: error while loading shared libraries: libmwins.so: cannot open shared object file: No such file or directory The reason is the install program of SELinux and MATLAB conflict. As SELinux the MAC enforce control need some call of glibc library which will also be used by Matlab. So the method is shutdown the SELinux before install matlab: # setenforce 0 #just shutdown for a while U can also modify /etc/selinux/config SELINUX = disabled #disable it forever 3. If U can not install in GUI, you can use character mode install, the command is: ./install* -t   PS. sometimes the install script maybe have not the excute property , U should chmod +x install first..   Good Luck.

转载于:https://www.cnblogs.com/shaoguangleo/archive/2012/03/06/2806083.html

你可能感兴趣的文章
Git 同时与多个远程库互相同步
查看>>
为什么Linux下的环境变量要用大写而不是小写
查看>>
Linux CentOS7.0 (01)在Vmvare Workstation上 安装配置
查看>>
剑指offer九之变态跳台阶
查看>>
php rabbitmq操作类及生产者和消费者实例代码 转
查看>>
js 格式化日期 ("/Date(1400046388387)/")
查看>>
Caffe CNN特征可视化
查看>>
Python find() 方法
查看>>
java实现二叉树的构建以及3种遍历方法
查看>>
构造MaxTree
查看>>
工厂模式
查看>>
贝叶斯机器学习路线图
查看>>
如何在云端部署SAP HANA实战, Azure 上的 SAP HANA(大型实例)概述和体系结构
查看>>
browser-sync 服务器使用
查看>>
IntelliJ IDEA常用的快捷键(代码提示/注释代码/加入类注释和方法注释Javadoc)
查看>>
SpringBoot整合SpringKafka实现消费者史上最简代码实现
查看>>
Ubuntu创建新用户并增加管理员权限 删除某个用户
查看>>
java单例模式实例
查看>>
人工智能时代: 从隐私到控制
查看>>
【Spark】Spark-性能调优-系列文章
查看>>