PDA

View Full Version : [ubuntu] Cant install the .bin file



crazyjordan
June 1st, 2008, 10:25 PM
[SOLVED]

hi i cant install a program its the steam dedicated server file wich is a .bin when i click on it , it says there isnt a program for the file and i tryed installing with the command prompt but whatever i try it just says cannot find the file "hldsupdatetool.bin"

if you need any more info just ask, thanks.

Rocket2DMn
June 1st, 2008, 10:26 PM
You need to set executable permissions on the file first

chmod +x hldsupdatetool.bin
./hldsupdatetool.bin

SunnyRabbiera
June 1st, 2008, 10:27 PM
instlling applications in ubuntu is different then in wondows, please see this guide:
http://monkeyblog.org/ubuntu/installing/

shifty_powers
June 1st, 2008, 10:27 PM
think you need to change it to an executable first.

iirc


sudo chmod a+x *package name*

when you are in the right path in the terinal.

or think you can do it through right clicking the bin file and going to properties...

crazyjordan
June 1st, 2008, 10:40 PM
i tried all of these but i just get cannot access hldsupdatetool.bin no such file or directory. its on the desktop.

this is it asactly:
jordan@jordan-desktop:~$ sudo chmod a+x hldsupdatetool.bin
chmod: cannot access `hldsupdatetool.bin` : no such file or directory

Rocket2DMn
June 1st, 2008, 10:41 PM
Your first command needs to change your directory so that the terminal is looking at the desktop (where you saved the file)

cd ~/Desktop
chmod a+x hldsupdatetool.bin
./hldsupdatetool.bin
Note that Desktop has a capital D, case matters in linux.

crazyjordan
June 1st, 2008, 10:53 PM
Thank you so much! this has solved my problem and il note this for the future thank you so much =)