3.5. VDO 테스트 볼륨 테스트
이 절차에서는 VDO 테스트 볼륨의 읽기 및 쓰기가 작동하는지 테스트합니다.
사전 요구 사항
- 새로 생성된 VDO 테스트 볼륨이 마운트됩니다. 자세한 내용은 3.4절. “VDO 테스트 볼륨 생성” 의 내용을 참조하십시오.
절차
32GiB 임의 데이터를 VDO 볼륨에 작성합니다.
$ dd if=/dev/urandom of=/mnt/vdo-test/testfile bs=4096 count=8388608
VDO 볼륨에서 데이터를 읽고 다른 볼륨에 씁니다.
$ dd if=/mnt/vdo-test/testfile of=another-location/testfile bs=4096
- another-location 을 VDO 테스트 볼륨에 없는 쓰기 액세스 권한이 있는 디렉터리로 바꿉니다. 예를 들어 홈 디렉터리를 사용할 수 있습니다.
두 파일을 비교하십시오.
$ diff --report-identical-files /mnt/vdo-test/testfile another-location/testfile
명령은 파일이 동일함을 보고해야 합니다.
파일을 VDO 볼륨의 새 위치로 다시 복사합니다.
$ dd if=another-location/testfile of=/mnt/vdo-test/testfile2 bs=4096
세 번째 파일을 두 번째 파일과 비교합니다.
$ diff --report-identical-files /mnt/vdo-test/testfile2 another-location/testfile
명령은 파일이 동일함을 보고해야 합니다.
정리 단계
- 3.6절. “VDO 테스트 볼륨 정리” 에 설명된 대로 VDO 테스트 볼륨을 제거합니다.