Scott Maxell schrieb:
> I am looking for a way to share files between two computers on my network.
> Computer A - dual boot (Win98, RH 9)
> Computer B - RH 9
>
> I have directories mounted in fstab on computer A that are FAT32, and I want
> to be able to access them from computer B. The information that I got from
> the NFS howto says that it is not advisable to share FAT32 partitions with
> NFS. Is there another way to go about sharing these files without changing
> that partition to ext3? Or am I pretty much stuck with not having the files
> accessible to both computers when running linux unless I do so?
>
I think the best is to mount the directories on computer B.
So it doesn't matter if A is running linux or win.Use
smbmount, mount or add it to fstab on combuter B. For more
information see:
Mounting a windows machines drives on a linux machine
here in network
summary:
smbmount //servername/sharename /localname -o username=xxx
you can write this to fstab
//servername/sharename /localfolder smbfs
rw,noauto,user,umask=000 0 0
|