본문 바로가기
OS/Linux

perl telnet serialport install 하기

by darkdevilness 2015. 11. 27.
728x90

Perl Net::Telnet  을 인스톨하는 방법

su root

wget http://search.cpan.org/CPAN/authors/id/J/JR/JROGERS/Net-Telnet-3.04.tar.gz

tar xvfz Net-Telnet-3.04.tar.gz

cd Net-Telnet-3.04

perl Makefile.PL

make

make test

make install

 

 

windowns에서 인스톨하는 방법

cpan  force Net::Telnet       # force 는  강제적으로 인스톨 함

 

Perl Device::SerialPort 를 인스톨하는 방법

su root

wget http://search.cpan.org/CPAN/authors/id/C/CO/COOK/Device-SerialPort-1.04.tar.gz

tar xvfz Device-SerialPort-1.04.tar.gz

cd Device-SerialPort-1.04

perl Makefile.PL

make

make test

make install

 

 

windowns에서 인스톨하는 방법

cpan  force Win32::SerialPort      # force 는  강제적으로 인스톨 함

728x90

'OS > Linux' 카테고리의 다른 글

linux iperf V 2.0.9  (0) 2017.12.15
리눅스 인스톨 후 tools 설치  (0) 2016.01.10
unix 파일<-> dos 파일 전환(VIM)  (0) 2015.04.04
Window VIM 에서 ^M 제거하는 방법  (0) 2015.03.05
파일 디스크립터 dev/null>&null  (0) 2015.01.28