The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > OS Specific Forums > SUN Solaris
Google UNIX.COM
Home Forums Register Rules & FAQ Members List Arcade Search Today's Posts Mark Forums Read


SUN Solaris The Solaris Operating System, usually known simply as Solaris, is a free Unix-based operating system introduced by Sun Microsystems .


Other UNIX.COM Threads You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
how to restriction directory size in solaris nibiru78 SUN Solaris 3 02-07-2008 03:39 PM
Usage of /var/tmp/ directory on Solaris 10 patilmuragesh SUN Solaris 1 12-12-2007 08:31 AM
help linking directory from a hp to a solaris raulb SUN Solaris 3 08-25-2005 01:45 PM
Solaris-ksh: directory not found dangral UNIX for Dummies Questions & Answers 5 02-19-2004 11:12 AM
How to compress a directory on a Sun Solaris 5.7 ? sameerdes UNIX for Dummies Questions & Answers 4 08-22-2003 09:44 PM

Reply
 
Submit Tools LinkBack Thread Tools Search this Thread Display Modes
  #6 (permalink)  
Old 05-14-2008
Smiling Dragon's Avatar
Disorganised User
 
Join Date: Nov 2007
Location: New Zealand
Posts: 568
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!Spurl this Post!
Make sure you tar these directories up using relative links
eg
Code:
cd /some/dir/here
tar cf /path/to/tarball.tar subdir1 subdir2 subdir3/onlythispart
rather than
Code:
tar cf /path/to/tarball.tar /some/dir/here/subdir1 /some/dir/here/subdir2 ...
When you untar them again, change into the directory you want them to go to, then run the tar xf to unpack.
By default tar extracts files into the cirrent dir - unless you have used absolute paths when creating the tar, in which case it depends on the implementation of tar as to what it will do.
Reply With Quote
Forum Sponsor
  #7 (permalink)  
Old 05-15-2008
Registered User
 

Join Date: Dec 2007
Posts: 42
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!Spurl this Post!
Quote:
Originally Posted by mmb View Post
also could ypu please tell me how to untar the file in a specified directory?
tar xvf {filename} will tar the file in current directory.
If you want to extract in some other directory, cd to that directory and type
tar xvf {PATH}/{filename}
and the untarred file will be created in pwd
Reply With Quote
  #8 (permalink)  
Old 05-19-2008
Registered User
 

Join Date: Nov 2006
Posts: 235
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiReddit! Stumble this Post!Spurl this Post!
actually I just want to add. For safety reasons whenever you tar anything always try to have the practice to specify relative instead of absolute path.

example:
absolute path will be tar cf /tmp/abc.tar /etc
relative path will be tar cf /tmp/xyz.tar ./etc <-- "."

The danger of using absolute path is when you un-tar the file it will overwrite existing folder.


example:
cd /tmp
tar xf abc.tar will extract and overwrite existing /etc
tar xf xyz.tar will extract into /tmp only
Reply With Quote
Google UNIX.COM
Reply



Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -7. The time now is 09:08 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008 The CEP Blog All Rights Reserved -Ad Management by RedTyger

Search Engine Optimization by vBSEO 3.1.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102