일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 디스크
- windows
- DNS
- Disk
- 좌절교육
- apachetop
- 칭찬교육
- iptables
- 솔라리스
- PERL
- Bash
- rsync
- PORT
- Cache
- Kernel
- rm
- pid
- Python
- rm -rf
- goaccess
- http
- 리눅스
- Hack
- CPU
- Linux
- Performance
- ext4
- cadre
- ext3
- 쇼펜의상속자 #킨텍스메가쇼 #섬유향수탈취제
- Today
- Total
목록분류 전체보기 (151)
Ben's
안녕하세요.. 제 컴퓨터가 어제 두번이나 블루스크린을 일으키면서 다운이 됐네요 ㅡ.ㅡ; 예전에는 블루스크린 떴을때 막막했는데.. 찾아보니 원인을 찾을수 있는 방법이 있더구요.. 관련링크 참조 http://blogs.technet.com/b/koreapartner/archive/2010/01/19/3306552.aspx http://msdn.microsoft.com/en-us/windows/hardware/gg463009.aspx http://www.microsoft.com/download/en/confirmation.aspx?id=8279 1. Windows SDK 설치(이걸 설치하면 여러가지 tool 이 설치되는데 이중에 WinDBG가 포함되어 있더군요) 2. 블루스크린시 남겨진 C:\Windows\M..
#!/usr/bin/python # # 08/07/20 system team nhko # from httplib import HTTP import urllib import httplib def error(msg) : params = urllib.urlencode({'pass': 'xxxx', 'mesg': '10.10.10.2'':'+msg}) headers = {"Content-type": "application/x-www-form-urlencoded", "Accept": "text/plain"} conn = httplib.HTTPConnection("sms.nhko.com:80") conn.request("POST", "/cgi-bin/sms.pl", params, headers) print conn..
use strict; # $SIG{ALRM} = sub { print "UNKNOWN: Script timed out\n"; &do_page("nhkotest-002=>check failed - script timeout"); exit -1; }; # Start the timer to script timeout alarm(55);
http://archives.postgresql.org/pgsql-performance/2009-06/msg00319.php I see a lot of io wait time there. My guess is that your DB is flooded with synchronous writes. IF you want to optimize the hardware for this you have a couple options. I'm assuming your RAID 0 is not hardware RAID. 1. Use 8.3+ and asynchronous commit (set synchronous_commit=false). This is safe data wise, but if your DB crash..
http://blog.naver.com/kimbeast?Redirect=Log&logNo=60060710009 http://blog.naver.com/invain?Redirect=Log&logNo=80065594228 http://skcha.tistory.com/152 http://www.ibm.com/developerworks/kr/library/l-ext4/index.html http://ext4.wiki.kernel.org/index.php/Main_Page
make rpm
perl -MCPAN -e shell Perl에서 모듈 업데이트시 지정한 사이트로 접속이 되지 않아 업데이틀 할 수 없는 경우가 있다. 이와 같은 경우에는 다음과 같이 다운로드 사이트를 변경하여 해결할 수 있다. $ perl -MCPAN -e shell cpan> o conf urllist pop # 기존 URL목록 중에서 하나를 삭제. 경우에 따라서 몇 번 수행할 수도 있다. cpan> o conf urllist push ftp://cpan.mirror.cdnetworks.com/CPAN/ ※URL은 http://www.perl.com/CPAN/SITES.html를 참조할 것. cpan> o conf commit # 현재 설정을 저장 cpan> install LWP::UserAgent # 모듈의 설치