I ran into a strange problem with SMB file sharing on my AAO iAtkos v5 install. I don't know if it's a side effect of something I did when installing or if it's present in all iAtkos installs. In any case, I figured I'd document it here in case anyone else runs into it. The symptom is that with SMB file sharing enabled, the AAO becomes visible to Windows machines on the same network, but all attempts to connect and see the shares fail to authenticate. The same is true if you try to get access using smbclient on a Linux box. The fix (in my case) was to go into the terminal and edit the file [b]/etc/smb.conf[/b]. Towards the bottom of that file (right before the "printers" section) was the following: [code] ; Pull in system-wide preference settings. These are managed by ; synchronize-preferences tool. include = /var/run/smb.conf [/code] However, on my big G5 the location for the "include" is "/var/db/smb.conf". After making that change and rebooting, SMB file sharing worked perfectly and I could authenticate and see my shares on all the other machines on my network. Since editing files in the terminal isn't exactly everyone's cup of tea, here's a one-liner that will take care of it for you: [code] $ sudo sed -i .bak -e "s/var\/run/var\/db/" /etc/smb.conf [/code] Note that this saves a copy of your original smb.conf file as /etc/smb.conf.bak so if anything goes wrong you can put the original back.