본문 바로가기

윈도우7 VHD 설치.

windows by 낼스 2014. 5. 7.
윈도우 7 VHD 부팅과 활용 방안 : http://blog.daum.net/k2sarang2/87

윈도우 7의 VHD 부팅기능을 활용해보자 : http://www.snoopybox.co.kr/1129

vhd(x) 제대로알고 쓰자 : http://samso3615.tistory.com/67

[Bootmgr] 윈도우 PE 의 의미, PE 의 부팅 구조와 램 디스크 장치 옵션 : http://cappleblog.co.kr/102

Windows PE 2.0 만들기 : http://hind.pe.kr/1178

------------------------------------------------------------------------------------------------------------------
0. Window VHD란?
    - Virtual Hard Disk를 말한다.
    - 단일 파일형식의 가상하드디스크.

0. VHD만들기 ( diskmgmt.msc )
    
    1. Win+R ( 실행 )
    2. diskmgmt.msc : 디스크관리자
    3. 동작(A) - VHD 만들기

0. VHD만들기 ( Window PE 부팅시 )
    1. 윈도우7 CD 부팅 
       - 설치유형 선택 - 사용자 지정(고급)
         -> shift + F10 입력 :> Command Line 진입.

          X:\sources>diskpart

          > select disk 0
          > creat partition primary
          > format quick fs=ntfs
          > active
          > assign letter=c
          > exit

          X:\sources\> c:

         c:\>md vhd
         c:\>diskpart
    > creat vdisk file=c:\vhd\win7.vhd  maximun=51200 type=expandable
    > attach vdisk
    > list vol
    > exit

   2. 파티션 설정창 - '새로고침' 
      >> 좀전에 생성한 디스크 파티션 확인.

   3. 파티션 선택 '설치'



0. VHD [부모 -> 자식] 생성하여 윈도우7설치
    목적 : 이미 윈도우가 설치되어 있는데 모두 삭제하고 처음 설치한 상태로 만들려고 함

0. VHD 용량 축소

    ◆ 축소 메카니즘
        1. 원본 가상 디스크 S: 드라이브 연결.
        2. 사본 가상 디스크 T: 드라이브 연결. (파티셔닝 및 포맷)
        3. 원본 가상 디스크(S: 드라이브) 데이터 이미지 생성 (Using ImageX).
        4. 사본 가상 디스크(T: 드라이브) 원본 데이터 이미지 적용 (Using ImageX).
        5. 연결된 가상 디스크 시스템 분리.
        6. WIM 이미지 파일, 기존의 VHD 가상 디스크 파일 삭제.
        7. 가상 디스크 파일 이름 변경 
            [원본 가상 디스크 파일 이름  VHD -> 사본 가상 디스크 파일 이름]
 
diskpart
select vdisk file="C:\vhd\win7.vhd"
attach vdisk
select partition=1
assign letter=S

create vdisk file="C:\vhd\win_new.vhd" type=expandable maximum=20480
attach vdisk
create partition primary
format fs=ntfs quick
assign letter=T

exit

C:\vhd\imagex.exe /capture /compress fast S:\ C:\vhd\win7_org.wim "Source"
C:\vhd\imagex.exe /apply C:\vhd\
win7_org.wim 1 T:\

diskpart
select vdisk file="C:\vhd\win7.vhd"
detach vdisk
select vdisk file="
C:\VHD\win_new.vhd"
detach vdisk
exit

del C:\vhd\win7_org.wim /q
del C:\vhd\win7.vhd /q
ren C:\vhd\win_new.vhd win7.vhd
exit



------------------------------------------------------------------------------------------------------------------

 


'windows' 카테고리의 다른 글

change image position and size in ppt  (0) 2015.11.12
윈도우7의 PE 멀티부팅 메뉴에 등록하기  (0) 2014.05.07
ImageX  (0) 2014.05.07
BCD(Boot Configuration Data) 저장소란?  (0) 2014.05.07
DISKPART 사용법.  (0) 2014.05.07

댓글