85.4k views
4 votes
You have an xfs file system in your linux system represented by /dev/sdb1 you need to copy all the filenames on the drive to the /reviewxfs file you must be able to read the filenames in the /reviewxfs file which command should you use?

User Bynx
by
4.2k points

1 Answer

7 votes

Answer:

xfs_metadump -o /dev/sdb1 /reviewxfs

Step-by-step explanation:

In Linux, the command xfs_metadump is a debugging service which will copy a metadata in an XFS filesystem to a file. The command must be followed by the source argument which is the pathname and the target argument as well that is the new file name. (in this case /dev/sdb1 /reviewxfs). - O, indicates that the output should be sent to the standard output stdout

User Robert Sanders
by
4.6k points