- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: can anyone help me about perl issue ?
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
05-09-2005 11:38 PM
05-09-2005 11:38 PM
can anyone help me about perl issue ?
I have some problem with perl in HP-UX, our customer's server didn't have c compile, and there are no posix moudle with perl, Is anybody can upload POSIX.pm to me?
the os version is : HP-UX B.11.11
file name is : POSIX.pm
thank you very much.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2005 11:48 PM
05-09-2005 11:48 PM
Re: can anyone help me about perl issue ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2005 11:52 PM
05-09-2005 11:52 PM
Re: can anyone help me about perl issue ?
/opt/perl5/lib/5.6.1/PA-RISC2.0-thread/POSIX.pm
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2005 01:18 AM
05-10-2005 01:18 AM
Re: can anyone help me about perl issue ?
POSIX.pm is a CORE module for a long time, so it should be available. If it's not, you either have a very old perl (I even guest that you use perl4) or your installation is seriously injured.
try
# perl -v
on both systems.
They should match. You cannot install a 5.6.1 module on 5.8.x unless it is a pure perl module (and POSIX is NOT a pure perl module)
IF the system where POSIX is unavailable happens to say it's perl4.036, you just have to remove perl4 or change your $PATH to find the correct perl binary *before* this ancient perl version
HTH, Enjoy, Have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2005 01:23 AM
05-10-2005 01:23 AM
Re: can anyone help me about perl issue ?
pc09:/pro/3gl/CPAN/perl-current 117 > ./perl -Ilib utils/corelist -a POSIX
POSIX was first released with perl 5
5 undef
5.001 undef
5.002 1.00
5.00307 1.00
5.004 1.02
5.00405 1.02
5.005 1.02
5.00503 1.02
5.00504 1.02
5.006 1.03
5.006001 1.03
5.006002 1.03
5.007003 1.05
5.008 1.05
5.008001 1.06
5.008002 1.06
5.008003 1.07
5.008004 1.08
5.008005 1.08
5.008006 1.08
5.009 1.06
5.009001 1.07
5.009002 1.08
pc09:/pro/3gl/CPAN/perl-current 118 >
Enjoy, Have FUN! H.Merijn