311

Screenshot of terminal with symbolic link

Can you tell me what this is in the area marked red?

If I want to change /media/files/tb-prod/files to some other path, how would I do that?

Matthias Braun
  • 7,797
  • 7
  • 45
  • 54
Jalil Khan
  • 3,221
  • 2
  • 12
  • 11
  • 1
    yea.. but i didnt know about symbolic link before thats why i added screenshot to someone help. and @michael homer answered me for that. – Jalil Khan Aug 26 '14 at 03:27
  • 3
    The other question should be marked as a duplicate of this one. This one is more useful. – mbomb007 Aug 31 '20 at 18:10

1 Answers1

483

files is a symbolic link to /media/files/tb-prod/files. When you access files or anything inside it, you'll really access the path under /media. Symbolic links are made and updated using the ln command. This link could have been made with:

ln -s /media/files/tb-prod/files files

-s means to make a symbolic link. To update a link, either delete the link and create it as above, or use the -f option to ln as well. If you are linking to a folder, you should include the -n option:

ln -sfn /a/new/path files

This will replace the link with a new one pointing at /a/new/path.

The -n option is necessary when linking to a different target folder to avoid creating a sub-folder inside that symbolic link and instead replace the symbolic link completely.

Basil A
  • 113
  • 4
Michael Homer
  • 74,824
  • 17
  • 212
  • 233
  • 3
    Example how to delete the symlink would be good – Andrew Atkinson Apr 30 '18 at 12:29
  • 11
    @AndrewAtkinson: you delete a symlink as if it's a normal file, with `rm /path/to/symlink`. – henrebotha Jun 22 '18 at 10:21
  • 3
    I don't understand what the `-n` does, even after reading the man page. linking to symlinks of directories seems to work without it.. Anyone know? – naught101 Jul 30 '19 at 06:10
  • 12
    @naught101 It's not for linking to directories, it's for replacing links to directories instead of making a new link inside the directory. – Michael Homer Jul 30 '19 at 06:14
  • 12
    @MichaelHomer AHHH!! I HATE that default behaviour. `-n` is something I've been wanting for ages! Thank you for the clarification! – naught101 Jul 30 '19 at 12:52