- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Perl Installation on Unix and Linux Platform
Here are the simple steps to install Perl on Unix/Linux machine.
Open a Web browser and go to https://www.perl.org/get.html.
Follow the link to download the zipped source code available for Unix/Linux.
Download the perl-5.x.y.tar.gz file and issue the following commands at $ prompt.
$tar -xzf perl-5.x.y.tar.gz $cd perl-5.x.y $./Configure -de $make $make test $make install
NOTE − Here $ is a Unix prompt where you type your command, so make sure you are not typing $ while typing the above-mentioned commands.
This will install Perl in a standard location /usr/local/bin and its libraries are installed in /usr/local/lib/perlXX, where XX is the version of Perl that you are using.
It will take a while to compile the source code after issuing the make command. Once the installation is done, you can issue Perl -v command at $ prompt to check Perl installation. If everything is fine, then it will display a message as we have shown above.
- Related Articles
- Perl Installation on Windows Platform
- Perl Installation on Macintosh Platform
- Init process on UNIX and Linux systems
- Downgrading Binary and Package-based Installations on Unix/Linux
- Difference between Linux and Unix
- Installing MySQL on Unix/Linux Using Generic Binaries
- Upgrading MySQL Binary or Package-based Installations on Unix/Linux
- nginx ssl certificate installation in linux
- What are the calling conventions for UNIX & Linux system calls on i386 and x86-64
- What are the differences between Unix and Linux Operating System?
- Accessing The Unix/Linux password database (pwd)
- Linux and Unix Test Disk I/O Performance with DD Command
- What are Named Pipes or FIFO in Linux/Unix systems?
- How to change file or directory permission in Linux/Unix?
- Introduction and Installation of Nightmare.js
