Koozali.org: home of the SME Server

Legacy Forums => General Discussion (Legacy) => Topic started by: kokomi on July 20, 2005, 08:23:21 AM

Title: Map network drive.
Post by: kokomi on July 20, 2005, 08:23:21 AM
Is it possible for SME to use a network share on a Windows XP box (or a NAS device)?  My SME server only has a 6GB drive, but I have 200MB on my Windows XP box.  Can I map a drive to this share and use it for some (all) users home folders?
Thanks,
-Ken
Title: Map network drive.
Post by: egerards on July 20, 2005, 09:41:28 AM
I've not tested it, but you might have a look at the smbmount command. The manual page should provide you with the necessary details.
Title: Thanks
Post by: kokomi on July 20, 2005, 02:54:44 PM
Thanks,
I will take a look tonight.
Title: Map network drive.
Post by: rmoria on July 21, 2005, 10:20:52 AM
This is what I use when I want get something with FTP from my XP pc behind my SME:

Code: [Select]
mkdir /home/e-smith/files/ibays/Primary/files/test
mount -t smbfs //XPPC/Sharename /home/e-smith/files/ibays/Primary/files/test -o uid=admin


And to remove
Code: [Select]
umount /home/e-smith/files/ibays/Primary/files/test
rmdir /home/e-smith/files/ibays/Primary/files/test
Title: Map network drive.
Post by: kokomi on July 21, 2005, 02:19:45 PM
I think that is exactly what I am looking for.
Thanks,