본문 바로가기

Server

(15)
Intel Server Board S3420GPC Network Card not found 해결 In my home lab I have a Intel S3420GPLC motherboard with Intel Xeon X3430.Intel S3420GPLC is a pretty good motherboard. The motherboard has 2 on-board network interface cards (Intel 82574L & Intel 82578DM). The Intel NIC 82574L along with the onboard SATA controller is on the VMware HCL. So basically VMware ESXi 4.1 installs without any problems. However the Intel NIC 82578DM is an unsupported o..
ESXi란? (무료 vSphere) 해적판 vSphere을 알아보다가 ESXi에 대해서 찾아보게 되었다. ESXi는 vSphere 제품군의 일부로, 제한적으로 무료로 사용할 수 있다. 아래 블로그 참고!http://blog.pasion.kr/what-is-esxi/
Database, Table 생성 아주 기초적인 내용이지만 다시한번 포스팅합니다. mysql -u(계정) -p (엔터입력)Password: Welcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id is 4382Server version: 5.5.44 MySQL Community Server (GPL) by Remi Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of thei..
centos 6.x snmp.conf 예제 ################################################################################# snmpd.conf:# An example configuration file for configuring the ucd-snmp snmpd agent.################################################################################## This file is intended to only be as a starting point. Many more# configuration directives exist than are mentioned in this file. For # full details, ..
리눅스/유닉스/OSX 파일 확장자 변경 디렉토리 내 확장자명을 변경하고자 할 때, 확장자가 없는 파일에 확장자를 붙이고자 할때 ! 윈도우 생각하고 mv * *.ext 식으로 입력하면 오류! 아래와 같이 for f in *; do mv ./"$f" "${f%}.apk"; done 명령어 하나로? 변경완료 !! f29b606029c58014177c72b92623443d0be0cd81.apkf2cfe9deb7de73ae91cdbbee5f51cd7118349298.apkf3066995321f4ed4e36e55e0f40536c66d9c982c.apkf3363701e331037223f3cbbf874a25afb1d1e970.apkf63264d95e8cc195d84ae3c8e7fc6d8020412e15.apkf6f0e5f2d90302fdda017ee9a3f..
Upload Directory Exec Control 일반 파일이 업로드 되는 업로드 디렉터리에는 Server-Side-Script가 실행될 이유가 없다. 실행권한이 있을 경우 공격자는 웹쉘 업로드를 통해 공격이 가능하게 된다. 실행권한을 제거하거나, PHP로 Parsing되지 않게 처리하는 법 등 다양하나, 아래 몇가지만 소개한다. ※ apache FileInfo 인자를 이용한 방법[root@ns1 /home/test]# cat > .htaccess php_value engine offEOF[root@ns1 /home/test]# chmod 644 .htaccess apache RemoveType 인자를 이용한 방법 RemoveType .html .html .php .php3 ※ Files 지시자를 이용한 방법 Forcetype text/html ※ Di..
문자열 인코딩 명령어 'iconv' 인코딩을 변환해주는 명령어인 iconv 사용법은 많이 나와있으나, curl을 통해 받아온 페이지를 인코딩하는 법은? 파이프라인을 이용해서 결과값을 인코딩해주면 되겠지요? curl 'http://www.test.ac.kr/uni.aspx?idx=178' | iconv -c -f euc-kr -t utf-8 그럼 정상적으로 한글이 출력되는것을 볼 수 있습니다. 관련사이트 바로가기관련사이트 바로가기