admin 2015.09.01 INTEL R1304 LINUX LAN DRIVER ( NETWORK DRIVER) CENTOS 5.5 버전 이하에서는 LAN CARD 드라이버가 인식되지 않는 경향이 있다 이때는 컴파일을 통해서 해당 드라이버를 인식시키면 된다 우선 해당 파일을 압축을 풀고 컴파일 진행 8949143855.zip unzip intel-lan_linux_v19.1.zip tar xvfz intel-lan_linux_v19.1.tar.gz cd drivers tar xvfz e1000e-3.0.4.tar.gz cd e1000e-3.0.4/src make install modprobe e000e init 6 (리부팅) Read More..
+ admin 2015.07.16 php zip 설치 (ziparchive php extension) 워드 프레스를 이용하거나 다른 서비스를 이용중일때 zip 파일을 불러오는 경우가 있는데이럴때 오류메세지가 출력되는 경우가 있다The PHP ZipArchive extension is required to import .zip files. 설php 모듈에 zip을 설치해주면 된다 처름설치시 진행했으면 문제없지만 이미 설치되어 있는경우extension 을 이용하여 추가해 주면 된다 1. 파일 다운로드 및 압축해제 1 wget https://pecl.php.net/get/zip-1.12.5.tgz tar xzvf zip-1.12.5.tgz cd zip-1.12.5 파일을 다운로드 후 압추해제 후 디렉토리로 이동 2. 모듈 생성 1 /usr/local/php/bin/phpize ./configure –with-ph... Read More..
admin 2015.04.27 msdos labels do not support devices that have more than msdos labels do not support devices that have more than 에러 발생시 parted (parted) select /dev/sdb Using /dev/sdb (parted) mklabel gpt (parted) mkpart Partition name? []? sdb File system type? [xfs]? Start? 0 End? 600G (parted) print Read More..
admin 2015.03.19 리눅스 hdd 읽기. 쓰기 테스트 dd 명령어를 이용 if 읽기 / of,if=/dev/zero 쓰기 테스트 쓰기 테스트[root@localhost ~]# time dd if=/dev/zero of=/var/test bs=8k count=1000000 1000000+0 records in 1000000+0 records out 8192000000 bytes (8.2 GB) copied, 8.92194 s, 918 MB/s real 0m8.924s user 0m0.151s sys 0m8.763s 읽기 테스트 [root@localhost ~]# time dd if=/var/test of=/dev/null bs=8k count=1000000 1000000+0 records in 1000000+0 records out ... Read More..
admin 2015.03.06 date unixtime 현재 시간을 unixtime 으로 변경시 아래와 같이 입력 [root@xinet traffic]# date +%s 1425603651 다시 이것을 일반 time으로 설정시 [root@xinet traffic]# date -d @1425603651 2015. 03. 06. (금) 10:00:51 KS 특정시간의 unxtime의 값을 구현시 [root@xinet traffic]# date -d “2015-03-04 05:00:00” +%s 1425412800 또는 날짜로만 구성시에 [root@xinet traffic]# date -d “2015-03-04” +%s 1425394800 반대로 하는것은 간단하다 date -d @값입력 그리고 현재 리눅스 시간을 특정시간으로 아예 변경하려면 ... Read More..
admin 2015.02.26 Symbolic link not allowed or link target not accessible 심벌릭 링크된 폴더를 웹에서 호출하게 되면 아래와 같은 메세지가 발생된다.Symbolic link not allowed or link target not accessible 이런 경우 심벌릭 링크에 소유권을 주면 된다 chown 옵션 예를 들어 링크된 폴더 이름이 upload 이면 chown -h xinet:xinet upload 이렇게 지정해 주면 된다. 그리고 사이트에서 페이지 url 확인 Read More..
admin 2015.02.16 vsftpd passive 모드 설정 pasv_enable=YES pasv_promiscuous=YES pasv_min_port=40001 pasv_max_port=40002 vsftpd.conf 에 등록하고 vsftpd 재시작 Read More..
admin 2015.02.16 freetds configure: error: sql.h not found freetds 설치시 freetds configure: error: sql.h not found 에러발생시 ./configure -prefix=/usr/local/freetds –with-tdsver=8.0 –with-unixodbc=/usr –disable-debug –enable-dbmfix –enable-msdblib –with-unixodbc=/usr ( 이 부분에 경로지정) make make install Read More..
+ admin 2015.02.05 서버에 RAM (메모리) 추가 장착 여부 및 메모리 확인 리눅스 서버를 운용하다 보면 서버의 전체 메모리 용량은 확인이 가능하다하지만 몇개의 램이 장착되어 있고 추가 장착 가능한지는 서버를 열어봐야 확인이가능하다 그렇지 않고 명령어를 이용하여 현재 장착된 서버의 메모리와 추가 장착 가능여부를확인해 보자 먼저 확인하기 앞서 필요한 패키지는 dmidecode 다 설치 yum install dmidecode 명령어는 간단하다 dmidecode -t(타입) -t 타입에는 아래와 같이 여러가지 종류가 있다 1System 2Base Board 3Chassis 4Processor 5Memory Controller 6Memory Module 7Cache 8Port Connector 9System Slots 10On Board Devices 11OEM Strings ... Read More..
+ admin 2015.02.04 linux DoDo’s Rootkit 어느 서버를 확인해 보니 ssh 기록이나 모든 기록을 봐도 서버에 접근기록이 없다하지만 서버는 이미 해커가 침입한 상태.. 이 해커는 시험삼아 들어온것인지 아니면 실수를 한것인지 일부 로그를 지우지 않고 작업을 했다 DoDo’s Rootkit 은 간단하다미리 정의된 패스워드와 SSH 포트만 있으면 접속된다. 위와 같이 해당서버 IP 및 SSH 포트만 입력하게 되면 해당 서버의 root로 접속하게 된다. 그럼 해당 서버에 접속된 기록 또는 접속현황이 나타나느냐? 그렇지 않다. 보이지 않기 때문이다. 위와 같이 기본 SSH 접근 기록만 있지 3737포트로 SSH 유저는 보이지 않는다. ttymon 포트가 any로 실행되어 있다 해당 프로세서 동작 (rootkit) 해당 파일 위치 해당 c... Read More..