Hmmm.
As a preliminary, you can check to make sure all users that you want to share are part of the musicshare group. For example,
id -Gn thomas will list out all the groups that I belong to -- replace with your own short names of course. If musicshare does not appear in this list for any user, then the group is set up incorrectly and you should go into Netinfo Manager and add the user to the musicshare group.
Ah, I see your second post now. Apparently that is not the problem, with your laptop at least. Keep it in mind for the desktop.
Did you happen to get any "permission denied" errors or anything similar during any of the steps I listed? If you did, that could be problematic as something that was supposed to happen didn't.
You get the error that your user doesn't have sufficient privileges to import into iTunes. I have never heard of that error before, but I am going to assume that it means that iTunes cannot write the imported files to some part of the iTunes music folder that it thinks that it has to. Do you have a different interpretation of the error? Anyway, there's a way to test for this.
code:
find ~/Public/iTunes ! -user $USER ! -perm -0060
-or ! -perm -0600 -or -type d ! -perm -0110
The above command will list any files or directories in the iTunes folder that are (1) not owned by you and not are group readable or writable (so you could not modify them), OR (2) owned by you but you can't read or write to them (which would just be wacky), OR (3) is a directory and cannot be opened either by the owner or the group (wacky). If the command returns nothing, then there is no trouble along these lines. If the command returns a few paths, then that may be a source of trouble, but not necessarily.
AGH. I see your THIRD post now. Apparently
that was the issue, but it no longer is. I need to type faster. /forums/ubbthreads/images/graemlins/wink.gif Well, the upshot is you can try a few of these things on the desktop.
Edit: make sure to run that
find command above as the user sharing the music if you test this on the desktop.