Hi!
Thanks for the feedback.
Well, you're welcome. Your link does what I want to do.
Since I don't understand
what you mean by
I would like /dev/disk0s3 to
mount on /Users and you don't wish to
"re-explain", I'm dropping out of this discussiion.
Oh, so this is what you did not understand? I'm sorry, I thought it was the procedure that I wanted to accomplish. Since I had explained it twice, I figured I just was not able to explain it.
Volumes can be mounted anywhere you want.
Say you have a partition containing whatever data, on the node /dev/disk0s3. When unmounted, you cannot access it in an organized fashion. But if you type in a terminal
mount -t hfs /dev/disk0s3 /Users/David/Documents
the contents of the partition will appear in the "Documents" directory of the user David (and replace the actual contents of this directory).
If you do then
umount /dev/disk0s3
the partition gets unmounted and you don't see what's in it anymore (and you see again the original contents of your Documents directory).
As I said earlier, manually, you can mount any partition anywhere you want.
So for my problem, I could do
mount -t hfs /dev/disk0s3 /Users
But this is not a a satisfying solution, for it requires me to do it (manually) each time I boot the computer.
I could also make a startup script that does this automatically at boot, but I am not familiar enough with the MacOSX boot procedure yet -- I just bought my computer on monday.
My question was: since MacOS decides on its own to mount my partition /dev/disk0s3 on /Volumes/Untitled, there has to be somewhere a configuration file that tells it: "At boottime, do a mount -t hfs /dev/disk0s3 /Volumes/Untitled".
What I was looking for was the location of this file, and I just want to modify it so it performs a "mount -t hfs /dev/disk0s3 /Users".
As for the reasons for this procedure (you said you never needed it): one of them is described on the link you provided me with. If you ever need to reinstall the system (which may be my case since I'm playing with it in order to learn how everything works), you don't have to worry about losing your personal data. Just wipe out the system partition, reinstall MacOS, mount your other partition on /Users.
Your data is still there, organized as it was before you reinstalled. For you, the reinstall was transparent.
Is that better?
Good computing.
Thanks, same to you.
--
David.