how to do this


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers how to do this
# 1  
Old 06-15-2006
how to do this

how to make u1 like below

lrwxrwxrwx 1 root other 8 ao-t 20 1998 u1 -> /data/u1

when i do "cd u1" it take me directly to /data/u1

how to make and make it the above attributes "lrwxrwxrwx"

Regards
# 2  
Old 06-15-2006
use ln cmd

Code:
ln -s target_dir symlinkname

I think by default symlinks have 777 permissions. Anyway you can create one and check it out. Read
Quote:
man ln
for more.
# 3  
Old 06-15-2006
***************************

Thank You


***************************
 
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question