- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- help needed for GNU tar....
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
10-21-2008 10:37 PM
10-21-2008 10:37 PM
i have installed gnu tar from
http://hpux.connect.org.uk/hppd/hpux/Development/Libraries/libiconv-1.12/
also i have installed the necessary dependencies lik gettext n libiconv...
also created a link lik tar -> /usr/local/bin/tar
but nw still m not able to use the functiona;ity of gnu tar of excluding directories when taking backup...
hw do i proceed ...????
hpux 11i v2..
16gb RAM
rx6600
root #/home >swlist -l file tar | grep bin
/usr/local/bin/rmt
/usr/local/bin/tar
tar 1.19 tar
root #/home >swlist -l product|grep -i libicon
Libiconv 1.6.1.9 Libiconv - Character set conversion library
libiconv 1.12 libiconv
root #/home >swlist -l product|grep -i gette
Gettext 0.10.39.9 GNU gettext NLS library
gettext 0.17 gettext
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2008 10:50 PM
10-21-2008 10:50 PM
Re: help needed for GNU tar....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2008 10:52 PM
10-21-2008 10:52 PM
Re: help needed for GNU tar....
Is there any space issue ? what's the error message you're getting ? can you post the error message here ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2008 10:52 PM
10-21-2008 10:52 PM
Re: help needed for GNU tar....
i got it....
it was d exclude option which i was luking for....:)
its wrkng for me nw ..thnxx very m,uch ....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2008 08:27 AM
10-22-2008 08:27 AM
Re: help needed for GNU tar....
> http://hpux.connect.org.uk/hppd/hpux/Development/Libraries/libiconv-1.12/
I must be easily confused. What does a
libiconv kit (or any of this) have to do with
GNU "tar"?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2008 10:57 AM
10-22-2008 10:57 AM
Re: help needed for GNU tar....
suggest you try it with the full path to the "gnu tar" executable to see if that works.
also, I typically rename it to "gtar", so that I "know" which one I'm running and don't mess with the hpux version of tar.
"which tar" or "whence tar" at the command prompt might be instructive as well
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-22-2008 12:46 PM
10-22-2008 12:46 PM
SolutionI normally build this sort of thing from the
sources, so I know how it was done. That
way, "make install" will normally put the
stuff under /usr/local. So, with GNU "tar"
in /usr/local/bin, I normally add a symbolic
link in /usr/local/bin:
gtar -> tar
Then, I make sure that /usr/local/bin is
_after_ the usual system directories on my
PATH. So, "gtar" works for me, too. Many
things are possible.
Renaming an executable can lead to confusion
when uninstalling, or when updating. An
uninstaller can't find the renamed file, and
a new version won't replace it. The symbolic
link should always point to the latest "tar"
there, if there is one.
(More links under /usr/local/man can also be
helpful, but I usually rely on "man -M".)