LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Executing a .run file (https://www.linuxquestions.org/questions/linux-newbie-8/executing-a-run-file-938366/)

suicidaleggroll 04-06-2012 01:14 PM

Another missing package, use "yum provides libz.so.1" to get the name of it.

suicidaleggroll 04-06-2012 01:17 PM

Quote:

Originally Posted by John VV (Post 4646010)
also from only the 755 you did not make the file an executable
you forgot the " +x "

?
755 is rwxr-xr-x, no need for a "+x" since it's already there in the 755.

Code:

$ echo "echo 1" > test.sh
$ ./test.sh
bash: ./test.sh: Permission denied
$ chmod 755 test.sh
$ ./test.sh
1


macy 04-06-2012 01:28 PM

1 Attachment(s)
PFA yum provides.PNG

suicidaleggroll 04-06-2012 02:02 PM

Quote:

Originally Posted by macy (Post 4646620)
PFA yum provides.PNG

The package that you need is zlib-1.2.3-27.el6.i686. You can use "yum install" to install it:
Code:

yum install zlib-1.2.3-27.el6.i686

macy 04-06-2012 02:10 PM

Yep.... It works Great :) Thanks a lot guys for your great support!!!!!


All times are GMT -5. The time now is 06:30 AM.