Installing R2014b on RHEL 6.6 (Red Hat Enterprise Linux)
6 ビュー (過去 30 日間)
表示 古いコメント
I'm trying to install Matlab R2014b in a server with a RHEL (Red Hat Enterprise Linux) 6.6. (64-bit) First, I have downloaded the installer and, then, I have unziped it in the folder /var/tmp/matlab as explained here: http://de.mathworks.com/matlabcentral/answers/94699-why-do-i-get-a-permission-denied-error-message-referring-to-the-java-folder-when-installing-matlab-o?s_tid=srchtitle
As root, I execute ./install and get the following message:
# ./install
-bash: ./install: Permission denied
Then, I execute:
# sh ./install
./install: line 334: /var/tmp/matlab/bin/glnxa64/install_unix: Permission denied
Finally, I try also following:
# sh ./bin/glnxa64/install_unix
Preparing installation files ...
Installing ...
./bin/glnxa64/install_unix: line 834: /tmp/mathworks_20449/sys/java/jre/glnxa64/jre/bin/java: Permission denied
Finished
And here the permissions of sys/java/jre/glnxa64/jre/bin/ :
# ls -la sys/java/jre/glnxa64/jre/bin/
total 448
drwxr-xr-x 2 root root 320 Dec 1 10:56 .
drwxr-xr-x 7 root root 280 Dec 1 10:56 ..
-rwxr-xr-x 1 root root 6395 May 20 2014 ControlPanel
-rwxr-xr-x 1 root root 7750 May 20 2014 java
-rwxr-xr-x 1 root root 19320 May 20 2014 java_vm
-rwxr-xr-x 1 root root 124744 May 20 2014 javaws
-rwxr-xr-x 1 root root 6395 May 20 2014 jcontrol
-rwxr-xr-x 1 root root 7957 May 20 2014 keytool
-rwxr-xr-x 1 root root 8149 May 20 2014 orbd
-rwxr-xr-x 1 root root 7989 May 20 2014 pack200
-rwxr-xr-x 1 root root 8013 May 20 2014 policytool
-rwxr-xr-x 1 root root 7957 May 20 2014 rmid
-rwxr-xr-x 1 root root 7965 May 20 2014 rmiregistry
-rwxr-xr-x 1 root root 7981 May 20 2014 servertool
-rwxr-xr-x 1 root root 8181 May 20 2014 tnameserv
-rwxr-xr-x 1 root root 219624 May 20 2014 unpack200
0 件のコメント
回答 (1 件)
Dave Behera
2015 年 12 月 3 日
Try making the following two files executable:
(Run these as root user)
chmod +x /var/tmp/matlab/install
chmod +x /var/tmp/matlab/sys/java/jre/glnxa64/jre/bin/
and then run the install script again.
Take a look at
参考
カテゴリ
Help Center および File Exchange で Introduction to Installation and Licensing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!