And what do you mean with "symbolic link" because i??m going to change to linux soon
- An unix data-file is just an area of bytes within a filesystem (without name).
- To access the data of a file, you give it one (or more) "filenames".
- If the same area of bytes has more than one filename, the filenames are called "hard links".
- Filenames are stored as one of several possible kinds of entries in a directory tree, the tree starting at "/".
- Other types of directory entries are devices, sockets, fifos and "symbolic links".
- A symbolic link points to ANY other directory entry anywhere in the directory tree, including another symbolic link.
Example:
Your textures are in the directory /home/celestia/textures. You now can
make a symbolic link, pointing to this directory,
e.g.
/home/cel1/textures -> /home/celestia/textures. As soon as you
access something within the subtree of /home/cel1/textures, you actually
access it within /home/celestia/textures.
I.e. there is ONE actual data directory tree, but you can access it
as if it is replicated to many other places.
Did this help?
MfG - HJW