본문 바로가기

전체 글

방화벽에서 Teamviewer 접속 차단하기 기본적으로 쓰는 5938 포트를 막는다. 이걸로 안됨...왜나면 포트가 막힐경우 80과 443을 쓰는데.. 이건 HTTP와 HTTPS라서... 막으면 웹이 안되므로 포트를 통짜로 막으면 안된다. 따라서 URL 필터링으로 아래를 deny이 해준다. *teamviewer* *dyngate* http:// *. dyngate.com / * http:// *. teamviewer.com / * 가능하다면 방화벽 업체에서 제공해주는 Teamviewer 패킷 필터가 있으면 그걸 쓰는게 제일 좋다. 더보기
특정 사용자와 관련된 모든 프로세스를 죽이려면? 특정 사용자와 관련된 모든 프로세스를 죽이려면? 방법은 여러가지가 있지만 내가 사용하는 간단한 방법을 소개한다. kill명령을 ps 명령과, grep류의 프로그램과, 강력한 awk 또는 cut등을 을 이용해 프로세스 ID를 간단하게 죽일 수 있다. 이용하면 간단하게 위의 일을 처리할 수 있다. % kill `ps -ef | grep 특정ID | awk '{print $2}'` 설명을 하지만 kill다음에 나오는 `은 `와 ` 사이에서 실행되는 결과값을 되돌린다는 것을 의미하며 따라서 ps -ef(BSD계열에선 -aux)을 통해 grep으로 들어간 프로세스 테이블 리스트들은 특정ID에게 소유된 것만 걸러 지게 되고 awk를 통해 프로세스 리스트의 두번째 컬럼 부분의 프로세스 ID가 다시 걸러 지게 되며, .. 더보기
devcon 최신버전 6.1.7600.16385 (windows7 동작 가능) windows7 에서 ICS를 이용하여 wifi AP 로 사용중 자꾸 DNS 에러가 나서 검색해봤으나 뾰족한 수가 없어 주기적으로 wifi를 껏다 켜기로 함. devcon이 필요하여 다운받아 첨부함. devcon restart *DEV_ID* 더보기
find 활용 출처 : http://ditobass.tistory.com/71 ### 일정기간 지난 파일 삭제 명령 - 7일 지난 파일 삭제 예 > find [디렉토리] -ctime +7 -exec rm -f {} \; ### 특정용량 이상되는 파일 찾기 - 10MB 이상 되는 파일 찾기 예 > find [디렉토리] -size +1000k -exec ls -al {} \; ### 생산된지 30일 이상 된 파일만 삭제 > find [디렉토리] -type f -ctime +30 -exec rm -rf {} \; ### 생산된지 30일 이상 된 비어있는 디렉토리만 삭제 > find [디렉토리] -empty -type d -ctime +30 -exec rmdir {} \; ※ 리눅스 버전에 따라 -ctime 이 먹지 않는 경.. 더보기
Yum httpd 에 mod_jk 설치 하기 출처 : http://www.openscope.net/2010/01/02/install-mod_jk/ Use mod_jk to bridge apache and Jboss mod_jk is an apache extension that you can use to redirect incoming http requests to an application server. It lets you configure multiple applications servers by virtual host urls, and provides a means of setting up load balancing preferences between application servers. It’s very useful because it le.. 더보기
fails sanity check 에러가 날때 AWS에서 빌드할려고 보니 하기 에러가 난다. configure: error: C++ preprocessor "/lib/cpp" fails sanity check 하기 gcc g++ 설치가 되어있는지 먼저 보고 sudo yum install gcc-c++ 안되면 아래 패키지를 설치 하면 된다. yum groupinstall 'Development Tools' 'Development Libraries' 더보기
SCO 디버깅 하기 출처 : http://permalink.gmane.org/gmane.linux.bluez.devel/75 Re: [Bluez-devel] Re: (no subject)Hello, It seems that many people are stuck at the same place when trying to transmit voice over SCO. The nature of Marcel's replies suggests to me that there may be something that we all get wrong, so I'll try to summarize what I understand, to see if we can locate the misconception together. a- SCO sock.. 더보기
블루투스(Bluetooth)의 개요와 기초 출처 : http://www.microvision.co.kr/bluetooth/bluetooth_lecture.htm 더보기