DUMPed 파일 시스템의 위치를 ​​찾을 수 없습니다.

DUMPed 파일 시스템의 위치를 ​​찾을 수 없습니다.

파일 시스템을 덤프하고 덤프 이름(" ")을 선택했으며 덤프가 성공적으로 선언되었지만 시스템 어디에서나 home_fs_dump이름을 찾을 수 없습니다 . (마지막으로 파일이 제공되는지 또는 잘못 사용하고 있는지 locate테스트했습니다 .)locate

다른 명령을 통해 덤프를 찾을 수 있습니까 locate? 그렇다면, 그래서 무엇입니까? 아니면 어딘가에서 다른 실수를 저지르고 있는 걸까요?

(이건 꼭 알아야 해요 restore.)

[root@12345 /]# dump -0uf home_fs_dump /dev/mapper/fedora_12345-home
  DUMP: Date of this level 0 dump: Sat Apr 25 21:08:02 2015
  DUMP: Dumping /dev/mapper/fedora_12345-home (/home) to home_fs_dump
  DUMP: Label: none
  DUMP: Writing 10 Kilobyte records
  DUMP: mapping (Pass I) [regular files]
  DUMP: mapping (Pass II) [directories]
  DUMP: estimated 22551 blocks.
  DUMP: Volume 1 started with block 1 at: Sat Apr 25 21:08:02 2015
  DUMP: dumping (Pass III) [directories]
  DUMP: dumping (Pass IV) [regular files]
  DUMP: Closing home_fs_dump
  DUMP: Volume 1 completed at: Sat Apr 25 21:08:04 2015
  DUMP: Volume 1 23010 blocks (22.47MB)
  DUMP: Volume 1 took 0:00:02
  DUMP: Volume 1 transfer rate: 11505 kB/s
  DUMP: 23010 blocks (22.47MB) on 1 volume(s)
  DUMP: finished in 2 seconds, throughput 11505 kBytes/sec
  DUMP: Date of this level 0 dump: Sat Apr 25 21:08:02 2015
  DUMP: Date this dump completed:  Sat Apr 25 21:08:04 2015
  DUMP: Average transfer rate: 11505 kB/s
  DUMP: DUMP IS DONE
[root@12345 /]# locate home_fs_*
[root@12345 /]# locate *fs_dump
[root@12345 /]# locate *_fs_*
[root@12345 /]# locate home_*
[root@12345 /]# locate home*
/home
/etc/selinux/targeted/contexts/files/file_contexts.homedirs
/etc/selinux/targeted/contexts/files/file_contexts.homedirs.bin
/etc/selinux/targeted/modules/active/file_contexts.homedirs
/etc/selinux/targeted/modules/active/homedir_template
/etc/selinux/targeted/modules/tmp/file_contexts.homedirs
/etc/selinux/targeted/modules/tmp/homedir_template
(...)

답변1

제안 된대로 이것을 답변으로 추가하십시오

find / -name "home_f_dump"

관련 정보