Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2005 05:20 PM
04-28-2005 05:20 PM
new directory, i.e all files will be extract into /123, how to do it?
high score
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2005 05:26 PM
04-28-2005 05:26 PM
Re: untar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2005 05:27 PM
04-28-2005 05:27 PM
Solutioncheck this doc
http://www2.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000062683984
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2005 05:28 PM
04-28-2005 05:28 PM
Re: untar
copy the tar ball, e.g. abc.tar, to /123
# cd /123
# tar xvf abc.tar
to explode the tar file to that directory
regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2005 05:30 PM
04-28-2005 05:30 PM
Re: untar
What does tar tvf /dev/rmt/0m shows??
(only first 2 or 3 lines required)
Anyway try this,
cd 123
pax -rv -s'/^\///' < /dev/rmt/0m
Regards,
naveej
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2005 07:14 PM
05-01-2005 07:14 PM
Re: untar
If the tar ball has absolute paths used, use gnu-tar (for example from the porting archive: http://hpux.its.tudelft.nl/hppd/hpux/Gnu/tar-1.15/) That can change absolute paths on extraction.
If you need to stick to what you have, you can setup a tiny `chroot` jail and extract to that: `mkdir /path/to/target`, copy needed binaries and the tar-file in there and `chroot` into there to untar.