Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

perl question...

Status
Not open for further replies.

sirrom

Technical User
Jul 11, 2001
80
GB
I need to install perl 5.8 onto a SunOS 5.7. I have downloaded and unpacked the files however I am finding the notes hard going.
Are there some simple steps / commands I can carry out to get it in. Please note I have never carried out anything like this before so I a little green.
Thanks in advance
[3eyes]
 
Here are the "step by step" instructions I was given when I first needed to install perl :-

 ftp software from p: drive to /tmp on server (remember execute a BINary transfer)
 log onto server as root
 cd /tmp
 gzip -d perl*
 tar xvf perl*
 cd perl* (directory created by tar command)
 rm -f config.sh Policy.sh
 sh Configure (cannot use the -de [default] option because we use the GNU gcc compiler)
(lots of interaction - basically, where possible, take the defaults)
 gmake (use GNU version rather than standard version of make)
 gmake test
(then, providing there are no errors)
 gmake install


I hope they help.

Ray
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top