This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Lightning-Bolt.tar.tar

Old posts that have not been replied to for several years.
Locked
k
kali
Voice
Posts: 22
Joined: Wed Sep 10, 2003 5:38 pm

Lightning-Bolt.tar.tar

Post by kali »

Hi i'm newbie with the eggies, i need know how unzip the Lightning-Bolt.tcl in my shell, i,m confused whit this script.

THANKS
User avatar
caesar
Mint Rubber
Posts: 3778
Joined: Sun Oct 14, 2001 8:00 pm
Location: Mint Factory

Post by caesar »

Just unpack it with tar zxvf archive.tar.gz if is indeed an .tar.gz archive.
Once the game is over, the king and the pawn go back in the same box.
User avatar
Dedan
Master
Posts: 260
Joined: Wed Jul 09, 2003 10:50 pm
Location: Memphis

Post by Dedan »

first unzip it with "gunzip" then use "tar -xf"

type: gunzip <file> (to unzip .gz files)

type: tar -zxvf eggdrop1.6.10.tar.gz (to extract from an eggdrop)

type: tar -xf <file> (to extract a tar file)

x tells tar to extract
v tells tar to give verbose messages to the user
f tells tar to work on
z tells tar the files is still zipped

[note] some files seem to like being unzipped before the tar command is used.
I once was an intelligent young man, now i am old and i can not remember who i was.
User avatar
Dedan
Master
Posts: 260
Joined: Wed Jul 09, 2003 10:50 pm
Location: Memphis

Post by Dedan »

you beat me to it caesar :o
I once was an intelligent young man, now i am old and i can not remember who i was.
k
kali
Voice
Posts: 22
Joined: Wed Sep 10, 2003 5:38 pm

tar gunzip

Post by kali »

ok i'm trying of to do this:

Code: Select all

gunzip Lightning-Bolt.tar
gunzip: Lightning-Bolt.tar: unknown suffix -- ignored
[kaleo@star scripts]$ tar -zxvf Lightning-Bolt.tar
 and this 
tar -zxvf Lightning-Bolt.tar

gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error exit delayed from previous errors

what's the error?
User avatar
caesar
Mint Rubber
Posts: 3778
Joined: Sun Oct 14, 2001 8:00 pm
Location: Mint Factory

Post by caesar »

Guess you haven't noticed my "if is indeed an .tar.gz archive." change it's name from .tar.gz to .tcl then try edit it with an text editor and see what happens. If that fails then get it again from the web page you got it before.
Once the game is over, the king and the pawn go back in the same box.
b
b34r
Voice
Posts: 35
Joined: Wed Jun 18, 2003 4:09 pm

Post by b34r »

tar -xvf Lightning-Bolt.tar
User avatar
caesar
Mint Rubber
Posts: 3778
Joined: Sun Oct 14, 2001 8:00 pm
Location: Mint Factory

Post by caesar »

Damn, haven't noticed that you've posted the name of the archive. Try the "tar -xvf Lightning-Bolt.tar" as b34r sugested and ignore my previous post.
Once the game is over, the king and the pawn go back in the same box.
Locked