2018년 9월 9일

CentOS7 설치후 기본설정 #2(기본 패키지 설치)

1. 컴파일러 설치

?
001
002
yum -y install \
       gcc cpp gcc-c++ compat-gcc-34 gcc-gfortran flex
>>>>>> description
<패키지 설명>

2. 기타 라이브러리 설치

?
001
002
003
004
005
006
007
yum -y install \
       libjepg-devel libpng-devel freetype-devel \
       gd-devel libtermcap-devel ncurses-devel libxml2 \
       libxml2-devel libevent libevent-devel libtool \
       pcre-devel bzip2 bzip2-devel gmp gmp-devel wget \
       openssl openssl-devel mod_ssl \
       subversion subversion-devel

[참고사이트]
http://myblog.opendocs.co.kr/archives/100

댓글 없음:

댓글 쓰기

추천 게시물

php 로 챗GPT api 사용방법. 라이브러리 그딴거 없이 누구나 쉽게

진짜 최고로 간단하게 만들어 봤습니다. 나의 php소스코드 윗부분에 다음의 함수를 붙여넣는다.  API키만 내가 받은걸로 넣기. function fnGPTComment ( $memo ) {       $api_key = '나의 API키...