8

A file icon shown below has a cross on the lower right corner, what does that mean?

enter image description here

LWZ
  • 193
  • 1
  • 8

3 Answers3

16

You don't have read permission for that file.

3

Simple self-answering test:

  • Create an empty file

    touch ~/bar
    

    enter image description here

  • Remove the read permissions

    chmod -r ~/bar
    

    enter image description here

A.B.
  • 90,397
0

You can provide others read access to that file so that it wont display.

sudo chmod o+r <your_filename>