USB 인클로저가 포함된 오래된 ATA(예, SATA가 아님) 하드 드라이브가 두 개 있습니다. 그 중 하나에서 EXT4 로그 오류가 발생하여 물리적인 문제가 있는지 확실하지 않습니다. 그들은 단지 백업 디스크이기 때문에 여기에 새로운 btrfs를 넣고 싶습니다.
디스크 드라이브
나는 이것을하려고 노력하고 있습니다 fdisk
. 완전히 정리하려면 문제가 발생할 경우를 대비해 새 파티션 테이블이 필요합니다.
env LC_ALL=C sudo fdisk /dev/sdc
다음은 디스크 중 하나의 현재 상태입니다.
Command (m for help): p
Disk /dev/sdc: 160.0 GB, 160041885696 bytes
255 heads, 63 sectors/track, 19457 cylinders, total 312581808 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00006dd0
Device Boot Start End Blocks Id System
그런 다음 새 파티션 테이블을 만듭니다.
Command (m for help): o
Building a new DOS disklabel with disk identifier 0x20bf4f51.
Changes will remain in memory only, until you decide to write them.
After that, of course, the previous content won't be recoverable.
Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite)
이 경고는 모든 디스크에 대해 매번 나타납니다. 그러나 플래그의 값은 다를 수 있습니다. 이제 파티션 테이블을 다시 인쇄합니다.
Command (m for help): p
Disk /dev/sdc: 160.0 GB, 160041885696 bytes
255 heads, 63 sectors/track, 19457 cylinders, total 312581808 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x20bf4f51
Device Boot Start End Blocks Id System
아직 비어 있어서 좋습니다.
새 파티션을 만듭니다.
Command (m for help): n
Partition type:
p primary (0 primary, 0 extended, 4 free)
e extended
Select (default p):
Using default response p
Partition number (1-4, default 1):
Using default value 1
First sector (2048-312581807, default 2048):
Using default value 2048
Last sector, +sectors or +size{K,M,G} (2048-312581807, default 312581807):
Using default value 312581807
이제 전체 디스크에 걸쳐 있는 파티션이 있어야 합니다. 다시 확인해 보니 p
파티션이 있었습니다.
써 내려 가다:
Command (m for help): w
The partition table has been altered!
Calling ioctl() to re-read partition table.
Error closing file
나는 이것에 대해 전혀 모른다. 한때 dd
디스크의 첫 번째 부분에 400M의 0을 썼지만 아무 것도 바뀌지 않았습니다.
KDE 파티션 관리자
디스크의 원래 상태는 다음과 같습니다.
이제 새 파티션 테이블을 생성하고 싶습니다.
할당되지 않은 영역에 새 파티션을 만듭니다.
디스크에 변경 사항을 씁니다.
쓸모없는 오류 메시지:
여기서 약간의 문제가 발생하여 디스크를 원하는 대로 다시 포맷할 수 없는 이유를 모르겠습니다.
우분투 14.04를 사용합니다.