top of page

Windows Forum

공개·회원 3명

BSOD : page fault in nonpage area


A Page Fault in Nonpaged Area is a common Windows Blue Screen of Death (BSOD) error. It occurs when the system requests data from a memory address that it expects to find in the "nonpaged" section of the RAM, but the data is missing.

The nonpaged area contains critical data for the operating system that must always stay in the physical RAM and should never be "swapped" to the virtual memory on your hard drive. When the PC can't find that data, it crashes to protect itself.

Common Causes

  • Faulty RAM: Physical defects in a memory module.

  • Driver Conflicts: An outdated or corrupted driver (often graphic or network drivers) attempting to access a prohibited memory address.

  • Corrupt System Files: Issues within the Windows installation itself.

  • Disk Errors: Bad sectors on your SSD or HDD where the paging file resides.

Troubleshooting Steps

1. Run Windows Memory Diagnostic

Since this is a memory-related error, testing your RAM is the first priority.

  1. Press Win + R, type mdsched.exe, and hit Enter.

  2. Select "Restart now and check for problems."

  3. Your PC will reboot into a blue screen and test the RAM. If it finds errors, you likely need to replace a RAM stick.

2. Check for Driver Issues

If you recently installed new hardware or updated a driver, that is the likely culprit.

  • Device Manager: Right-click the Start button > Device Manager. Look for any items with a yellow exclamation mark.

  • Roll Back: If the error started after an update, right-click the specific device > Properties > Driver > Roll Back Driver.

3. Repair System Files (SFC and DISM)

Windows has built-in tools to find and fix corrupted system files.

  1. Open Command Prompt as Administrator.

  2. Type sfc /scannow and press Enter.

  3. After that finishes, type: DISM /Online /Cleanup-Image /RestoreHealth

4. Check Disk Health

A failing drive can cause memory mapping issues.

  1. Open Command Prompt (Admin).

  2. Type chkdsk C: /f /r and press Enter.

  3. You will be asked to schedule it for the next restart; type Y and reboot your PC.

Quick Tip for PC Builders

If you have recently adjusted your RAM overclocking, XMP/EXPO profiles, or Curve Optimizer settings in the BIOS, try resetting them to "Auto" or "Default." Unstable memory timings are a frequent trigger for this specific BSOD.

Would you like me to help you analyze a specific Minidump file to find exactly which driver caused the crash?


"Page Fault in Nonpaged Area" 오류는 윈도우에서 흔히 발생하는 블루스크린(BSOD) 중 하나입니다. 시스템이 물리적 메모리(RAM)의 '비페이지(Nonpaged)' 영역에 있어야 할 데이터를 찾으려 했으나, 해당 데이터를 찾지 못했을 때 발생합니다.

비페이지 영역이란 운영체제의 핵심 데이터가 저장되는 곳으로, 하드디스크의 가상 메모리로 옮겨지지 않고 항상 실제 RAM에 머물러 있어야 합니다. 여기서 문제가 생기면 시스템은 스스로를 보호하기 위해 작동을 멈추고 블루스크린을 띄웁니다.

주요 원인

  • 불량 RAM: 메모리 스틱 자체에 물리적 결함이 있는 경우.

  • 드라이버 충돌: 그래픽 카드나 네트워크 드라이버 등 특정 드라이버가 잘못된 메모리 주소에 접근하려 할 때.

  • 시스템 파일 손상: 윈도우 설치 파일 중 일부가 깨진 경우.

  • 디스크 오류: 가상 메모리 파일(Paging file)이 저장된 SSD나 HDD의 섹터에 결함이 있는 경우.

해결 방법

1. 윈도우 메모리 진단 도구 실행

메모리 관련 오류이므로 RAM 상태를 가장 먼저 확인해야 합니다.

  1. Win + R 키를 누르고 mdsched.exe를 입력 후 엔터를 누릅니다.

  2. "지금 다시 시작하여 문제 확인"을 선택합니다.

  3. 재부팅 후 파란 화면에서 검사가 진행됩니다. 오류가 발견되면 RAM 교체가 필요할 수 있습니다.

2. 드라이버 업데이트 및 롤백

최근에 하드웨어를 설치했거나 드라이버를 업데이트한 후 문제가 생겼다면 해당 드라이버가 원인일 확률이 높습니다.

  • 장치 관리자: 시작 버튼 우클릭 > 장치 관리자에서 노란색 느낌표가 뜬 항목이 있는지 확인하세요.

  • 드라이버 롤백: 특정 업데이트 이후 문제가 생겼다면, 해당 장치 우클릭 > 속성 > 드라이버 탭에서 "드라이버 롤백"을 클릭하세요.

3. 시스템 파일 복구 (SFC 및 DISM)

윈도우 자체 복구 기능을 사용해 손상된 파일을 수정합니다.

  1. 명령 프롬프트(CMD)관리자 권한으로 실행합니다.

  2. sfc /scannow를 입력하고 엔터를 누릅니다.

  3. 완료 후 다음 명령어를 입력합니다: DISM /Online /Cleanup-Image /RestoreHealth

4. 디스크 검사 (chkdsk)

드라이브의 오류가 메모리 매핑에 영향을 줄 수 있습니다.

  1. 명령 프롬프트(관리자)에서 chkdsk C: /f /r을 입력합니다.

  2. 다음 부팅 시 검사할지 묻는 메시지가 나오면 Y를 입력하고 재부팅합니다.

PC 튜닝 시 주의사항

최근 RAM 오버클럭, XMP/EXPO 설정, 또는 BIOS에서 Curve Optimizer(커브 옵티마이저) 값을 조절하셨다면, 설정을 다시 'Auto(자동)'나 'Default(기본값)'로 되돌려 보세요. 메모리 타이밍이나 전압이 불안정할 때 이 오류가 매우 자주 발생합니다.

15회 조회
bottom of page