Thread
:
N900 New User Guide?
View Single Post
reinob
2012-05-15 , 07:57
Posts: 1,808 | Thanked: 4,272 times | Joined on Feb 2011 @ Germany
#
13
@sifo,
TAR only packs files together. GZIP (or BZIP2) actually compress files.
Usually you pack files together as a .tar file and then compress the .tar file to a .tar.gz (or .tgz) file.
See here for a reference:
http://unixhelp.ed.ac.uk/CGI/man-cgi?tar
(or just google "man tar").
As an example, if you have a directory called "packme" and you want to pack it you'd do:
Code:
$ tar -cf package.tar packme
Now the same with tar+gzip:
Code:
$ tar -czf package.tar.gz packme
Quote & Reply
|
The Following 3 Users Say Thank You to reinob For This Useful Post:
Estel
,
mr_pingu
,
sifo
reinob
View Public Profile
Send a private message to reinob
Find all posts by reinob