Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 
(연관된 글이 2개 있습니다.)
(시리즈 글이 2개 있습니다.)
개발 환경 구성: 43. Hyper-V VHD 파일 크기 확장하는 방법
; https://www.sysnet.pe.kr/2/0/711

개발 환경 구성: 44. VHD 파일 크기 확장하는 방법 - 두 번째 이야기
; https://www.sysnet.pe.kr/2/0/717





VHD 파일 크기 확장하는 방법 - 두 번째 이야기


예전에, Hyper-V에서 VHD 파일 크기 확장하는 방법에 대해서 설명을 드렸지요.

Hyper-V VHD 파일 크기 확장하는 방법
; https://www.sysnet.pe.kr/2/0/711

이번에도 다른 VM의 VHD파일이 최대 크기에 도달해서 확장해야 할 일이 있었는데, 불행히도 Windows Server 2003에서 제공되는 디스크 관리자에서는 "Extend Volume..."이라는 메뉴를 제공하지 않았습니다.

[그림 1: "Extend Volume..." 메뉴가 없는 Windows Server 2003]
extend_vhdsize_win2003_1.png

물론, 약간의 검색으로 문제는 해결되었습니다.

Extend Boot Partition in VHD
; http://vmtoolkit.com/forums/thread/206.aspx

댓글에 보면 다음과 같이 해결책을 제시해 주고 있습니다.

Re: Extend Boot Partition in VHD 
Reply Quote 
I created a virtual image of Windows 2003 R2 with antivirus and service packs then burned it to DVD so I would have a base image without taking up HD space on the server (WAIK is probably better, but I haven’t tried it yet).  It seemed like a great idea until I realized that the VHD was setup for 50GB.  So I did some research and found a pretty simple way to deal with this issue:

 
First, to make things easier on myself, I used VHDResizer to create a new VHD and copy the existing VHD into the new size.  This increases the HD size, but not the partition (keep the original around until you complete the process, just in case).

 
Second, I used VHDmount to mount the VHD and used diskpart.exe from the host to expand the VHD’s partition.  Shut down the guest VM.  In the host, open the command prompt and type ‘cd Program Files\Microsoft Virtual Server\Vhdmount’

 
Mount the image

C:\>Program Files\Microsoft Virtual Server\Vhdmount>vhdmount /m “C:Documents and Settings\All Users\Documents\Shared Virtual Machines\<server name>\<server name>.vhd” <drive letter>
Start diskpart

C:\>Program Files\Microsoft Virtual Server\Vhdmount>diskpart
Expand the partition

DISKPART>list disk
DISKPART>select disk 3 -----check the number in the list
DISKPART>list part
DISKPART>select part 1 -----check the number in the list
DISKPART>extend
DISKPART>list part -----check the new size
DISKPART>exit
Dismount and save changes

C:\>Program Files\Microsoft Virtual Server\Vhdmount>vhdmount /u /c “C:Documents and Settings\All Users\Documents\Shared Virtual Machines\<server>\<server>.vhd”
 
After booting up the VHD again, you’ll be prompted to restart since Windows installed new hardware (your new HD).  After reboot, your new HD partition should be ready.

그러다가 가만히 생각해 보니, Windows Server 2008이 있는 사람이라면 굳이 diskpart를 이용하지 않더라도 해결이 가능한 방법이 있습니다. 어차피 VHD이니까, VM을 종료하고 해당 VHD 파일을 Windows Server 2008(VM 또는 호스트 머신)에 하드 디스크로 인식시킨 다음 디스크 관리자에서 확장을 시켜주면 되는 것입니다.



[이 토픽에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]

[연관 글]






[최초 등록일: ]
[최종 수정일: 6/27/2021]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




... [196]  197 
NoWriterDateCnt.TitleFile(s)
39정성태7/17/200324238VS.NET IDE: 5. 원격 제어 3가지 방법
38정성태7/17/200320812.NET Framework: 8. IIS 서버 재설치와 ASP.NET 서비스의 문제점
36정성태7/17/200321480.NET Framework: 7. 시행착오 - WebService 참조 추가 오류
35정성태7/17/200322025.NET Framework: 6. Win2000에서의 .NET COM+ 자동 등록 오류 발생 해결
34정성태7/17/200320675VS.NET IDE: 4. VC++ 원격 디버깅파일 다운로드1
33정성태7/17/200320845VS.NET IDE: 3. Win2000 NAT 서비스
32정성태7/17/200322071COM 개체 관련: 9. _bstr_t, CComBSTR, string 클래스 사용 [1]
31정성태7/17/200319195COM 개체 관련: 8. IDL 구문에서 구조체를 pack 하는 방법
30정성태7/17/200336444VC++: 7. [STL] vector 사용법 및 reference 사용예 [1]파일 다운로드1
28정성태7/17/200320841스크립트: 3. Programming Microsoft Internet Explorer 5 - CHM 파일
29정성태7/17/200320308    답변글 스크립트: 3.1. Programming Microsoft Internet Explorer 5 - 소스코드
27정성태7/17/200319212COM 개체 관련: 7. HTML Control에서 DELETE, 화살표 키 등이 안 먹는 문제
26정성태7/17/200320395COM 개체 관련: 6. WebBrowser 콘트롤에서 프레임을 구하는 소스
25정성태7/17/200318013COM 개체 관련: 5. C++ Attributes - Make COM Programming a Breeze with New Feature in Visual Studio .NET [2]파일 다운로드1
24정성태7/17/200321648.NET Framework: 5. (MHT 변환해서 가져온 글) .NET 의 COM+ 서비스 사용파일 다운로드1
23정성태7/17/200325352.NET Framework: 4. webservice.htc - HTML Script에서도 웹서비스 엑세스 [2]파일 다운로드1
22정성태7/17/200319872.NET Framework: 3. .NET Framework SDK 퀵 스타트 자습서
21정성태7/17/200318929.NET Framework: 2. 김현승님의 "ASP.NET & .NET EnterpriseServices & Remoting 코드 템플릿"
20정성태2/15/200525971VS.NET IDE: 2. Platform SDK 설치
19정성태7/17/200321851.NET Framework: 1. JScript.NET 강좌 사이트[영문]
18정성태7/17/200319289COM 개체 관련: 4. Exchanging Data Over the Internet Using XML [1]파일 다운로드1
17정성태7/17/200327261VC++: 6. Win32 API Hook - 소스는 "공개소스"에있습니다. [2]
16정성태7/17/200319580COM 개체 관련: 3. IE 툴밴드의 위치문제파일 다운로드1
15정성태7/17/200320575VC++: 5. 시행착오 - 클래스 포인터를 void * 로 대입후 delete 하는 경우.
14정성태7/17/200322154VC++: 4. MFC Message 처리 구조
13정성태7/17/200321891VC++: 3. template 활용의 최고 단계!
... [196]  197