Shameless self pronotion follows PwelWatch
Greetings all, After reading this entire thread, I couldn't help but motice the _glaring_ omission of the most helpful tool for a *NIX newbie -- man,

man is your friend - not to be confused with "the" man, who is probably _not_ your friend. ;)

perldoc is also your friend -

~$ perldoc perl

Something else you will surely want to discover, is what shell you are using.

Almost all Linux distros supply bash as the default shell.

Personally, I find csh to be a real good choice - the first thing I change when I install Linux on any of my servers/workstations.

If memory serves, it's found as tcsh on Linux.

The reason I bring up your shell, is that it holds/comprises most of the ENVironment you work in.

This also affects your perl installation(s). So the first thing I'd do _before_ messing around with your/a perl installation, would be to discover what your default shell is.

Examine some of the others available. Decide which one is for you. _Then_ start on your perl project(s).

The shell ENVironment is _truly_ a pre-requisite to doing _anything_ on your fresh *NIX install - really!

If you're more comfortable in a web browser, than at the terminal (not a good sign if you're on a *NIX boxen), I've cobbled up an online MANual interface in perl. It allows anyone to lookup system man pages, as well as any perl man (pod) pages, and modules. Try this one first:

http://www.perlwatch.net/man/?query=shell

After that, you can enter things like csh bash perl, or even Pod::Parser - _yes_ with the colons. :)

Then you can try the same at your terminal. :)

Personally, I _would_ choose to install a copy of perl somewhere within your $HOME directory. But _do_ read up on your shell environment beforehand. It will ultimately make your final decision, and final experience _much_ smoother/happier.

HTH, and best wishes.

--Chris


In reply to Re^2: path to perl on umbuntu by use perl::always
in thread path to perl on umbuntu by Anonymous Monk

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.