- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Batille: Error Could not load the 'Curses.pm' inte...
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-22-2003 10:49 AM
04-22-2003 10:49 AM
root@pegasus:/opt/sec_mgmt/bastille/bin # ./bastille
NOTE: $DISPLAY not set. Attempting Curses interface.
NOTE: Using Curses user interface module.
NOTE: Only displaying questions relevant to the current configuration.
ERROR: Could not load the 'Curses.pm' interface module.
This may be due to an invalid $DISPLAY setting,
or the module not being visible to Perl.
I am running this from command line, how would I go about rendering a fix?
-karlski
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2003 10:55 AM
04-22-2003 10:55 AM
Re: Batille: Error Could not load the 'Curses.pm' interface module.
Here is a free version HP supports.
Perl which the above needs.
http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=PERL
To reinstall just use the command line swinstall -x reinstall=true -s /location_of_depot \*
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-22-2003 11:03 AM
04-22-2003 11:03 AM
Re: Batille: Error Could not load the 'Curses.pm' interface module.
-karlski
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2003 11:17 AM
04-22-2003 11:17 AM
SolutionTo tell if a module is available on your system, try the following:
perl -M
where
If you do have it, it will return nothing.
In your case, try
perl -MCurses -e 1
If it barfs, then you either need to install the module in your current perl distribution (you can get it from CPAN, www.cpan.org) or install the HP-approved Perl depot that was referenced in an earlier message.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2003 11:28 AM
04-22-2003 11:28 AM
Re: Batille: Error Could not load the 'Curses.pm' interface module.
Any reason why you couldn't just set your DISPLAY & run the GUI?
If you're running it locally:
export DISPLAY=localhost:0.0
If you're running remotely:
export DISPLAY=xxx.xxx.xxx.xxx:0.0
Of course use your workstation IP....
Rgds,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-22-2003 11:34 AM
04-22-2003 11:34 AM
Re: Batille: Error Could not load the 'Curses.pm' interface module.
I'll go look for that module on cpan, is there a command line to add it to perl?
I have perl5.6.1.E for 11.0 PA-RISC. : )
-karlski