- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- SYS ADM: tar_assembly does not work
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
09-14-2005 07:16 AM
09-14-2005 07:16 AM
SYS ADM: tar_assembly does not work
I am having problems when I want to tar a assembly part file. The following is what I type and the message that is returned to me:
# tar_assembly beambox_support_stand.prt
Pack beambox_support_stand.prt into beambox_support_stand.tar
/usr/lib/pa20_64/dld.sl: Unable to find library 'libsyss.sl'.
What should I do?
Configuration info
Operating System - HP-UX
Version 11.00 64 bit
Thanks,
Eric Olivas
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2005 07:20 AM
09-14-2005 07:20 AM
Re: SYS ADM: tar_assembly does not work
It is probabily executing some command ported into your HPUX system, but may have not been built right or requires other support libraries for it to run.
Rod Hills
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2005 08:16 AM
09-14-2005 08:16 AM
Re: SYS ADM: tar_assembly does not work
file $(whence tar_assembly)
If it says something like text, awk text, etc, then you can list the first few lines to see if the writer put in an interpreter line such as #!/usr/bin/sh. If the interpreter line is sh or ksh (or bash) the run the tar_assembly program by typing in the name of the interpreter, then -x and then the name of the script as in:
sh -x tar_assembly beambox_support_stand.prt
That will now display all the steps in the script and point to the failure location.
If the tar_assembly file is a program, you'll have to find the programmer.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2005 08:30 AM
09-14-2005 08:30 AM
Re: SYS ADM: tar_assembly does not work
You need to investigate and debug the script.
Execute the script with -x option, to know where its gettin gproblem.
# sh -x tar_assembly commands..
Cheers,
Raj.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2005 08:46 AM
09-14-2005 08:46 AM
Re: SYS ADM: tar_assembly does not work
Thanks for all the suggestions. I was able to resolve the problem. The tar_assembly command is located and run in a UNIX sub-shell in Unigraphic.
Once again thanks,
Eric