- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Compiling Perl
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-11-2006 01:46 AM
10-11-2006 01:46 AM
Compiling Perl
The difference is that on the root .profile the following lines exist and would like know if this would make the difference on compiling perl.
PS1="`hostname`: \$PWD =>"
alias xme='xterm -fg White -bg Navy -display xxx.xx.x.xx:0.0 &'
alias viblog='vi /var/sam/log/br_log'
alias vislog='vi /var/adm/syslog/syslog.log'
alias vimlog='vi /var/adm/syslog/mail.log'
alias viblog='vi /var/sam/log/br_log/'
alias rtmail='vi /var/mail/root'
#Begin Temporary Warehouse variables - remove after last migration
export WHHOME=/opt/taurus/whii/@
export WHSECLIB=libsec.1
export WHTRUST=1
. /opt/taurus/bin/conv.env
. /usr/local/bin/oracle_setup
#End Temporary Warehouse variables - remove after last migration
Thanks,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2006 01:52 AM
10-11-2006 01:52 AM
Re: Compiling Perl
What problem/error are you getting during compile?
Is there a specific reason you are compiling perl? HP provides a pre-built depot so you don't have to pull your hair out:
http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=PERL
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2006 02:08 AM
10-11-2006 02:08 AM
Re: Compiling Perl
# Warehouse Conversion Environment setup script
export REMOTE_3000=master
export REMOTE_USER="MGR.AMINUM/ORBLIND,DATA"
export CONV_HOME=/opt/taurus
export CONV_VERS=11.01
export SQLPATH=$CONV_HOME/bin
export PATH=$CONV_HOME/bin:$PATH
export AMISYS_USERNAME=amiown
export AMISYS_PASSWORD=advance
export AVMED_USERNAME=dbo
export AVMED_PASSWORD=advance
miaux07: / =>more /usr/local/bin/oracle_setup
# This is a file that is set up by DBA Shannon Liu on Feb. 2000
# to standardize the setup of oracle env vars.
# Please do not change anything without contacting Shannon @20101.
#
# Define Oracle owner
#
ORACLE_OWNER=oracle;export ORACLE_OWNER
#
# Define Oracle Locations
#
ORACLE_BASE=/app/oracle;export ORACLE_BASE
ORACLE_HOME=$ORACLE_BASE/product/10.2.0;export ORACLE_HOME
ORACLE_SID=amisysp;export ORACLE_SID
ORACLE_TERM=vt100;export ORACLE_TERM
#
# Define display to run OUI
#
DISPLAY=xxx.x.x.xx:0.0
# Put all possible library environment variables
#
LD_LIBRARY_PATH=$ORACLE_HOME/lib;export LD_LIBRARY_PATH
LIBPATH=$ORACLE_HOME/lib;export LIBPATH
SHLIB_PATH=$ORACLE_HOME/lib;export SHLIB_PATH
#
# usefull aliases
#
alias oradmin='cd $ORACLE_BASE/admin/$ORACLE_SID/'
alias orahome='cd $ORACLE_HOME'
# set up nls_lang if diff from default
NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P1
if [ $( echo $PATH|grep -c $ORACLE_HOME ) = 0 ];then
PATH=$ORACLE_HOME/bin:$PATH
fi
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2006 02:12 AM
10-11-2006 02:12 AM
Re: Compiling Perl
LD_LIBRARY_PATH=$ORACLE_HOME/lib;export LD_LIBRARY_PATH
LIBPATH=$ORACLE_HOME/lib;export LIBPATH
SHLIB_PATH=$ORACLE_HOME/lib;export SHLIB_PATH
Without knowing the exact error you're getting during compile there's no way of knowing if this is even the right direction, though.
Again, do you NEED to compile perl? Why not just install the depot?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2006 02:19 AM
10-11-2006 02:19 AM
Re: Compiling Perl
Thanks,