0

I was tried to Mount server secondary hard disk shared folder to my client computer. Already the secondary share folder was mound on server like this

/media/sdc1/foldername/

i want to auto mount above share folder to my client computer when start.

The following code was written on /etc/fstab

//192.168.1.150/media/sdc1/HTTPServer     /media/HTTPServer     ntfs-3g     defaults,locale=en_US.utf8   0    0

it's does not work and it's return the following error

mount: only root can mount //192.168.1.150/media/sdc1/HTTPServer on /media/HTTPServer

i was tried to share from ubuntu 12.04 server to ubuntu 13.04 client pc. i was installed samba file share server on server pc. it's work fine for windows os share. but i need ubuntu auto-mount share . i was read so many article for this issues. But i did not get correct please tell anyone. thanks advance

1 Answers1

0

Looks like that you have tried to mount network share with ntfs filesystem, right? Have you tried to mount it using mount.cifs or smbfs? Or even your share has another filesystem it shoud use smbfs not ntfs-3g I think.

Could you please provide mount -v | grep $foldername output for already mounted share?

And part of samba.conf fot this share from server computer.

Svyatoslav
  • 399
  • 2
  • 7