Dave Jarvis <[EMAIL PROTECTED]> writes: > $ tar -tvf /mnt/dvd/backup.tar > ... huge, but incomplete, file listing ... > Segmentation fault > > I performed the same command on the original file, stored on a 20GB > hard drive, without error: > > $ tar -tvf /archive/backup.tar > ... huge file listing, no errors ...
That's strange. Can you use GDB to find out where the segmentation fault occurred? Do something like this: $ gdb /path/to/tar (gdb) run -tvf /mnt/dvd/backup.tar ... long listing, followed by segmentation fault ... (gdb) where _______________________________________________ Bug-tar mailing list [email protected] http://lists.gnu.org/mailman/listinfo/bug-tar
