OESF Portables Forum

Everything Else => General Support and Discussion => Zaurus General Forums => Archived Forums => Software => Topic started by: ultra-hp on May 06, 2004, 10:15:35 pm

Title: nubie help - tar file to play mame
Post by: ultra-hp on May 06, 2004, 10:15:35 pm
If anyone could help it would be great!  
Just purchased a SL-C760 and I am trying to get it to work with either znes or mame.
Just downloaded all the sdl libraries and advancemame as indicated in another forum posting. The advance mame was in a gz format so I went into the console and typed

gunzip advancemame-0.81.1-linux-pentium.tar.gz

and now I have a file called

advancemame-0.81.1-linux-pentium.tar

how can I get this to work?

THanks in advance
Title: nubie help - tar file to play mame
Post by: offroadgeek on May 06, 2004, 10:23:26 pm
tar -cvf filename.tar

or you could have done with the original .tar.gz

tar -cvzf filename.tar.gz
Title: nubie help - tar file to play mame
Post by: redbones on May 06, 2004, 10:25:18 pm
tar xvf advancemame-0.81.1-linux-pentium.tar

should untar it.  not sure what to do after that.
Title: nubie help - tar file to play mame
Post by: ultra-hp on May 06, 2004, 10:29:05 pm
when I type

tar -cvf advancemame-0.81.1-linux-pentartium.tar.gz

I get the responce :
tar: cowardly refusing to create an empty archive
Title: nubie help - tar file to play mame
Post by: ultra-hp on May 06, 2004, 10:31:33 pm
it worked!  
Thanks!

what is a tar? (compared to a win file?)
Title: nubie help - tar file to play mame
Post by: ultra-hp on May 06, 2004, 10:32:36 pm
(the xvf worked)
Title: nubie help - tar file to play mame
Post by: lardman on May 07, 2004, 05:46:31 am
A tar file is uncompressed, it basically tacks lots of files (which can be in directories) together into one file, keeping their permissions, ownership, directory info etc. This single file can then be compressed with gzip (.gz).

I don\'t think that there is a Windows equivalent, just that tar & gzip are about the same as zipping something (you can also zip under Linux if you so desire).

Offroadgeek\'s post is wrong.

The switches are:

z - uncompress using gunzip

x - extract
c - create (so you only use one of these)

f - it\'s a file (this is always needed, don\'t ask)
v - be verbose

e.g.

tar -zxvf somefiles.tar.gz (extract from tar.gz)
tar -xvf somefiles.tar (extract from tar)
tar -cvf somefiles.tar ./getfilesfromhere/* (create tar file)


Si