Linux-Noob Forums
How do I install a .bin file - Printable Version

+- Linux-Noob Forums (https://www.linux-noob.com/forums)
+-- Forum: Linux Noob (https://www.linux-noob.com/forums/forum-3.html)
+--- Forum: How Do I? (https://www.linux-noob.com/forums/forum-60.html)
+--- Thread: How do I install a .bin file (/thread-1008.html)



How do I install a .bin file - jacatone - 2008-03-05


I downloaded the Java for Linux file and it's a .bin file. How would I install it? Please give me the commands with the following file name included:

 

jre-6u3-linux-i586.bin

 

Many thanks.




How do I install a .bin file - anyweb - 2008-03-05


have you tried

Code:
chmod +x jre-6u3-linux-i586.bin




 

followed by

Code:
sh ./jre-6u3-linux-i586.bin




 

cheers

anyweb




How do I install a .bin file - eumel - 2008-03-11


it depends, on what distro you use, with debian-based, you just in

Code:
apt-get update && apt-get install sun-java6-jre


and if you want the plugin, get 'sun-java6-plugin' with apt too!

otherwise you'll find the rpm, deb and source here: java-packages just follow the instruction and you're ready to go!

 

//edit: why is my codebox soo huge??? sorry about that!