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

비밀번호

댓글 작성자
 




... 181  182  183  184  185  186  187  188  189  190  [191]  192  193  194  195  ...
NoWriterDateCnt.TitleFile(s)
162정성태10/3/200518446.NET Framework: 45. VS.NET 2005 IDE에서 Web App를 .NET 2.0 (x64) 머신에 배포
161정성태11/14/200521306.NET Framework: 44. IIS 관리자에서 ASP.NET 탭이 없는 경우.
159정성태9/28/200517283VS.NET IDE: 32. Virtual Server 2005 64bit SP1 Beta 테스트 [2]
163정성태10/3/200515332    답변글 VS.NET IDE: 32.1. 왜...?
158정성태11/14/200517762VS.NET IDE: 31. SQL 2005 - A connection was successfully established with the server
157정성태9/21/200517568기타: 10. SQL2000 설치 시, Invalid Product Key 오류
156정성태9/16/200519521.NET Framework: 43. Wisptis.exe 프로세스
155정성태5/31/200515885.NET Framework: 42. .NET Installer Class에서 Install 메서드 - 설정 사항들 알아내는 코드
154정성태5/13/200514793VS.NET IDE: 30. Windows 2003 for x64에 추가된 레지스트리 Run 노드
152정성태5/5/200518226VC++: 18. VC++ 7.0에서부터 ? : 연산자 처리가 바뀌었습니다.
153정성태5/12/200518376    답변글 VC++: 18.1. VC++ 8.0에서부터 바뀐 CRT 소개
151정성태5/5/200521287VC++: 17. DLL에 export 된 C++ 클래스 멤버 함수 파라미터형 정보 알아내는 방법
150정성태5/5/200522507.NET Framework: 41. 태그 사이의 값을 추출하는 정규식
149정성태5/5/200518933.NET Framework: 40. 데이터그리드에서 콤보박스 쓸 수 있는 방법
148정성태5/5/200519518.NET Framework: 39. DataSet 방식을 RecordSet으로 구현하는 방법.
147정성태5/7/200617125VC++: 16. 클래스 멤버 함수에 대한 포인터를 받는 표현.
146정성태4/29/200516089VS.NET IDE: 29. 네트워크 공유를 다른 사용자 계정으로 다시 로그인을 원하는 경우.
144정성태4/14/200516538VS.NET IDE: 28. Windows 2003 SP1을 설치하고.
143정성태5/5/200517682.NET Framework: 38. DSL (Domain Specific Language)
141정성태4/14/200518618VS.NET IDE: 27. 64bit 컴퓨터 사용 평가 [3]
140정성태4/14/200515678.NET Framework: 37. String.GetHashCode의 리턴값. 그때그때 다릅니다.
138정성태4/12/200516555.NET Framework: 36. 64bit 시스템 구성
142정성태4/14/200517851    답변글 VS.NET IDE: 36.1. 메모리 구성에 대한 추가 내용
137정성태3/31/200522146.NET Framework: 35. XP SP2 팝업 뚫은 소스
135정성태3/31/200520877VS.NET IDE: 26. SQL Server 2000구성이 실패
134정성태3/31/200518094COM 개체 관련: 16. Microsoft.XMLHTTP 개체에서 Microsoft.XMLDOM 개체를 전송할 때 charset 지정 문제? [2]
... 181  182  183  184  185  186  187  188  189  190  [191]  192  193  194  195  ...