2019/01/15

Windows Boot Manager 옮기기

여러 HDD를 사용하다가 없애야 하는 상황이 발생하였다.
운영체제가 설치된 HDD를 제외하고 다른 HDD를 제거하려 하였으나 부팅이 되지 않는 상황에 부딪쳤다.
확인을 해 보니 Window Boot Manager 가 C드라이브가 아닌 Z드라이브에 설치되어 있었다.

$ bcdedit

Windows Boot Manager
--------------------
identifier              {bootmgr}
device                  partition=Z:
:

Windows Boot Loader
-------------------
identifier              {current}
device                  partition=C:
:

C 드라이브를 제외한 모든 HDD를 제거하기위해 Windows Boot Manager 를 C 드라이브로 옮겨야 했다.
우선 bcdboot 프로그램으로 C드라이브에 Boot 파일을 생성하였다.

$ bcdboot C:\Windows /s C:
Boot files successfully created.

그리고 난 후 diskpart 프로그램을 이용하여 C 드라이브의 파티션을 활성화 해 주었다.

$ diskpart
DISKPART> select disk 0
DISKPART> select partition 1
DISKPART> active

그리고 나서 C 드라이브를 제외한 모든 드라이버를 제거하고 부팅에 성공을 하였다.
bcdedit를 이용하여 확인을 해보니 Window Boot Manager 가 C드라이브 옮겨졌다.

$ bcdedit

Windows Boot Manager
--------------------
identifier              {bootmgr}
device                  partition=C:
:

No comments :

Post a Comment