OESF Portables Forum

General Forums => General Discussion => Topic started by: robinson10 on December 28, 2004, 08:10:25 pm

Title: .tar File- What Is, How To Read
Post by: robinson10 on December 28, 2004, 08:10:25 pm
What is a .tar file? What's its use? And how do I read it?
Title: .tar File- What Is, How To Read
Post by: JohnKiniston on December 28, 2004, 09:06:32 pm
A tar file is a file archive, They are used to move groups of files from system to system similar to a .sit file on a macintosh or a .zip file on a pc (Without compression however.)

Do you need to extract the file on your Zaurus or on a PC or Mac?
Title: .tar File- What Is, How To Read
Post by: Teletubbie on December 28, 2004, 09:10:27 pm
Hi,
tar is an archive like zip, but it comes from unix. This means that it can handle some additional information like data permision rights. If you have linux you can just take gnu tar. It is often provided by linux base system. Just type:
Code: [Select]
man tarIf you see the man page, tar should be installed.
You can also get gnu tar wor windows. Winzip can also extract tar files. Under windows I always use:
http://www.7-zip.org/ (http://www.7-zip.org/)
Cheers,
Sam
Title: .tar File- What Is, How To Read
Post by: Tehas on December 28, 2004, 09:14:37 pm
On Linux:

To see a tar file's contents use the "t" option:
Code: [Select]
tar -tf mytarfile.tar
To extract the contents use the "x" option:
Code: [Select]
tar -xf mytarfile.tar
manpage for tar command (http://www.die.net/doc/linux/man/man1/tar.1.html)
Title: .tar File- What Is, How To Read
Post by: qx773 on December 29, 2004, 08:48:54 pm
tar is an abbreviation of the words, "tape archive."  Originally, Unix systems backed up data on tape drives, because hard drives did not exist at the time or were really expensive or had less storage capacity than tapes.