Re: Exceptions in IPC::Open2
[p5sagit/p5-mst-13.2.git] / pod / perlfaq2.pod
CommitLineData
68dc0745 1=head1 NAME
2
46fc3d4c 3perlfaq2 - Obtaining and Learning about Perl ($Revision: 1.16 $, $Date: 1997/04/23 18:04:09 $)
68dc0745 4
5=head1 DESCRIPTION
6
7This section of the FAQ answers questions about where to find
8source and documentation for Perl, support and training, and
9related matters.
10
11=head2 What machines support Perl? Where do I get it?
12
13The standard release of Perl (the one maintained by the perl
14development team) is distributed only in source code form. You can
15find this at http://www.perl.com/CPAN/src/latest.tar.gz, which is a
16gzipped archive in POSIX tar format. This source builds with no
17porting whatsoever on most Unix systems (Perl's native environment),
2d7a9237 18as well as Windows NT, Plan 9, VMS, QNX, OS/2, and the Amiga.
19
20Binary distributions for various platforms can be found
21http://www.perl.com/CPAN/ports/ directory. Some of these ports (especially
22the ones that are not part of the standard sources) may behave differently
23than what is documented in the standard source documentation. These
24differences can be either positive (e.g. extensions for the features of the
25particular platform that are not supported in the source release of perl)
26or negative (e.g. might be based upon a less current source release of perl).
27
28A useful FAQ for Win32 Perl users is:
68dc0745 29http://www.endcontsw.com/people/evangelo/Perl_for_Win32_FAQ.html
2d7a9237 30[This FAQ is seriously outdated as of Jan 1998--it is only relevant to
31the perl that ActiveState distributes, especially where it describes
32various inadequacies and differences with the standard perl extension
33build support.]
68dc0745 34
35=head2 How can I get a binary version of Perl?
36
37If you don't have a C compiler because for whatever reasons your
38vendor did not include one with your system, the best thing to do is
39grab a binary version of gcc from the net and use that to compile perl
40with. CPAN only has binaries for systems that are terribly hard to
41get free compilers for, not for Unix systems.
42
3fe9a6f1 43Your first stop should be http://www.perl.com/CPAN/ports to see what
44information is already available. A simple installation guide for
45MS-DOS is available at http://www.cs.ruu.nl/~piet/perl5dos.html , and
46similarly for Windows 3.1 at http://www.cs.ruu.nl/~piet/perlwin3.html
47.
48
49=head2 I don't have a C compiler on my system. How can I compile perl?
50
51Since you don't have a C compiler, you're doomed and your vendor
52should be sacrificed to the Sun gods. But that doesn't help you.
53
54What you need to do is get a binary version of gcc for your system
55first. Consult the Usenet FAQs for your operating system for
56information on where to get such a binary version.
57
68dc0745 58=head2 I copied the Perl binary from one machine to another, but scripts don't work.
59
60That's probably because you forgot libraries, or library paths differ.
61You really should build the whole distribution on the machine it will
62eventually live on, and then type C<make install>. Most other
63approaches are doomed to failure.
64
65One simple way to check that things are in the right place is to print out
46fc3d4c 66the hard-coded @INC which perl is looking for.
68dc0745 67
68 perl -e 'print join("\n",@INC)'
69
70If this command lists any paths which don't exist on your system, then you
71may need to move the appropriate libraries to these locations, or create
72symlinks, aliases, or shortcuts appropriately.
73
3fe9a6f1 74You might also want to check out L<perlfaq8/"How do I keep my own
75module/library directory?">.
76
68dc0745 77=head2 I grabbed the sources and tried to compile but gdbm/dynamic loading/malloc/linking/... failed. How do I make it work?
78
79Read the F<INSTALL> file, which is part of the source distribution.
46fc3d4c 80It describes in detail how to cope with most idiosyncracies that the
68dc0745 81Configure script can't work around for any given system or
82architecture.
83
84=head2 What modules and extensions are available for Perl? What is CPAN? What does CPAN/src/... mean?
85
86CPAN stands for Comprehensive Perl Archive Network, a huge archive
87replicated on dozens of machines all over the world. CPAN contains
46fc3d4c 88source code, non-native ports, documentation, scripts, and many
68dc0745 89third-party modules and extensions, designed for everything from
90commercial database interfaces to keyboard/screen control to web
91walking and CGI scripts. The master machine for CPAN is
92ftp://ftp.funet.fi/pub/languages/perl/CPAN/, but you can use the
93address http://www.perl.com/CPAN/CPAN.html to fetch a copy from a
94"site near you". See http://www.perl.com/CPAN (without a slash at the
95end) for how this process works.
96
97CPAN/path/... is a naming convention for files available on CPAN
98sites. CPAN indicates the base directory of a CPAN mirror, and the
99rest of the path is the path from that directory to the file. For
100instance, if you're using ftp://ftp.funet.fi/pub/languages/perl/CPAN
101as your CPAN site, the file CPAN/misc/japh file is downloadable as
102ftp://ftp.funet.fi/pub/languages/perl/CPAN/misc/japh .
103
104Considering that there are hundreds of existing modules in the
105archive, one probably exists to do nearly anything you can think of.
106Current categories under CPAN/modules/by-category/ include perl core
107modules; development support; operating system interfaces; networking,
108devices, and interprocess communication; data type utilities; database
109interfaces; user interfaces; interfaces to other languages; filenames,
110file systems, and file locking; internationalization and locale; world
111wide web support; server and daemon utilities; archiving and
112compression; image manipulation; mail and news; control flow
113utilities; filehandle and I/O; Microsoft Windows modules; and
114miscellaneous modules.
115
116=head2 Is there an ISO or ANSI certified version of Perl?
117
118Certainly not. Larry expects that he'll be certified before Perl is.
119
120=head2 Where can I get information on Perl?
121
122The complete Perl documentation is available with the perl
123distribution. If you have perl installed locally, you probably have
124the documentation installed as well: type C<man perl> if you're on a
125system resembling Unix. This will lead you to other important man
126pages. If you're not on a Unix system, access to the documentation
127will be different; for example, it might be only in HTML format. But
128all proper perl installations have fully-accessible documentation.
129
130You might also try C<perldoc perl> in case your system doesn't
131have a proper man command, or it's been misinstalled. If that doesn't
132work, try looking in /usr/local/lib/perl5/pod for documentation.
133
134If all else fails, consult the CPAN/doc directory, which contains the
135complete documentation in various formats, including native pod,
136troff, html, and plain text. There's also a web page at
137http://www.perl.com/perl/info/documentation.html that might help.
138
139It's also worth noting that there's a PDF version of the complete
140documentation for perl available in the CPAN/authors/id/BMIDD
141directory.
142
143Many good books have been written about Perl -- see the section below
144for more details.
145
146=head2 What are the Perl newsgroups on USENET? Where do I post questions?
147
148The now defunct comp.lang.perl newsgroup has been superseded by the
149following groups:
150
151 comp.lang.perl.announce Moderated announcement group
152 comp.lang.perl.misc Very busy group about Perl in general
153 comp.lang.perl.modules Use and development of Perl modules
154 comp.lang.perl.tk Using Tk (and X) from Perl
155
156 comp.infosystems.www.authoring.cgi Writing CGI scripts for the Web.
157
158There is also USENET gateway to the mailing list used by the crack
159Perl development team (perl5-porters) at
160news://genetics.upenn.edu/perl.porters-gw/ .
161
162=head2 Where should I post source code?
163
164You should post source code to whichever group is most appropriate,
165but feel free to cross-post to comp.lang.perl.misc. If you want to
166cross-post to alt.sources, please make sure it follows their posting
167standards, including setting the Followup-To header line to NOT
168include alt.sources; see their FAQ for details.
169
170=head2 Perl Books
171
7b8d334a 172A number of books on Perl and/or CGI programming are available. A few of
68dc0745 173these are good, some are ok, but many aren't worth your money. Tom
174Christiansen maintains a list of these books, some with extensive
175reviews, at http://www.perl.com/perl/critiques/index.html.
176
177The incontestably definitive reference book on Perl, written by the
178creator of Perl and his apostles, is now in its second edition and
179fourth printing.
180
181 Programming Perl (the "Camel Book"):
182 Authors: Larry Wall, Tom Christiansen, and Randal Schwartz
183 ISBN 1-56592-149-6 (English)
184 ISBN 4-89052-384-7 (Japanese)
185 (French and German translations in progress)
186
187Note that O'Reilly books are color-coded: turquoise (some would call
188it teal) covers indicate perl5 coverage, while magenta (some would
189call it pink) covers indicate perl4 only. Check the cover color
190before you buy!
191
192What follows is a list of the books that the FAQ authors found personally
193useful. Your mileage may (but, we hope, probably won't) vary.
194
46fc3d4c 195If you're already a hard-core systems programmer, then the Camel Book
68dc0745 196just might suffice for you to learn Perl from. But if you're not,
197check out the "Llama Book". It currently doesn't cover perl5, but the
1982nd edition is nearly done and should be out by summer 97:
199
200 Learning Perl (the Llama Book):
201 Author: Randal Schwartz, with intro by Larry Wall
202 ISBN 1-56592-042-2 (English)
203 ISBN 4-89502-678-1 (Japanese)
204 ISBN 2-84177-005-2 (French)
205 ISBN 3-930673-08-8 (German)
206
207Another stand-out book in the turquoise O'Reilly Perl line is the "Hip
208Owls" book. It covers regular expressions inside and out, with quite a
209bit devoted exclusively to Perl:
210
211 Mastering Regular Expressions (the Cute Owls Book):
212 Author: Jeffrey Friedl
213 ISBN 1-56592-257-3
214
215You can order any of these books from O'Reilly & Associates,
2161-800-998-9938. Local/overseas is 1-707-829-0515. If you can locate
217an O'Reilly order form, you can also fax to 1-707-829-0104. See
218http://www.ora.com/ on the Web.
219
220Recommended Perl books that are not from O'Reilly are the following:
221
222 Cross-Platform Perl, (for Unix and Windows NT)
223 Author: Eric F. Johnson
224 ISBN: 1-55851-483-X
225
226 How to Set up and Maintain a World Wide Web Site, (2nd edition)
227 Author: Lincoln Stein, M.D., Ph.D.
228 ISBN: 0-201-63462-7
229
230 CGI Programming in C & Perl,
231 Author: Thomas Boutell
232 ISBN: 0-201-42219-0
233
234Note that some of these address specific application areas (e.g. the
235Web) and are not general-purpose programming books.
236
237=head2 Perl in Magazines
238
239The Perl Journal is the first and only magazine dedicated to Perl.
240It is published (on paper, not online) quarterly by Jon Orwant
241(orwant@tpj.com), editor. Subscription information is at http://tpj.com
242or via email to subscriptions@tpj.com.
243
3fe9a6f1 244Beyond this, two other magazines that frequently carry high-quality
245articles on Perl are Web Techniques (see
246http://www.webtechniques.com/) and Unix Review
247(http://www.unixreview.com/). Randal Schwartz's Web Technique's
248columns are available on the web at
249http://www.stonehenge.com/merlyn/WebTechniques/ .
68dc0745 250
251=head2 Perl on the Net: FTP and WWW Access
252
253To get the best (and possibly cheapest) performance, pick a site from
254the list below and use it to grab the complete list of mirror sites.
3fe9a6f1 255From there you can find the quickest site for you. Remember, the
68dc0745 256following list is I<not> the complete list of CPAN mirrors.
257
258 http://www.perl.com/CPAN (redirects to another mirror)
259 http://www.perl.org/CPAN
260 ftp://ftp.funet.fi/pub/languages/perl/CPAN/
261 http://www.cs.ruu.nl/pub/PERL/CPAN/
262 ftp://ftp.cs.colorado.edu/pub/perl/CPAN/
263
46fc3d4c 264http:/www.oasis.leo.org/perl/ has, amongst other things, source to
265versions 1 through 5 of Perl.
266
68dc0745 267=head2 What mailing lists are there for perl?
268
269Most of the major modules (tk, CGI, libwww-perl) have their own
270mailing lists. Consult the documentation that came with the module for
271subscription information. The following are a list of mailing lists
272related to perl itself.
273
274If you subscribe to a mailing list, it behooves you to know how to
275unsubscribe from it. Strident pleas to the list itself to get you off
276will not be favorably received.
277
278=over 4
279
280=item MacPerl
281
282There is a mailing list for discussing Macintosh Perl. Contact
283"mac-perl-request@iis.ee.ethz.ch".
284
285Also see Matthias Neeracher's (the creator and maintainer of MacPerl)
46fc3d4c 286webpage at http://www.iis.ee.ethz.ch/~neeri/macintosh/perl.html for
68dc0745 287many links to interesting MacPerl sites, and the applications/MPW
288tools, precompiled.
289
290=item Perl5-Porters
291
292The core development team have a mailing list for discussing fixes and
293changes to the language. Send mail to
294"perl5-porters-request@perl.org" with help in the body of the message
295for information on subscribing.
296
297=item NTPerl
298
299This list is used to discuss issues involving Win32 Perl 5 (Windows NT
300and Win95). Subscribe by emailing ListManager@ActiveWare.com with the
301message body:
302
303 subscribe Perl-Win32-Users
304
305The list software, also written in perl, will automatically determine
306your address, and subscribe you automatically. To unsubscribe, email
307the following in the message body to the same address like so:
308
309 unsubscribe Perl-Win32-Users
310
311You can also check http://www.activeware.com/ and select "Mailing Lists"
312to join or leave this list.
313
314=item Perl-Packrats
315
316Discussion related to archiving of perl materials, particularly the
7b8d334a 317Comprehensive Perl Archive Network (CPAN). Subscribe by emailing
68dc0745 318majordomo@cis.ufl.edu:
319
320 subscribe perl-packrats
321
322The list software, also written in perl, will automatically determine
323your address, and subscribe you automatically. To unsubscribe, simple
324prepend the same command with an "un", and mail to the same address
325like so:
326
327 unsubscribe perl-packrats
328
329=back
330
331=head2 Archives of comp.lang.perl.misc
332
333Have you tried Deja News or Alta Vista?
334
335ftp.cis.ufl.edu:/pub/perl/comp.lang.perl.*/monthly has an almost
336complete collection dating back to 12/89 (missing 08/91 through
33712/93). They are kept as one large file for each month.
338
339You'll probably want more a sophisticated query and retrieval mechanism
340than a file listing, preferably one that allows you to retrieve
341articles using a fast-access indices, keyed on at least author, date,
342subject, thread (as in "trn") and probably keywords. The best
343solution the FAQ authors know of is the MH pick command, but it is
344very slow to select on 18000 articles.
345
346If you have, or know where can be found, the missing sections, please
347let perlfaq-suggestions@perl.com know.
348
349=head2 Perl Training
350
351While some large training companies offer their own courses on Perl,
352you may prefer to contact individuals near and dear to the heart of
353Perl development. Two well-known members of the Perl development team
354who offer such things are Tom Christiansen <perl-classes@perl.com>
355and Randal Schwartz <perl-training-info@stonehenge.com>, plus their
356respective minions, who offer a variety of professional tutorials
357and seminars on Perl. These courses include large public seminars,
358private corporate training, and fly-ins to Colorado and Oregon.
359See http://www.perl.com/perl/info/training.html for more details.
360
361=head2 Where can I buy a commercial version of Perl?
362
363In a sense, Perl already I<is> commercial software: It has a licence
364that you can grab and carefully read to your manager. It is
365distributed in releases and comes in well-defined packages. There is a
366very large user community and an extensive literature. The
367comp.lang.perl.* newsgroups and several of the mailing lists provide
368free answers to your questions in near real-time. Perl has
369traditionally been supported by Larry, dozens of software designers
370and developers, and thousands of programmers, all working for free
371to create a useful thing to make life better for everyone.
372
373However, these answers may not suffice for managers who require a
374purchase order from a company whom they can sue should anything go
375wrong. Or maybe they need very serious hand-holding and contractual
376obligations. Shrink-wrapped CDs with perl on them are available from
377several sources if that will help.
378
379Or you can purchase a real support contract. Although Cygnus historically
380provided this service, they no longer sell support contracts for Perl.
381Instead, the Paul Ingram Group will be taking up the slack through The
382Perl Clinic. The following is a commercial from them:
383
384"Do you need professional support for Perl and/or Oraperl? Do you need
385a support contract with defined levels of service? Do you want to pay
386only for what you need?
387
388"The Paul Ingram Group has provided quality software development and
389support services to some of the world's largest corporations for ten
390years. We are now offering the same quality support services for Perl
391at The Perl Clinic. This service is led by Tim Bunce, an active perl
392porter since 1994 and well known as the author and maintainer of the
393DBI, DBD::Oracle, and Oraperl modules and author/co-maintainer of The
394Perl 5 Module List. We also offer Oracle users support for Perl5
395Oraperl and related modules (which Oracle is planning to ship as part
396of Oracle Web Server 3). 20% of the profit from our Perl support work
397will be donated to The Perl Institute."
398
399For more information, contact the The Perl Clinic:
400
401 Tel: +44 1483 424424
402 Fax: +44 1483 419419
403 Web: http://www.perl.co.uk/
404 Email: perl-support-info@perl.co.uk or Tim.Bunce@ig.co.uk
405
406=head2 Where do I send bug reports?
407
408If you are reporting a bug in the perl interpreter or the modules
409shipped with perl, use the perlbug program in the perl distribution or
410email your report to perlbug@perl.com.
411
46fc3d4c 412If you are posting a bug with a non-standard port (see the answer to
68dc0745 413"What platforms is Perl available for?"), a binary distribution, or a
46fc3d4c 414non-standard module (such as Tk, CGI, etc), then please see the
68dc0745 415documentation that came with it to determine the correct place to post
416bugs.
417
46fc3d4c 418Read the perlbug man page (perl5.004 or later) for more information.
68dc0745 419
420=head2 What is perl.com? perl.org? The Perl Institute?
421
422perl.org is the official vehicle for The Perl Institute. The motto of
423TPI is "helping people help Perl help people" (or something like
46fc3d4c 424that). It's a non-profit organization supporting development,
68dc0745 425documentation, and dissemination of perl. Current directors of TPI
426include Larry Wall, Tom Christiansen, and Randal Schwartz, whom you
427may have heard of somewhere else around here.
428
429The perl.com domain is Tom Christiansen's domain. He created it as a
430public service long before perl.org came about. It's the original PBS
431of the Perl world, a clearinghouse for information about all things
46fc3d4c 432Perlian, accepting no paid advertisements, glossy gifs, or (gasp!)
433java applets on its pages.
68dc0745 434
435=head2 How do I learn about object-oriented Perl programming?
436
437L<perltoot> (distributed with 5.004 or later) is a good place to start.
438Also, L<perlobj>, L<perlref>, and L<perlmod> are useful references,
439while L<perlbot> has some excellent tips and tricks.
440
441=head1 AUTHOR AND COPYRIGHT
442
443Copyright (c) 1997 Tom Christiansen and Nathan Torkington.
444All rights reserved. See L<perlfaq> for distribution information.