LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   .sh installation error (./check_lib_linux: Command not found) (https://www.linuxquestions.org/questions/linux-software-2/sh-installation-error-check_lib_linux-command-not-found-933401/)

happifairy 03-08-2012 05:21 AM

.sh installation error (./check_lib_linux: Command not found)
 
Hello. I'm newbie in linux.
I'm trying to install .sh file but it said command not found.

[happifairy@mysvr happifairy]# ll
-rwxrwxrwx. 1 happifairy happifairy 28754277 Feb 28 2007 CUBRID-6-Linux-232.sh
[happifairy@mysvr happifairy]#
[happifairy@mysvr happifairy]# ./CUBRID-6-Linux-232.sh
./check_lib_linux: Command not found.

I used to install like this in older computer with older version of RedHat O.S using ./ like this and it was ok.
I was trying to install on my new computer. But this CUBRID only work on older RedHat O.S version. And my new computer didn't accept older version. So I install latest RedHat O.S version on my computer, I used VM ware and install Old O.S ver Redhat. I tried to install CUBRID-6-Linux-232.sh on the Old O.S. ver which installed on VM-ware.

Cultist 03-08-2012 07:07 AM

The file you're trying run is either not present in the directory or is not executable.

First, enter
Code:

ls
and see if your filename is in the output. If it is, enter
Code:

chmod +x check_lib_linux
and then try ./check_lib_linux again.


All times are GMT -5. The time now is 03:33 AM.