RECOVER.1
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:1k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. RECOVER(1)                Minix Programmer's Manual                 RECOVER(1)
  2. NAME
  3.      recover - recover files that have been removed.
  4. SYNOPSIS
  5.      recover file ...
  6. EXAMPLES
  7.      rm x; recover x     # Unremove x
  8.      recover a b c       # Recover three files
  9. DESCRIPTION
  10.      MINIX allows files that have been deleted (e.g., with rm) to be  restored
  11.      (in  /tmp).  The trick is that when a file is unlinked, its i-node number
  12.      is kept in the directory entry.  As long as the directory entry and  disk
  13.      blocks  are  not  reused,  the  file  can  be recovered.  This program is
  14.      actually just a little front end for de, which must  be  installed  as  a
  15.      set-uid root executable.
  16. SEE ALSO
  17.      de(9).
  18.                                                                              1