symlinks

Discussion in 'Server Operation' started by Johan Strange, Feb 19, 2007.

  1. Johan Strange

    Johan Strange New Member

    Hi,

    Can someone offer me some assistance with creating symlinks. This links to my other thread:

    http://www.howtoforge.com/forums/showthread.php?t=10623

    Basically I want to create a symlink to another directory using an entry placed in the users .bashrc file. So far I tried to add:

    ln -s /home/ftp/

    But when I logon using FTP there is no link. Am I barking up the wrong tree.

    BRGDS Johan
     
  2. martinfst

    martinfst ISPConfig Developer ISPConfig Developer

    With
    Code:
    # man ln
    you will get an explanation (manual pages) of the syntax of this command (ln [OPTION]... TARGET... DIRECTORY). To do what you described:
    Code:
    ln -s somefilename /home/ftp
     

Share This Page