Per creare un nuovo collegamento simbolico (fallirà se il collegamento esiste già):
ln -s /path/to/file /path/to/symlink
Per creare o aggiornare un collegamento simbolico:
ln -sf /path/to/file /path/to/symlink
ln -s TARGET LINK_NAME
Dove -s
lo rende simbolico.
ln -s EXISTING_FILE_OR_DIRECTORY SYMLINK_NAME