Posts

Showing posts from June, 2016

How to install Telnet.pm for Perl ((revision 5 version 16 subversion 3)

How to install Telnet.pm   for Perl ((revision 5 version 16 subversion 3) OS: Centos - CentOS Linux release 7.2.1511 (Core) 1. Downlaod Net-Telnet-3.04.tar.gz  from http://search.cpan.org/~jrogers/Net-Telnet-3.04/ 2. Do the following steps as a root user # yum update # gunzip Net-Telnet-3.04.tar.gz # tar -xvf Net-Telnet-3.04.tar # cd Net-Telnet-3.04/ # yum install perl-ExtUtils-MakeMaker -y # perl Makefile.PL INSTALLMAN1DIR=none INSTALLMAN3DIR=none # make # make test # make install ### Install xml parser simple.pm # yum install perl-XML-Simple Bingo!! ----------------Console Logs------------------ [root@centos Net-Telnet-3.04]# perl Makefile.PL INSTALLMAN1DIR=none INSTALLMAN3DIR=none Writing Makefile for Net::Telnet [root@centos Net-Telnet-3.04]# make Skip blib/lib/Net/Telnet.pm (unchanged) [root@centos Net-Telnet-3.04]# make test PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib

Vmplayer5.1 (32-bit) on Ubuntu14.04 LTS 32-bit!!

Image
How to install Vmplayer (VMware-Player-5.0.4-1945795.i386.bundle) on Ubuntu 14.04 (Kernel Version 3.13.0-83-generic) ?? 1. Download vmplayer 5.0.4 2. chmod +x VMware-Player-5.0.4-1945795.i386.bundle # ./VMware-Player-5.0.4-1945795.i386.bundle Follow the on-screen instructions. Installation should be completed succefully. # vmplayer It should fail while compiling module (vmnet). Dont panic, follow below steps to fix this up and run the vmplayer successfully.   $ curl http://pastie.org/pastes/8672356/download -o /tmp/vmware-netfilter.patch $ cd /usr/lib/vmware/modules/source # tar -xvf vmnet.tar # patch -p0 -i /tmp/vmware-netfilter.patch # tar -cf vmnet.tar vmnet-only # rm -r vmnet-only # vmware-modconfig --console --install-all   Now run the "vmplayer" again as a root user #vmplayer This time vmnet module should compiled successfully and the vmplayer console should open up. Bingo!! :)