분류 전체보기
-
LinuxEnvironment 2011. 1. 13. 17:03
BASH 문자 삭제 BACKSPACE DELETE CONTROL-H 단어 삭제 CONTROL-W 라인 삭제 CONTROL-U CONTROL-X 인터럽트 키 CONTROL-C DELETE DEL 화면을 지움 CONTROL-L CONTROL-R man -a 1 // User Commands 2 // System Calls 3 // Subroutines echo hostname date passwd uptime who am i finger w ls -l(ong) rm -i cp -i mv -i cat sort diff less SPACE // 다음 화면 q(uit) h(elp) head tail -f grep which whereis locate apropos man -k whatis lpr write mes..
-
UNIX API(system call, primitives)Platform/Environment 2011. 1. 1. 23:37
Normal programs can’t do everything. Many operations such as calling other programs, dealing with files, and exiting have to be handled by the operating system through system calls. All system calls return -1 on failure Processes conventionally have access to three files: standard input file(0), standard output file(1), standard error file(2) open() O_RDONLY creat() read() write() mknod() execut..
-
보안Platform/시스템 2010. 12. 22. 22:52
보안 식별자(SID; Security Identifiers) 로긴(NT 도메인)하는 사용자나 그룹 등에 붙이는 ID LookupAccountSid() SID로부터 계정 정보를 구한다 LookupAccountName() AllocateAndInitializeSid() FreeSid() 프로세스 액세스 토큰 사용자 SID 사용자가 속한 그룹의 SID 특권 보안 속성 구조체 보안 설명자 특정 오브젝트의 사용자별 보안 설정 정보 소유자의 SID 소유자의 그룹 SID DACL(Discretionary Access Control List) 사용자별 권한 정보 목록 ACE(Access Control Entry)의 배열 SACL(System Access Control List) SetEntriesInAcl() Loca..
-
ISAPI(Internet Server Application Programming Interface)Platform/WAS 2010. 12. 5. 16:28
ISAPI(Internet Server API) 필터 Microsoft Urlscan Filter v3.1Internet Information Services 5.1, 6.0 or 7.0Windows Vista, Windows XP, Windows Server 2003, Windows Server 2008 WebKnight ISAPI Extension ECB(Extension Control Block) CHttpServer .GetExtensionVersion()=0 .TerminateExtension()=0 커맨드를 처리하는 멤버 함수는 CHttpServerContex 클래스 변수를 기본적으로 받아야 한다. /* or */ #pragma once // IsapiTest.h - IIS(Internet I..
-
-
VS2010개발/Troub 2010. 11. 22. 17:29
RC : fatal error RC1106: invalid option: -ologo http://www.go4answers.com/Example/build-error-rc1106-2010-rc1-2009.aspx 빌드 (web): 'FredCK.FCKeditorV2.FileBrowser.Config' 형식을 로드할 수 없습니다.Manually copy the FredCK.FCKeditorV2.dll file to the "bin" directory of your web site. Then build your website.orRight-click "References" in your Visual Studio.NET project in the "Solution Explorer". Use "Browse" ..
-
방문자(비지터) 패턴디자인 패턴 2010. 11. 17. 17:26
(데이터 구조 내의) 객체 타입별로 달리 적용되어야 하는 오퍼레이션을 (순회하는) 방문자 객체에 정의type separation from visitor object to make change modular without editing and recompiling existing classes 처리되어야 하는 요소에 대한 클래스를 변경하지 않고 새로운 오퍼레이션을 정의각 클래스로부터 관련된 오퍼레이션을 모아 visitor라는 별도의 클래스로 만들고 이를 전달하여 순환구조를 수정하지 않고도 실질적으로 새로운 동작을 기존의 객체 구조에 추가할 수 있게 된다 "컨테이너에 포함되어 있는 객체의 구조(accessor)는 고정적인데 그 객체(의 구조)에 적용되어야 하는 오퍼레이션은 정해져 있지 않으므로, 그 객체에 ..