Take the 2-minute tour ×
Unix & Linux Stack Exchange is a question and answer site for users of Linux, FreeBSD and other Un*x-like operating systems. It's 100% free, no registration required.

Can Symbolic Links span different file systems in Unix or Linux ??? I.e consider different file systems like ext2 and ext3 can symbolic link span them?

share|improve this question
1  
A symbolic link just stores a path. It can store any string that's made of valid path characters; whether or not your filesystems understand the result is a different matter. –  HalosGhost Mar 29 at 0:51

2 Answers 2

I think your confusing mount points and filesystem semantics.

The answer is yes though.

Symbolism has nothing to do with file systems or mount points.

See http://en.m.wikipedia.org/wiki/Symbolic_link

share|improve this answer

Sure can, unless target/source filesystem do support soft links.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.