'Kernel'에 해당되는 글 2건

  1. 2009.07.11 windows kernel 의 종류
  2. 2008.06.30 Core Rootkit Technology for Linux Kernel 2.6
Hacking & Security/Kernel2009. 7. 11. 21:02
Name of file on installed system Original name on media for uniprocessor systems Original name on media for multiprocessor systems
Ntoskrnl.exe Ntoskrnl.exe Ntkrnlmp.exe
Ntkrnlpa.exe Ntkrnlpa.exe in \Windows\<architecture>\Driver.cab Ntkrpamp.exe in \Windows\<architecture>\Driver.cab
Hal.dll Depends on other factors; partly reliant on number of processors Depends on other factors; partly reliant on number of processors



참고로 PAE를 활성화 하는 경우와 반대의 경우 윈도우가 시작 시 로드하는 커널 파일은 아래와 같습니다.

CPU 수에 따른 환경

기본

PAE 활성

Uniprocess(단일 CPU)

Ntoskrnl.exe

Ntkrnlpa.exe

Multiprocess(다중 or 코어 CPU)

Ntkrnlmp.exe

Ntkrpamp.exe

Posted by skensita
Hacking & Security/Kernel2008. 6. 30. 08:02

리눅스 커널 2.6의 시스템 콜 제어에 대한 문서입니다. 커널 2.4 에서의 기술은 많이 공개되어 있지만 2.6 부터는 여러가지
제약 사항 때문에 적용이 어려운 것으로 알려져 있으며 전반적인 기반 기술을 정리해서 문서화 한 자료도 찾기 힘듭니다.
본 문서에서는 커널 2.6 에서의 시스템 콜 제어와 관련된 핵심 기술에 대하여 상세히 다루고 있습니다.
Posted by skensita