error message "install_unix: not found"

ubuntu 14.04, matlab 2014b
I am having troble installing matlab I aleady had solved my first installing problem "permission denied" (by using command "chmod -x") second, when I entered command "./install"
"./install: 1: eval: /home/mycom/batang/matlab/R2014b/bin/glnx86/install_unix: not found"
....
I do not understand this message. What should I do in order to complete the installation?

4 件のコメント

Benjamin Gaska
Benjamin Gaska 2015 年 2 月 8 日
I'm having the same issue, it worked last week when I was running Ubuntu 14.10. Was having issue with Ubuntu though and so I installed Xubuntu on the same computer and now I am getting this same error when I run ./install.
Adrien Peyrache
Adrien Peyrache 2015 年 4 月 1 日
Any updates here?
Utkarsh
Utkarsh 2016 年 3 月 10 日
編集済み: Walter Roberson 2016 年 3 月 10 日
same issue..
Trying to install Matlab 2015b on Ubuntu 14.04.
./install: 1:eval:/media/user/MATHWORKS_R2015B/bin/glnx86/install_unix: not found
Weiying Qiu
Weiying Qiu 2016 年 6 月 3 日
Same issue. Cannot find install_unix on Linuxmint.

サインインしてコメントする。

回答 (4 件)

Randy A Lemons
Randy A Lemons 2017 年 7 月 25 日
編集済み: Randy A Lemons 2017 年 7 月 25 日

6 投票

Should anyone have this issue in the future, for me it was caused by using the wrong extraction method on the .zip file. I have 7zip installed on my 64bit machine and using the command:
7z e matlab_R2017a_glnxa64.zip
caused the file to extract but apparently not in the right way. The MATLAB directions at https://www.mathworks.com/help/install/ug/install-mathworks-software.html specifically call for you to use:
unzip matlab_R2017a_glnxa64.zip
which then allows the install to continue properly.

4 件のコメント

soyoung shin
soyoung shin 2017 年 11 月 29 日
I tried to extract with your commend.
7z e matlab_R2017a_glnxa64.zip
and now I can more file from the extraction but still have same problem....
nvidia@tegra-ubuntu:~/Downloads/matlab$ sudo ./install
./install: 1: exec: /home/nvidia/Downloads/matlab/bin/unknown/install_unix: not found
please help..
João Paulo Macedo
João Paulo Macedo 2021 年 2 月 24 日
It worked. Tks!
David Alejandro Celaya González
David Alejandro Celaya González 2021 年 3 月 9 日
it worked, the error was caused for the wrong extraction. Tks.
Glib
Glib 2023 年 11 月 1 日
Thank you!

サインインしてコメントする。

Walter Roberson
Walter Roberson 2016 年 6 月 3 日

2 投票

You are trying to install onto a 32 bit Linux system. 32 bit Linux has not been supported for the last several releases.
Sean Ma
Sean Ma 2018 年 1 月 31 日
編集済み: Sean Ma 2018 年 1 月 31 日

1 投票

So I've encountered the same issue with you all for installing Matlab on CentOS 6 server. I made sure that I'm on `root` (with `sudo -i`) as well as all the folders/file have `write` access (with `chmod +x`) but I'm still getting all these errors.
After further investigation, Matlab's `install` script seems to make a copy of the essential installation files to `/tmp` and initiate the installation from there. Now someone mentioned in another forum ( https://www.centos.org/forums/viewtopic.php?t=22300 ) that possibly the `/tmp` folder which Matlab is installing has a `noexec` option when mounted where it doesn't let you execute any binary for security concerns.
You can check it with the `mount` command and it should display something like below with the `noexec` option at the `/tmp` line.
/dev/mapper/lv_tmp on /tmp type ext4 (rw,noexec)
To overcome that, you can temporarily disable it by
mount -o remount,exec /tmp
and retry your install. But be sure to enable it back later:
mount -o remount,noexec /tmp
Hope it helps you as well!
Markos Loizou
Markos Loizou 2017 年 3 月 23 日

0 投票

I had the same problem, and my system is 64 bits, you have to use sudo ./install since some of the folders and files the installation process is trying to access and modify need root privileges.
You can check your system version by uname -a or uname -i, if you get i386 then its 32 bits if x86_64 then it's a 64 bit. I hope this helps

カテゴリ

ヘルプ センター および File ExchangeIntroduction to Installation and Licensing についてさらに検索

タグ

質問済み:

2015 年 2 月 8 日

コメント済み:

2023 年 11 月 1 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by