일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- httpd-info.conf
- python 3.5.10
- mod_unique_id
- MySQL 5.1.41
- jQuery
- epel repository
- httpd-dav.conf
- httpd 2.2.32
- MySQL
- httpd-vhosts.conf
- httpd-default.conf
- Node.js apache 연동
- CentOS 6
- unique_id
- CentOS 6.10
- Node.js 소스 설치
- httpd-autoindex.conf
- node.js
- Repository
- PHP 5.2.17 .ini
- Mod_Security 룰 셋
- vim color scheme
- apache 연동
- vimrc 옵션
- httpd.conf
- httpd-mpm.conf
- python 3.X 소스 설치
- CentOS
- PHP 5.2 .ini
- gcc update
- Today
- Total
목록분류 전체보기 (84)
곰시기's

Contents List 1. 가상머신 설정 1-1. 고정 IP 할당을 위한 게이트웨이 확인 1-2. 어댑터 설정 변경 1-3. 가상머신 저장소 / 네트워크 2. 운영체제 설치 2-1. 설치 시작 2-2. 설치 언어 선택 2-3. 날짜 & 시간 설정 2-4. 소프트웨어 선택 2-5. 설치대상 선택 2-6. 파티션 설정 2-7. Kdump 해제 2-8. 네트워크 설정 2-9. 계정 설정 1. 가상머신 설정 1-1. 고정 IP 할당을 위한 게이트웨이 확인 1) window key + R 2) cmd 3) ipconfig 1-2. 어댑터 설정 변경 1) VirtualBox Host-Only Network 우 클릭 속성 2) 인터넷 프로토콜 버전 4(TCP/IPv4) 선택 후 속성 3) 다음 IP 주소 사용 후..

Contents List 1. CentOS란? 2. ISO DownLoad Link 3. CentOS 7.9 설치 3-1. Virtual Box 호스트 키 설정 3-2. 가상 머신 생성 - 운영체제 선택 3-3. 가상 머신 생성 - 메모리 용량 / 하드 디스크 선택 3-4. 가상 머신 생성 - 하드 디스크 파일 종류 선택 1. CentOS란? Linux는 1991년 9월 17일 리누스 토르발스(Linus Torvalds)가 처음 출시한 Kernel에 기반을 둔 오픈 소스 유닉스 계열의 운영 체제로 GPL license 정책 하에 누구나 자유롭게 내려받아 사용할 수 있습니다. 또한 소스코드를 내려받아 자유로운 수정과 재배포가 가능한 소프트웨어입니다. 처음에는 Intel x86 아키텍처에 기반한 개인 컴퓨터..
function get_pdf_prop( $file ) { $f = fopen($file,'rb'); if( !$f ) return false; //Read the last 16KB fseek( $f, -16384, SEEK_END ); $s = fread( $f, 16384 ); //Extract cross-reference table and trailer if( !preg_match( "/xref[\r\n]+(.*)trailer(.*)startxref/s", $s, $a ) ) return false; $xref = $a[1]; $trailer = $a[2]; //Extract Info object number if( !preg_match( '/Info ([0-9]+) /', $trailer, $a ..
Ajax는 기본적으로 UTF-8로 작동하는데 이 때 서버가 EUC-KR일경우 넘겨받는 데이터가 깨질 수 있다. 이럴 때 "contentType: 'application/x-www-form-urlencoded; charset=euc-kr'"을 추가 해주면 정상적으로 값을 받아올 수 있다. $.ajax({ type: "post", url : "", data: frmData, contentType: 'application/x-www-form-urlencoded; charset=euc-kr', dataType:"json", success : function( data ) { console.log( data ); }, error: function( jqXHR, textStatus, errorThrown ) { c..