linux user stuff wrote:
You may want to change the name you gave your email client :-)
I have !Samba running on the Acorn machine and it's discs are all shared and I can see all of them from Windows (when the PC is running in that mode). I can also see the Windows disc from the Acorn using some software called !LanMan98.
I'm also trying to access the Linux drive from Risc OS using !LanMan98 but haven't managed that bit yet. I'm not too worried about that at this stage.
I'm a bit too old to be playing computer games but I think it was called Lander, or Elite or Air Supremacy and 'that other OS' is called Risc OS and is still very much alive. Pace now own the OS and use it in some of their set-top boxes.
Lander. As I recall, Acorn did a bit of an Apple and created something technically rather good, but then made a bit of a hash of the marketing/sales. Lots of schools (inc. mine) bought the Archimedes, but no one else.
I am using smb on the Linux box but as I said above, I think the errors are because the system is trying to mount the Acorn discs before smb is running on the Linux box. The errors btw are like this - [mntent]: line 10 in /etc/fstab is bad with the line being repeated with different line numbers for each of the drives.
Samba is a creature of two parts. Smbd serves drives; that is, it lets another machine see your Linux drives. The other part of Samba is smbmount, which is a wrapper to mount.smb, and which you don't especially need. All I needed to do to get a NetBIOS (Samba-style) share mounted from a PC was to add this to my /etc/fstab:
//Richard/R\040Cooke /mnt/share smbfs auto,guest,rw,exec 0 0
(remember to mkdir /mnt/share; apologies if that is below your noddy level) The \040 is an escape sequence for space. Mount automagically realises it needs to use mount.smb to mount smbfs, calls it for you, and everything is happy. In the boot sequence you should see 'Mounting SMB filesystems [ OK ]', but if it fails, try:
# mount /mnt/share
Everything to do with the share has to be done as root; I haven't figured out how to get it mounted with generous permissions.
You can add 'gid=ZZZ' to the options bit (with auto &c) to change the group id the share is mounted as, but the group doesn't have write permission. Anyone got any ideas as to how to get around this properly? You could always hack something into your init scripts (/etc/rc.d/init.d/local on Mandrake 8, as I recall) to change the permissions on the mount.
Hope this helps, Alexis