Wednesday 15 February 2012

create symbolic link in REDHAT

The simple way to create symbolic link in REDHAT is just enter the following command at the shell prompt : ln -s [target-file/directory] [symbolic-name_file/directory] For example, create symbolic link for /mydir as /home/myname, enter the following command : ln -s /home/myname /mydir Output : lrwxrwxrwx 1 myname myname 1 2012-02-15 09:00 mydir -> /home/myname

Original post : create symbolic link in REDHAT

No comments:

Post a Comment