1

I have a listing of a directory which contains this entry:

d????????? ? ? ? ? ? dir_name

I can't get into it, even as root. How to access?

Thom Rogers
  • 121
  • 2
  • Where is that directory located? This looks like the OS is not able to access it. Like a remote connection (NFS?) or a drive that's disconnected. – Alexis Wilke Nov 12 '15 at 04:35
  • http://serverfault.com/questions/65616/question-marks-showing-in-ls-of-directory-io-errors-too – Jacob Evans Nov 12 '15 at 04:36

1 Answers1

0

See if this helps:

chown root "? dir_name"
chmod 755 "? dir_name"
ls -lha "? dir_name"
rubynorails
  • 369
  • 3
  • 14