我如何发现非描述LTO3的内容?

我已经拿到了一本已经写成内容的LTO3,但我不知道它是如何制作的。 我已经被赋予了查找磁带上实际存储的内容的任务。 我已经尝试了通常的tar命令,但错误提示磁带没有使用tar编写。 什么是我发现磁带上的内容是什么types的最简单的方法? 我对这一切都很陌生,所以一步一步将不胜感激! 提前致谢!

我已经使用了以下命令:

这是试图获得内容的列表 – Input1:

dd if=/dev/nst0 bs=256k skip=1 | /bin/tar -tf - > file.txt 

输出1:

 dd: '/dev/nst0': cannot skip to specified offset dd: warning: partial read (65536 bytes); suggest iflag=fullblock /bin/tar: This does not look like a tar archive /bin/tar: Skipping to next header dd: error reading '/dev/nst0': Input/output error 0+357469 records in 0+357469 records out 23427088384 bytes (23 GB) copied, 260.175 s, 90.0 MB/s /bin/tar: Exiting with failure status due to previous errors 

input2:

 tar -b 512 -tf /dev/st0 > file.txt 

输出2:

 tar: Record size = 128 blocks tar: This does not look like a tar archive tar: Skipping to next header tar: /dev/nst0: Cannot read: Input/output error tar: /dev/nst0: Cannot read: Input/output error tar: /dev/nst0: Cannot read: Input/output error tar: /dev/nst0: Cannot read: Input/output error tar: /dev/nst0: Cannot read: Input/output error tar: /dev/nst0: Cannot read: Input/output error tar: /dev/nst0: Cannot read: Input/output error tar: /dev/nst0: Cannot read: Input/output error tar: /dev/nst0: Cannot read: Input/output error tar: /dev/nst0: Cannot read: Input/output error tar: /dev/nst0: Cannot read: Input/output error tar: /dev/nst0: Cannot read: Input/output error tar: Too many errors, quitting tar: Error is not recoverable: exiting now 

尝试提取:

input3:

 tar -b 512 -xvf /dev/nst0 

输出3:

 tar: /dev/nst0: Cannot read: Input/output error tar: At beginning of tape, quitting now tar: Error is not recoverable: exiting now 

我现在试着把一些内容加到一个文件中:

input4:

 dd if=/dev/nst0 of=file.dat bs=8k count=1 

输出4:

 dd: error reading '/dev/nst0': Cannot allocate memory 0+0 records in 0+0 records out 0 bytes (0 B) copied, 0.000700687 s, 0.0 kB/s 

我只会dd第一个说8K的文件dd if=/dev/nst0 of=file.dat bs=8k count=1 ,然后使用文件或string或hexdump或od或其他来检查内容。 也许有一些标题信息会告诉你什么是用来写磁带。 否则,它可能几乎是任何东西,并以一种可以使用的方式获取信息可能是相当不可能的。