How to set a symbolic link on linux systems commandline (ln explanation)

ln -s {$sourceDirectoryorFileName} {$targetPathNameWhichWillContainTheSourceFileorDirectory}

for example;

sudo ln -s /var/www/site1Directory /mnt/cloud/sites/

this command will create a site1Directory under the /mnt/cloud/sites/ directory and store the data there.