"리눅스 vhd 파일 검사"의 두 판 사이의 차이

 
(사용자 2명의 중간 판 10개는 보이지 않습니다)
1번째 줄: 1번째 줄:
==개요==
;리눅스 vhd 파일 검사
;리눅스 vhd 파일 검사


==정상==
<source lang='console'>
<source lang='cli'>
root@zetawiki:~# file odin1440.vhd
[root@zetawiki ~]# vbox-img repair --filename cirros.vhd --format VHD
odin1440.vhd: Microsoft Disk Image, Virtual Server or Virtual PC
</source>
<source lang='console'>
root@zetawiki:~# vbox-img info --filename odin1440.vhd
--- Dumping VD Disk, Images=1
Dumping VD image "odin1440.vhd" (Backend=VHD)
Header: Geometry PCHS=43/4/17 LCHS=0/0/0 cbSector=512
Header: uuidCreation={2d4199c4-88da-9646-91be-6fe00fbc6aeb}
Header: uuidParent={00000000-0000-0000-0000-000000000000}
</source>
<source lang='console'>
root@zetawiki:~# vbox-img repair --filename odin1440.vhd --format VHD
First data block at sector 4
First data block at sector 4
VHD image is in a consistent state, no repair required
VHD image is in a consistent state, no repair required
</source>
==비정상==
* 0바이트 fake.vhd
<source lang='cli'>
[root@zetawiki ~]# touch fake.vhd
[root@zetawiki ~]# vbox-img repair --filename fake.vhd --format VHD
vbox-img: error: Image must be at least 512 bytes (got 0)
vbox-img: error: Error while repairing the virtual disk: The image is too small or too large for this format. (VERR_VD_INVALID_SIZE)
</source>
* 10MB fake2.vhd
<source lang='cli'>
[root@zetawiki ~]# fallocate -l 10M fake2.vhd
[root@zetawiki ~]# ll fake2.vhd
-rw-r--r-- 1 root root 10485760 Dec  8 15:15 fake2.vhd
[root@zetawiki ~]# vbox-img repair --filename fake2.vhd --format VHD
vbox-img: error: No valid VHD structures found
vbox-img: error: Error while repairing the virtual disk: Repairing the image is not possible because the corruption is to severe. (VERR_VD_IMAGE_REPAIR_IMPOSSIBLE)
</source>
</source>


==같이 보기==
==같이 보기==
*[[raw 파일 검사]]
*[[리눅스 qcow2 파일 검사]]
*[[리눅스 vbox-img]]
*[[리눅스 vbox-img]]
*[[리눅스 raw vhd 이미지파일 변환‎‎]]


[[분류: 리눅스]]
[[분류: 리눅스]]
[[분류: 디스크 이미지]]
[[분류: VHD]]

2017년 2월 21일 (화) 14:25 기준 최신판

1 개요[ | ]

리눅스 vhd 파일 검사
root@zetawiki:~# file odin1440.vhd
odin1440.vhd: Microsoft Disk Image, Virtual Server or Virtual PC
root@zetawiki:~# vbox-img info --filename odin1440.vhd
--- Dumping VD Disk, Images=1
Dumping VD image "odin1440.vhd" (Backend=VHD)
Header: Geometry PCHS=43/4/17 LCHS=0/0/0 cbSector=512
Header: uuidCreation={2d4199c4-88da-9646-91be-6fe00fbc6aeb}
Header: uuidParent={00000000-0000-0000-0000-000000000000}
root@zetawiki:~# vbox-img repair --filename odin1440.vhd --format VHD
First data block at sector 4
VHD image is in a consistent state, no repair required

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}