OESF Portables Forum
General Forums => General Discussion => Topic started 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?
-
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?
-
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:
man tar
If 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
-
On Linux:
To see a tar file's contents use the "t" option:
tar -tf mytarfile.tar
To extract the contents use the "x" option:
tar -xf mytarfile.tar
manpage for tar command (http://www.die.net/doc/linux/man/man1/tar.1.html)
-
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.