일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- jenkins
- redis
- devops
- Design Patterns
- Spring Boot
- 요리
- Web Server
- JVM
- Git
- Oracle
- laravel
- linux
- tool
- AWS
- ReactJS
- IntelliJ
- MySQL
- Spring
- javascript
- ubuntu
- elasticsearch
- 맛집
- Spring Batch
- it
- jsp
- Gradle
- springboot
- php
- java
- db
Archives
- Today
- Total
아무거나
VirtualBox 디스크 용량 확장 본문
반응형
1. VBoxManage 을 이용하여 vdi 형식 파일 생성
- VBoxManage clonehd "{.vmdk 파일 경로}" "{.vdi로 생성된 파일명}" --format vdi
// .vmdk 경로는 virtualBox를 실행하여 설정에서 storage에서 보면 나와있다.
ex) VBoxManage clonehd "C:\Users\Administrator\VirtualBox VMs\qdillion_laravel/box-disk1.vmdk" "cloned.vdi" --format vdi
2. modifyhd명령을 통한 resize
- VBoxManage modifyhd "{.vdi로 변환된 파일 경로}" --resize {용량 MB 단위}
ex) VBoxManage modifyhd "cloned.vdi" --resize 100000
3. virtualBox 설정에 storage 에서 add Hard Disk 추가하고 기존연결 삭제후 재 시작
4. df 명령으로 확인하면 용량이 늘어나있다.
반응형
'IT > 개발관련툴' 카테고리의 다른 글
[eclipse] utf-8 환경설정 (0) | 2019.12.26 |
---|---|
[fiddler] 프록시 설정 모바일앱/웹 디버깅 (0) | 2019.12.26 |
[intellij] cannot run program "git.exe" 에러 (0) | 2019.08.23 |
[h2 db] h2 console 접속문제 (0) | 2019.08.21 |
[intellij] Lombok 활성화 설정 (0) | 2019.08.21 |
Comments