3

I have an NTFS partition mounted at /media/disk.

I run the following command: ls -lai /media/disk, and I got the following result:

enter image description here

The first column is for the inode number. But why is the inode number being shown, I thought that NTFS doesn't use inode numbers!

Jeff Schaller
  • 67,283
  • 35
  • 116
  • 255

1 Answers1

1

What unix calls an inode number, NTFS calls an MFT record number. Basically the index into the Master File Table that describes the file.

psusi
  • 17,303