如何解释filefrag命令的输出?

我的系统中有一个转储文件,其中包含机密数据。 我尝试使用filefrag命令打开它。 输出是:

 root@sateesh935-SVE15115ENB:/home/sateesh935/Desktop/g3# filefrag -v dump Filesystem type is: ef53 File size of dump is 267894784 (65404 blocks, blocksize 4096) ext logical physical expected length flags 0 0 3328000 6144 1 6144 3500032 3334144 32768 2 38912 3532800 26492 eof dump: 2 extents found 

以上输出结果如何? 如何从转储文件中获取数据?

我会告诉你我所做的整个程序。

  1. 首先我得到了dump.enc文件。

  2. 要从中提取数据,我使用了以下命令。

     openssl enc -d -aes-256-cbc -in dump.enc -out dumpL 

    并且它由AES-256加密,因为我使用了密钥并且我解压缩了文件。

  3. 现在我得到了dumpL文件,其中包含一些数据。

  4. 但我不知道如何查看该文件中的数据。

你有一个名为dump的文件。 它分为两部分。 根据联机帮助页 filefrag reports on how badly fragmented a particular file might be. It makes allowances for indirect blocks for ext2 and ext3 filesystems, but can be used on files for any filesystem. filefrag reports on how badly fragmented a particular file might be. It makes allowances for indirect blocks for ext2 and ext3 filesystems, but can be used on files for any filesystem. 。 如果你期望它做其他事情,你做错了。

当然不知道“转储”是什么或在哪里,我们不能说太多。 EF53是一个“魔术”号码,指的是EXT2 / 3和4,是硬盘转储正在使用的文件系统。 您无法提取除此之外的任何其他有用信息。