Operating System - Linux
1753519 Members
5070 Online
108795 Solutions
New Discussion юеВ

Re: How to install a software with .bin extension in RHEL5

 
SOLVED
Go to solution
Yaboto
Super Advisor

How to install a software with .bin extension in RHEL5


Please give me the procedure to install a package that comes as a file with .bin extension.

Regards,
2 REPLIES 2
Ivan Ferreira
Honored Contributor
Solution

Re: How to install a software with .bin extension in RHEL5

Normally you change the permissions to make it executable and then run the file:

chmmod 755 filename.bin
./filename.bin

Or just run:

bash filename.bin
Por que hacerlo dificil si es posible hacerlo facil? - Why do it the hard way, when you can do it the easy way?
Yaboto
Super Advisor

Re: How to install a software with .bin extension in RHEL5


Thanks billion times for all your contributions !