dumpsfs.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <html>
  2. <head>
  3. <title>dumpsfs</title>
  4. <body bgcolor=#ffffff>
  5. <h2 align=center>dumpsfs</h2>
  6. <h4 align=center>OS/161 Reference Manual</h4>
  7. <h3>Name</h3>
  8. dumpsfs - dump information about an SFS filesystem
  9. <h3>Synopsis</h3>
  10. /sbin/dumpsfs <em>raw-device</em>
  11. <br>
  12. host-dumpsfs <em>disk-image-file</em>
  13. <h3>Description</h3>
  14. dumpsfs dumps out selected information regarding the contents and
  15. structure of the SFS filesystem on the device it is passed.
  16. <p>
  17. Like <A HREF=mksfs.html>mksfs</A>, it is also compiled for the
  18. System/161 host OS, and in that form can access System/161's disk
  19. image files.
  20. <h3>Requirements</h3>
  21. dumpsfs uses the following system calls:
  22. <ul>
  23. <li> <A HREF=../syscall/open.html>open</A>
  24. <li> <A HREF=../syscall/read.html>read</A>
  25. <li> <A HREF=../syscall/write.html>write</A>
  26. <li> <A HREF=../syscall/lseek.html>lseek</A>
  27. <li> <A HREF=../syscall/fstat.html>fstat</A>
  28. <li> <A HREF=../syscall/close.html>close</A>
  29. <li> <A HREF=../syscall/_exit.html>_exit</A>
  30. </ul>
  31. dumpsfs should function properly once the file system assignment is
  32. complete. You may wish to extend it in the course of doing that
  33. assignment.
  34. </body>
  35. </html>