본문 바로가기

컴터 때찌/Error

[Error] RuntimeError: No package configuration found for: nspr python-sidermonkey 를 설치하다가 저런 에러가 나왔음.. python-dev 설치해야함# apt-get install python-dev# apt-get install python-nss# apt-get install libnspr4-dev //python ez_setup.py python-spidermonkey 더보기
[mysql] Access denied for user -- (using password: YES)") - 퍼옴 mysql db 접근 에러"Access denied for user " "(using password: YES)")"이렇게 나올 경우 ----------------------------------------------------------------------------------------- 1. localhost와 %의 비밀번호가 다를 경우mysql> use mysqlmysql> select * from user;mysql> update user set Password=Password('password') where User='Username' and Host='%';mysql> commit;mysql> flush privileges; 2. 권한이 없을때mysql> grant select, inser.. 더보기
[Error] About " Sublime Text 2 " [0] 설치하면서 참고한 url http://valley.egloos.com/viewer/?url=http://mcchae.egloos.com/11018557 [1] UnicodeEncodeError: 'ascii' codec can't encode characters in position 56-59: ordinal not in range(128) loaded 837 snippets => 파일 이름에 유니코드가 들어갔거나, 같이 열린 파일 중에 유니코드 이름인 파일이 있을때 에러가 난다. http://ngio.co.kr/1972 [2] Ctrl+shift +c 가 Ctrl + break 을 바꾸는것 Preferences -> Key Bindings - User and paste the line below.. 더보기
[Error-PHP] Snoopy.class.php fsockopen 에러 ~ Warning: fsockopen() [function.fsockopen]: unable to connect to show.websudoku.com:80 (Connection timed out) in/web/home/leopardan/html/n2r/Snoopy.class.php on line 1142 해결책 : 서버에 allow_url_fopen 옵션이 켜저있어야 함 옵션을 킬수 없는 경우에는 CURL 모듈로 대체하자 ㅜㅜ 더보기
[Error-vSphere] #1 Win 7에서 Client의 Cd 인식시 에러 메시지 : Client the remote Device on "OS" connected to "DRV" is disconnected 해결방법 : 관리자 권한으로 실행 ref => http://www.petri.co.il/forums/showthread.php?t=47036 #2 Win7 vSphere Client에서 Cd 인식시 에러 메시지 메시지 : Character encoding "windows-949-2000" is not supported. 해결 방법 : C:\Users\"USERNAME"\AppData\Roaming\VMware\preferences.ini 에서 .encoding = "windows-949-2000" 에서 .encoding =.. 더보기
[Error-Ubuntu] Apt-get Err http://kr.archive.ubuntu.com/ubuntu/ maverick/main libnetpbm10 i386 2:10.0-12.2 Something wicked happened resolving 'kr.archive.ubuntu.com:http' (-5 - No address associated with hostname) Err http://kr.archive.ubuntu.com/ubuntu/ maverick/main netpbm i386 2:10.0-12.2 Something wicked happened resolving 'kr.archive.ubuntu.com:http' (-5 - No address associated with hostname) Failed to fetch htt.. 더보기
[Error-Metasploit] Auxiliary failed: RuntimeError Pcaprub not available [-] /opt/framework3/msf3/lib/msf/core/exploit/capture.rb:379:in `check_pcaprub_loaded' [-] /opt/framework3/msf3/lib/msf/core/exploit/capture.rb:75:in `open_pcap' ref http://dev.metasploit.com/redmine/issues/4596 http://www.backtrack-linux.org/forums/backtrack-5-beginners-section/40688-pcaprub-module-problem.html http://blog.carlosgarciaprado.com/?tag=metasploit-pcaprub-pentesting 더보기
[Error-Windows] 원인을 알 수 없는 문제 때문에 windows에서 windows 방화벽 설정을 열 수 없습니다 방법 1: "Setup API InstallHinfSection" 함수를 호출하여 Windows 방화벽 설치 Windows 방화벽을 설치하려면 다음과 같이 하십시오. 시작, 실행을 차례로 누르고 cmd를 입력한 다음 확인을 누릅니다. 명령 프롬프트에서 다음 명령줄을 입력한 다음 Enter 키를 누릅니다. Rundll32 setupapi,InstallHinfSection Ndi-Steelhead 132 %windir%\inf\netrass.inf Windows를 다시 시작합니다. 시작, 실행을 차례로 누르고 cmd를 입력한 다음 확인을 누릅니다. 명령 프롬프트에서 다음 명령을 입력한 후 Enter 키를 누릅니다. Netsh firewall reset 시작, 실행을 차례로 누르고 firewall.cpl을 입.. 더보기
[Error-Ubuntu] yum Error: Cannot find a valid baseurl for repo: base yum이 안됨 Error: Cannot find a valid baseurl for repo: base 해결 -> /etc/yum.conf proxy=http://프락시서버:포트 http://hi.baidu.com/allinster/blog/item/e01f42f3d18f1edc0a46e00a.html http://soodiy.com/266 http://www.centos.org/modules/newbb/viewtopic.php?viewmode=threaded&order=ASC&topic_id=10800&forum=37&move=prev&topic_time=1193229371 ps. about apt-get proxy if you’re using command-line apt-get Edit your /.. 더보기
[python] Try to replace "XXX" by b"XXX" if you are using Python 3.x s.send('GET / HTTP/1.1\r\n') TypeError: must be bytes or buffer, not str s.send(b'GET / HTTP/1.1\r\n') s.send(b'Host: test.kr\r\n') s.send(b'\r\n') link = http://stackoverflow.com/questions/2411864/python-socket-send-buffer-vs-str 더보기