Symbolic Links are basically a link to some application. They save your time to everytime go to that particular folder deep into the directory structure to start your application.
We can create a symbolic link by :-
ln -s location_of_your_link your_term_for_link
Example
ln -s /usr/local/bin/eclipse eclipse
We can create a symbolic link by :-
ln -s location_of_your_link your_term_for_link
Example
ln -s /usr/local/bin/eclipse eclipse
now when you type eclipse on terminal, it will go to that location_of_your_link and open it.
To confirm, the link has been created, try these
To confirm, the link has been created, try these
- Type eclipse and it will open up the application
- Use the command "ls -la", and you will see something like this
arrow (->) means symbolic link
Enjoy Linux...