Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re^4: Can Multiple perl versions coexist without effecting one another on Solaris?

by newperlmonkey (Novice)
on Sep 30, 2015 at 20:28 UTC ( [id://1143466]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Can Multiple perl versions coexist without effecting one another on Solaris?
in thread Can Multiple perl versions coexist without effecting one another on Solaris?

One followup question is that I have installed the current version of perl 5.22 on my windows and is there that I can just move all the dependent modules related .pm files to solaris server and place them in PERL5LIB location so that I can just use these modules as if they are installed on server?
  • Comment on Re^4: Can Multiple perl versions coexist without effecting one another on Solaris?

Replies are listed 'Best First'.
Re^5: Can Multiple perl versions coexist without effecting one another on Solaris?
by stevieb (Canon) on Oct 01, 2015 at 00:44 UTC

    Hey newperlmonkey,

    I can't conclusively answer this question as I don't have access to any Solaris boxes anymore. However, here are concerns I'd have: 1) line-endings (record separators) may be different and cause issues. 2) there may be other unknown problems between versions of perl on the different platforms that may cause issues.

    My suggestion is to take a dev box, copy over a simple module, and test it. If that works, move up to something more complex.

    Although I have a lot of experience working on numerous platforms, I must admit that I don't have much experience on transferring Perl things from one to another manually. I've always used CPAN, or in the realm of my own modules, just kind of force-installed manually (where necessary).

    Why don't you give it a try with a module and let us know? Recently I did some extraction and re-insertion with Data::Compare which is (as far as structure goes) pretty basic. Install that on one box, then try migrating it over manually. It auto-imports so it's easy to test. Here's an example of how to test it:

    use Data::Compare; print Compare( [1, 2], [1, 2] );

    -stevieb

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1143466]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (7)
As of 2024-04-23 08:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found