Error: unrecognised disk label admin 2019.12.17 gpt 파티션 설정시 에러부분 [crayon-6743784c3895e268221076/] 해결방법 parted 들어가서 mklabel gpt 입력 후 작업하면 됨 [crayon-6743784c38967793396121/] 포맷 및 마운트 [crayon-6743784c3896b251111128/] dd 속도 체크 [crayon-6743784c3896f245738978/] Read More..
리눅스 hdd 읽기. 쓰기 테스트 admin 2015.03.19 dd 명령어를 이용 if 읽기 / of,if=/dev/zero 쓰기 테스트 쓰기 테스트[root@localhost ~]# time dd if=/dev/zero of=/var/test bs=8k count=1000000 1000000+0 records in 1000000+0 records out 8192000000 bytes (8.2 GB) copied, 8.92194 s, 918 MB/s real 0m8.924s user 0m0.151s sys 0m8.763s 읽기 테스트 [root@localhost ~]# time dd if=/var/test of=/dev/null bs=8k count=1000000 1000000+0 records in 1000000+0 records out ... Read More..