Perl On Linux
INSTALL ON LINUX O.S:
Open terminal and write the following commands to install Perl on linux operatin system.There are some commands to install the modules in perl.There are many type of module for different purposes.So it depends upon your recquirement that what type of module you want.
steps for perl installation
-> sh Configure -d
-> make
-> make test
-> make installsteps for Perl-DBI (package) use for database-> Perl Makefile.PL
-> make
-> make test
-> make install
steps for DBD-mysql (package) use for mysql
-> Perl Makefile.PL
-> make
-> make test
-> make install
Asterisk-perl (package)
-> Perl Makefile.PL
-> make
-> make test
-> make install
//////////////////COMPILE AND RUN PERL PROGRAM ON LINUX////////////////
->Open terminal and then write following command
####COMPILE PERL PROGRAM####
->perl filename.pl
#####RUN PERL PROGRAM########
->./filename.pl
-> sh Configure -d
-> make
-> make test
-> make installsteps for Perl-DBI (package) use for database-> Perl Makefile.PL
-> make
-> make test
-> make install
steps for DBD-mysql (package) use for mysql
-> Perl Makefile.PL
-> make
-> make test
-> make install
Asterisk-perl (package)
-> Perl Makefile.PL
-> make
-> make test
-> make install
//////////////////COMPILE AND RUN PERL PROGRAM ON LINUX////////////////
->Open terminal and then write following command
####COMPILE PERL PROGRAM####
->perl filename.pl
#####RUN PERL PROGRAM########
->./filename.pl
Comments
Post a Comment