데이터 복구 (Data Recovery)

저장 매체에서 접근할 수 없거나, 손실되거나, 손상되거나, 포맷된 데이터를 구출하고 복원하는 프로세스.

기업 환경에서 복구 전략은 RPO(복구 시점 목표)와 RTO에 의해 결정됩니다. Web3에서 시드 구문을 잃어버리는 것은 암호학적으로 복구할 수 없는 영구적인 데이터 손실을 의미합니다.

        graph LR
  Center["데이터 복구 (Data Recovery)"]:::main
  Rel_data_replication["data-replication"]:::related -.-> Center
  click Rel_data_replication "/terms/data-replication"
  Rel_data_integrity["data-integrity"]:::related -.-> Center
  click Rel_data_integrity "/terms/data-integrity"
  Rel_data_obfuscation["data-obfuscation"]:::related -.-> Center
  click Rel_data_obfuscation "/terms/data-obfuscation"
  classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
  classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
  classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
  classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
  linkStyle default stroke:#4b5563,stroke-width:2px;

      

🧒 5살도 이해할 수 있게 설명

실수로 중요한 편지를 파쇄기에 넣었다고 상상해 보세요. 데이터 복구는 전문가가 그 종이 조각들을 테이블에 늘어놓고 조심스럽게 테이프로 붙여 다시 읽을 수 있게 만드는 과정입니다. 하드 드라이브가 물리적으로 고장난 것은 파쇄기가 걸린 것과 같아서, 먼저 기계를 고쳐야 종이 조각을 꺼낼 수 있습니다.

🤓 Expert Deep Dive

전문적인 데이터 복구는 원본 드라이브가 변경되지 않도록 '쓰기 방지 장치(Write-blocker)'를 통해 비트 단위 복제본(이미지)을 만드는 것으로 시작됩니다. 파일 할당 테이블이 파괴된 경우 '파일 카빙(File Carving)'을 사용하여 원시 섹터에서 파일 서명을 스캔해 파일을 재구성합니다. SSD의 'TRIM' 명령은 삭제된 데이터 블록을 영구적으로 지우기 때문에 논리적 데이터 복구를 거의 불가능하게 만듭니다.

❓ 자주 묻는 질문

Can data be recovered from a physically broken hard drive?

Yes, but it requires a 'clean room' environment. Specialists can open the drive, replace damaged read/write heads, or swap the platters into a donor drive to extract the data.

Why is it harder to recover deleted files from an SSD than a traditional HDD?

SSDs use a feature called TRIM. When you delete a file, TRIM tells the drive to immediately wipe those storage blocks to keep the drive fast. On older magnetic HDDs, deleted files just have their index removed, leaving the actual data intact until it is overwritten.

Can I recover a lost crypto wallet?

If you lose the seed phrase and the hardware wallet is destroyed, the crypto is gone forever. However, if the wallet file (wallet.dat) is corrupted or you forgot the password, specialists can sometimes recover the data or brute-force the password.

📚 출처