0

I have this problem when I put this: ln -s ../../data/*EOF .

ln: failed to create symbolic link './S1A_OPER_AUX_POEORB_OPOD_20210510T121540_V20210419T225942_20210421T005942.EOF': Operation not permitted

I have also tried to do it with sudo ln -s ../../data/*EOF .

Does anyone know what to do?

muru
  • 207,228

1 Answers1

0

That asterisk in the real path parameter of the link command could be ambiguous. Replace it with the one and only name it would resolve to. Also, don't forget the second parameter of a link command for a symbolic link

quill
  • 1,015