PDA

View Full Version : loki equake installer


MarkUK
October 29th, 2005, 09:21 AM
Hi all ,
bit off a noob question here , i'm trying to install the abopve but i think i'm missing something .


from terminal

mark@mark:~$ sudo sh equake_1.1.0_rcl-english.run
Password:
sh: equake_1.1.0_rcl-english.run: No such file or directory
mark@mark:~$

it asks for password but i cant type anything it then says the file dont exist
/user/mark/ file name !!

aljones15
October 29th, 2005, 10:26 AM
chmod +x filename.run

then run it.

peace,
A

aljones15
October 29th, 2005, 10:26 AM
btw after chmod +x
just down ./filename.run

should work.

peace,
A

MarkUK
October 29th, 2005, 10:39 AM
ok i think i'm still doing something wrong

mark@mark:~$ sh chmod +x equake_1.1.0_rcl-english.run
/bin/chmod: /bin/chmod: cannot execute binary file
mark@mark:~$ sudo sh equake_1.1.0_rcl-english.run
sh: equake_1.1.0_rcl-english.run: No such file or directory
mark@mark:~$

Not having much luck here

themacmeister
October 30th, 2005, 06:15 AM
Hi there,

There is a trick involved here...

make sure you type sudo chmod, not sh chmod

you can also type:

sh filename.run

or

./filename.run

but if it is not a binary executable, ./filename.run does nothing...

Make sure you type sudo ./filename.run (note the ./)

I usually try sh first, and then ./ second

Hope this helps...

themacmeister