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


In reply to Re^5: Can Multiple perl versions coexist without effecting one another on Solaris? by stevieb
in thread Can Multiple perl versions coexist without effecting one another on Solaris? by newperlmonkey

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.