(1) 복구에 사용된 부팅 이미지
systemrescue
https://www.system-rescue.org/
(2)복구할 때 사용되는 명령어
디스크 정보 확인
fdisk -l
sda2 파티션에 삭제된 파일 검색
ntfsundelete /dev/sda2
sda2 파티션에 hwp 단어가 포함된 삭제된 파일 검색
ntfsundelete /dev/sda2 | grep hwp
sda2 파티션에 none 단어가 포함된 단어를 제외하고 삭제된 파일 검색
ntfsundelete /dev/sda2 | grep -v none
sda2 파티션에 삭제된 hwpx 확장명 파일을 /data 폴더에 복구하기
ntfsundelete /dev/sda2 -u -m *.hwpx -d /data
sda2 파티션에 삭제된 전체 파일을 /data 폴더에 복구하기
ntfsundelete /dev/sda2 -u -m '*' -d /data