How to symlink a file in Linux?

To create a new symlink (will fail if symlink exists already):

ln -s /path/to/file /path/to/symlink

To create or update a symlink:

ln -sf /path/to/file /path/to/symlink

ln -s TARGET LINK_NAME

Where the -s makes it symbolic.

Like
Like Love Haha Wow Sad Angry

Check Also

Membuat User Sudo di Ubuntu 20.04

Kebanyakan penyedia VPS menyediakan server dengan user root sebagai user utama/default. Hal ini bisa jadi …

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments