I have a new large volume I would like to create a folder in called home to serve the users home folders, so the location would be /bigvolume/home. Would creating a softlink (ln -s) from /home to /bigvolume/home cause any problems?
Asked
Active
Viewed 79 times
1 Answers
3
No, I have never had problems doing that, and I done that on many machines.
If for some reason you didn't want to use a symlink then you could just do a bind mount.

Zoredache
- 130,897
- 41
- 276
- 420
-
Thank you, I knew there was something like bind mount, but I couldn't remember the name of it for the life of me. – specto Aug 04 '10 at 17:35