home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / comp / unix / admin / 6615 < prev    next >
Encoding:
Internet Message Format  |  1992-12-13  |  1.3 KB

  1. Path: sparky!uunet!UB.com!pacbell.com!ames!nsisrv!mimsy!prometheus!media!irscscm!astone
  2. From: astone@irscscm.UUCP (Art Stone)
  3. Newsgroups: comp.unix.admin
  4. Subject: Re: Best method for filesystem copy?
  5. Message-ID: <1992Dec11.184402.28159@irscscm.UUCP>
  6. Date: 11 Dec 92 18:44:02 GMT
  7. References: <1992Dec8.144945.6339@nsisrv.gsfc.nasa.gov>
  8. Organization: Internal Revenue Service
  9. Lines: 22
  10.  
  11. markb@news.gsfc.nasa.gov (Mark R. Baith) writes:
  12. : I need to copy a filesystem currently housed on a 1 Gb disk to a 2 Gb
  13. : disk.  dump seemed like a good idea, but the procedure kept asking for
  14. : additional tapes??? I was told that dump must be given a large enough
  15. : combo of length/density in order to "fool" the procedure into thinking
  16. : you're basically doing a dump to one huge tape rather than a disk...
  17. : this is somewhat inconsistent with what I've read on the subject, but
  18. : then again, the SGI man page on dump says absolutely nothing about
  19. : disk to disk dumps...Does anyone have an idea?
  20. :                                Thanks in advance,
  21. :                                           Mark
  22.  
  23.  
  24. from one filesystem to another.  The "other" filesystem may have to be remote
  25. mounted.  Anyway, you cissue the following command:
  26.  
  27.     find /sourcedir -print | cpio -pdmv /newdir
  28.  
  29. Good luck!!
  30.