Wubi를 사용하여 Ubuntu를 설치했습니다.
잘 작동하지만 어떤 이유로 든 컴퓨터 부팅시 우분투의 두 항목 (정확히 동일한 OS를 실행)이 나타납니다.
Windows 8에서는 “bcdedit”(관리자 권한 사용)이라는 도구를 사용해야하므로 콘솔에서 다음을 입력하려고했습니다.
bcdedit
이것이 중복 항목에 대해 얻은 것입니다.
Real-mode Boot Sector
---------------------
identifier {9dd88019-846f-11e1-afba-9ec96921aa26}
device partition=D:
path \ubuntu\winboot\wubildr.mbr
description Ubuntu
Real-mode Boot Sector
---------------------
identifier {e0f9b8e5-bfba-11e1-a157-1c6f6525fc11}
device partition=D:
path \ubuntu\winboot\wubildr.mbr
description Ubuntu
의미가 있으므로 두 번째 것을 삭제하기로 결정했습니다.
bcdedit /deletevalue {e0f9b8e5-bfba-11e1-a157-1c6f6525fc11}
그러나 그것은 작동하지 않았습니다. 그것은 보여 주었다 :
The element data type specified is not recognized, or does not apply to the
specified entry.
Run "bcdedit /?" for command line assistance.
Element not found.
내가 뭘 잘못 했니? 과거에는 단순히 boot.ini 파일을 편집 할 수 있었기 때문에 훨씬 쉬웠 음을 기억합니다. 이 문제를 해결하려면 어떻게해야합니까?
답변
사용하십시오 bcdedit /delete {identifier}
.
bcdedit /delete
: 지정된 항목에서 요소를 삭제합니다.
bcdedit /deletevalue
: 부팅 항목에서 지정된 요소를 삭제합니다.
bcdedit /?
Bcdedit 명령 목록을 표시하는 데 사용 합니다.
Microsoft 의 기사 를 읽으십시오 .