반응형

Linux&Utils/CentOS(Rhel) 6

perl 이용시 Can't locate ExtUtils/MakeMaker.pm 에러

perl-CPAN과 perl-devel 이 설치안되어서 발생하는 사항. yum install -y perl-CPAN perl-devel 로 설치하면 됩니다. (yum repo server에 해당 모듈이 없다면 rpm 파일 다운로드 & rpm -ivh {파일이름}으로 설치하면 되긴하지만 dependencies도 하나하나 설치해줘야해서 웬만하면 yum repo에 관련 rpm파일들을 넣고 yum으로 설치하는것을 권장) centos 7 기준 rpm 파일 위치 : mirror.centos.org/centos/7/os/x86_64/Packages/ CentOS Mirror mirror.centos.org

인증서(CA:Certificate Authority)

* OPENSSL 사용 - private key 생성 openssl genrsa -aes256 -out test_20200312.key 2048 - public key 생성 openssl rsa -in test_20200312.key -out pbkey_20200312.crt -pubout -outform PEM openssl req -new -x509 -days 1825 -key test_20200312.key -out pbkey_20200312.crt - 인증서 정보 출력 openssl x509 -text -in pbkey_20200312.crt * ssh-keygen 사용 : 클라이언트가 만들어서 공개키를 서버에 공유 - 인증서 생성 : ssh-keygen -t rsa => 경로지정 => 비밀번호(..

OS-Compiler의 종류에 따른 옵션

오래된 자료지만 고전이 명작인듯. www.fortran-2000.com/ArnaudRecipes/sharedlib.html Using static and shared libraries across platforms I produced hereafter some information about shared libraries on different systems. However, this information is probably very sparse on details and may even not be up-to-date. Actually, keeping track of changes is nearly impossible. The definitive information usually comes from..

반응형