'Tip'에 해당되는 글 11건

  1. 2010.05.29 Windows XP FLP에서 Apache가 실행 안될 경우 해결법!

Windows XP FLP에서 Apache가 실행 안될 경우 해결법!

Tip 2010. 5. 29. 00:46
Windows XP FLP(Fundementals for Legacy PCs)에서 Apache 웹서버(httpd.exe)가 실행되지 않을 때 해결법!

FLP에는 null 드라이버가 없는데

null 드라이버를 잡으면 해결된다.

1. Windows XP가 설치된 다른 컴퓨터가 있다면 → Windows가 설치된 파티션 > Windows > system32 > drivers/null.sys를 다른 곳에 복사.

Windows XP 설치 CD가 있다면 → Windows XP 설치 CD > i386 > NULL.SY_를 다른 곳에 복사하고, 압축을 풀면 null.sys가 있다.

2. null.sys를 FLP가 설치된 컴퓨터의 Windows가 설치된 파티션 > Windows > system32 > drivers에 넣는다.

3. 명령 프롬프트에서 (명령 프롬프트는 시작 > 실행 > cmd로 실행시킬 수 있다)

cd %windir%\system32\drivers
(+엔터)

sc create Null binPath= "system32\drivers\null.sys" type= kernel start= system error= normal group= Base tag= no DisplayName= Null
( ↑ 한줄에 모두 입력해야 된다 )

성공했다는 메시지이 나오면 재부팅하면 끝!
이제 아파치가 잘 실행된다 :)


: