DISQUS

Tech-Recipes: Create a symbolic link in UNIX | UNIX | Tech-Recipes

  • Nathan Stiles · 9 months ago
    cd /etc/rc2.d
    ln -s ../init.d/httpd S77httpd

    All rc links should be hardlinks. This is not a good example.
  • Tom · 8 months ago
    Maybe you could provide the command syntax to make it a hard link:

    ln ../init.d/httpd S77httpd
  • Thomas · 7 months ago
    > ln -s /export/space/common/archive /archive
    Just what i was looking for. Thanks!