Hello, Welcome to Webune Support Fourms.

We provide Excellent Dedicated Linux Servers.

One questions that comes often from our customer is how can they tell which are symbolic links on their server.

for example. lets say you login to your UNIX server using SSH, well, the background looks black and the default text is color gray. so how can you tell which are the symbolic links.

well, lets put it to practice

login to your server. if you login to your server remotely using ssh, this is great because thats what i will be using.

once you are logged in to the terminal, send this command to go your home directory:

SHELL COMMAND:
cd ~


now lets create a simple text file:

SHELL COMMAND:
echo "Hello World" > myfile.txt


now list the files in your home directory, you should see myfile.txt - COOL!

SHELL COMMAND:
ls


now we are going to make a symbolic link of myfile.txt we just created:

SHELL COMMAND:
ln -s simple.txt SympleLink


cool, now we just created a simbolic link, list your files and you will see the new symbolic link we just created.

SHELL COMMAND:
ls


in my server it shows an aqua/blueish color
[see image below]

25p-2627-simbolic-link.gif