home *** CD-ROM | disk | FTP | other *** search
/ Executor 2.0 / executorv2.0.iso / pc / linux / extra / docs / maillist / text / archive.96 / text2957.txt < prev    next >
Encoding:
Text File  |  1996-07-25  |  1.2 KB  |  26 lines

  1. >>>>> "Vincent" ==   <coyote@step.polymtl.ca> writes:
  2.  
  3.     Vincent> Unfortunately, adding --null to my tar command line did
  4.     Vincent> not seem to make any kind of difference (current command
  5.     Vincent> line: tar --null -cvpzf ...): tar still complains about
  6.     Vincent> Long Links.. could it be that GNU tar has a limitation on
  7.     Vincent> the number of characters in the names of the files handed
  8.     Vincent> to it? I know this is not really the right newsgroup for
  9.     Vincent> that but tar only has problems with my executor partition
  10.     Vincent> and the some of the files and directories on it. At this
  11.     Vincent> point, I am a little lost about what to do to be able to
  12.     Vincent> put all files on my executor partition on my backups.
  13.  
  14. "Normal" tar has a limitation of 100 characters per pathname.  GNU tar
  15. does not have this restriction; it uses some magic to save and restore
  16. the correct full pathnames.  I typically invoke GNU tar with:
  17.  
  18. tar cvzf foo.tar.gz foo
  19.  
  20. and I have never had any problems with long pathnames.  Strange.  Make
  21. sure you are invoking it in such a way that spaces in filenames will
  22. not cause files to get split into multiple argumements to tar...
  23.  
  24. -Mat
  25.  
  26.