본문 바로가기

HTTP 상태 코드 목록 에러 목록 http 상태 코드 목록 (error 목록)상태코드개요상태코드개요100계속 :Continue404찾을 수 없음 : Not Found101프로토콜 전환 :Switching Protocols405허용되지 않은 방법 : Method Not Allowed200성공 : OK406허용되지 않음 : Not Acceptable201작성됨 : Created407프록시 인증 필요 : Proxy Authentication Required202허용됨 : Accepted408요청 시간 초과 :Roquest Time-out203신뢰할 수 없는 정보 : Non-Authoritative Information409충돌 : conflict204내용 없음 : No Content410사라짐 : Gone205내용 재설정 : Reset Con.. 더보기
centos 다운로드 centos 다운로드 엔지니어 2017. 2. 21. 12:28 수정 삭제http://blog.naver.com/lmkfox07/220940784505통계보기 전용뷰어 보기centos 다운로드 받을 수 있는 주소 http://ftp.daumkakao.com/ 들어가 보면 여러가지 OS 를 다운 받을 수 있다 개인적으로 여기만 쓰는 편이다~ 현재 최신 버전은 centos 7.3.1611 버전이다~ centos 7 버전 부터는 64bit 밖에 없다~ 더보기
centos sshfs python 패스워드 자동 입력 스크립트 #! /usr/bin/pythonimport pexpectimport timeusername = "계정"password = "패스워드"host = "IP "hostdirectory = "호스트"mountpoint = "마운트 될 장소 "option = "-o allow_other -o nonempty"command = "sshfs " + username + "@" + host + ":" + hostdirectory + " " + mountpoint + " " + optiondef start_sshfs(): try: sshfs = pexpect.spawn(command) sshfs.expect(username + "@" + host + "'s password: ") time.sleep (0.1) sshfs.. 더보기