Results 1 to 8 of 8
I'm trying to install a game and the file has the following ending .bz2.run anyone that knows what I need or get it running ??...
- 02-14-2005 #1
install Q
I'm trying to install a game and the file has the following ending .bz2.run anyone that knows what I need or get it running ??
- 02-14-2005 #2Linux Guru
- Join Date
- Mar 2003
- Location
- Wisconsin
- Posts
- 1,907
hmmm... I'm wondering if it's not actually .run.bz2? That's a little more standard. If it is, then run the following commands
What this does is unzip the file, make that file executable, then executes the file.Code:tar -jxvf filename.run.bz2 cd /directoty/where/file/was/unzipped chmod u+x filename.run ./filename.run
If the file really is called .bz2.run, then you should be able to skip steps one and two.
JeremyRegistered Linux user #346571
"All The Dude ever wanted was his rug back" - The Dude
- 02-14-2005 #3
it is .bz2.run
that chmod command line - please specify?? you+x?
when I try ./filename.bz2.run i get permission denied.
- 02-14-2005 #4Linux Engineer
- Join Date
- Oct 2004
- Location
- Vancouver
- Posts
- 1,366
you +x
you is your user name, i.e. if you username is hamish then
hamish +xOperating System: GNU Emacs
- 02-14-2005 #5Linux Guru
- Join Date
- Mar 2003
- Location
- Wisconsin
- Posts
- 1,907
Somethings wrong, when you type the letter [u], it is replaced with you.
JeremyRegistered Linux user #346571
"All The Dude ever wanted was his rug back" - The Dude
- 02-14-2005 #6
- 02-14-2005 #7Linux Guru
- Join Date
- Mar 2003
- Location
- Wisconsin
- Posts
- 1,907
okay, the syntax is
chmod [the letter :_u_:]+x filename
JeremyRegistered Linux user #346571
"All The Dude ever wanted was his rug back" - The Dude
- 03-07-2005 #8Just Joined!
- Join Date
- Mar 2005
- Posts
- 1
SOLUTION:
First find out what type of file it is
$ file privateer1.0.bz2.run
privateer1.0.bz2.run: Bourne shell script text executable
This will tell you what type of file it is and hence how to use it. In this case, you use bash.
Then chmod it to make it executable
$ chmod u+x privateer1.0.bz2.run
$ ls -l
total 184992
-rw-r--r-x 1 gsolrac gsolrac 189238001 Mar 7 22:35 privateer1.0.bz2.run
Now run it using bash:
$ /bin/bash ./privateer1.0.bz2.run
Verifying archive integrity... All good.
Uncompressing Privateer Remake 1.0 - Base......
Hope this helps.


Reply With Quote
