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-05-2006 07:56 AM
04-05-2006 07:56 AM
It looks like GNU tar is not the default "tar" in the path. Can you set your path to have gnutar in front of standard tar? If that doesn't work, try editing the secureftp installer and change the order of the PATH variable to reflect GNU tar's loaction first.
How do I do put gnutar in front of standard tar? OS is HPUX11.i.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2006 08:05 AM
04-05-2006 08:05 AM
SolutionYou can bypass the PATH changes.
tarpath=$(whence tar)
mv $tarpath $tarpath.arch
ls -s
What I am doing is finding the old tar, renaming it and putting a soft link from what was the old tar to the new tar.
This methodology may break tar scripts.
So
whence tar
echo $PATH
re-arrange the PATH variable, usually set in /etc/profile and or .profile to put the gnu tar in front of the old tar.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2006 08:10 AM
04-05-2006 08:10 AM
Re: GNU Tar
You modify your path statement in either /etc/PATH or in your local .profile so that the gnutar directory is listed before the directory that contains the HPUX tar (usually /bin)
If you are interested here is the link to download the HP wrapper add -in
http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=TCPWRAP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2006 08:27 AM
04-05-2006 08:27 AM
Re: GNU Tar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2006 09:23 AM
04-05-2006 09:23 AM
Re: GNU Tar
PATH=/usr/local/bin:$PATH:/sbin:/home/root
/usr/local/bin is where gnu tar is
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2006 10:26 AM
04-05-2006 10:26 AM
Re: GNU Tar
Don't forget to export the PATH variable as well............