다운로드 # ./configure 만약 에러 발생하면 configure: error: Package requirements (libsodium) were not met: No package 'libsodium' found =============================== curl -OL http://ftpmirror.gnu.org/autoconf/autoconf-2.69.tar.gz tar xzf autoconf-2.69.tar.gz cd autoconf-2.69 ./configure --prefix=/usr/local make sudo make install sudo ldconfig cd ../libsodium-master ./autogen.sh ./configure make sudo make ..
1. IUS Community Project의 리포지토리를 yum의 리포지토리에 추가$ yum install -y https://centos7.iuscommunity.org/ius-release.rpm 2. Python 3.6을 확인$ yum search python36 $ yum search python35 ← Python 3.5를 확인 3. Python 3.6을 설치$ yum install -y python36u python36u-libs python36u-devel python36u-pip $ python3.6 -V ← 설치 확인Python 3.6.0 $ which python3.6 ← 설치 장소 확인/usr/bin/python3.6 4. Alias 설정현재 python 커맨드는 2.7로 설정 되어..
quesadilla - 간단...
# 인증서 정보 확인 openssl x509 -noout -text -in TEST.CRT # 인증서 key 파일 패스워드 확인 openssl rsa -in TEST.KEY -out TEST.KEY -passin pass:'PASSWD' # 인증서 DER -> PEM 방식으로 변경 openssl x509 -in INPUT.CRT -inform DER -out OUTPUT.CRT -outform PEM # 인증서 pfx 파일로 변경(윈도우 용) openssl pkcs12 -export -in TEST.CRT -inkey TEST.KEY -out OUTPUT.PFX -passin pass:'PASSWD' -passout pass:'PASSWD'
#### 기본 설치 패키지 yum -y install cmake ncurses-devel ####mysql version 다운로드 후 압축풀기 tar zxvf mysql-boost-$VERSION.tar.gz #### CMAKE 세팅 cmake -DCMAKE_INSTALL_PREFIX=$PAT -DMYSQL_DATADIR=$DATA_PATH -DENABLED_LOCAL_INFILE=1 -DWITH_INNOBASE_STORAGE_ENGINE=1 -DMYSQL_UNIX_ADDR=/tmp/mysql.sock -DSYSCONFDIR=/etc -DDEFAULT_CHARSET=utf8 -DMYSQL_TCP_PORT=3306 -DWITH_EXTRA_CHARSETS=all -DDEFAULT_COLLATION=utf8_..
SUBDIRS에 하위 디렉토리 등록SUBDIRS = DIR1 DIR2 DIR3 DIR4 .... 뭔지 잘모름...PHONY: subdirs $(SUBDIRS) target: for DIRS in $(SUBDIRS); do \ $(MAKE) -C $$DIRS ;\ #여기서 DIRS에 $$ 두개붙여줘야 인식함 done clean: for DIRS in $(SUBDIRS); do \ $(MAKE) -C $$DIRS clean ; \ done