From Ubuntu 11.04 to 12.04 i've been able to mount my nas shares by first making directories in the /media folder, then sudo gedit /etc/fstab to include the following line for each share I want to auto-mount;
//servername/sharename /media/windowsshare cifs guest,uid=1000,iocharset=utf8,codepage=unicode,unicode 0 0
Now, however, I upgraded to 12.10, and suddenly I'm not able to mount the sha
I am running Ubuntu 11.10 from a partitioned external hard disk with Windows 7 on my main PC internal HDD.
When I go into the Home Folder and click on System Reserved, I get the following message:
Error mounting: mount exited with exit code 1: helper failed with:
[mntent]: line 1 in /etc/fstab is bad
[mntent]: line 2 in /etc/fstab is bad
mount: can't find /dev/sda1 in /etc/fstab or /etc/mta
OK so I've got two samba shares that I'm trying to get mounted. Both are being shared from the same Windows 7 machine. One mounts with out problems, the other one complains about permission denied.
I'm trying to mount widows share on my laptop and everything mounts ok but somehow I get permisssion denied when I try to create new file inside mounted folder. I tried noperm, uid, gid, noacl etc. and nothing seems to work. Everyone who use windows mounts share with same credentials have full r/w access.
In providing the same setup in fstab and same mount points as every other distro I use, I cannot get a mount to work at all in Fedora 18 Gold Beta
Everything indicates the mounts are working, mount shows them, mount -a and umount works.
I can edit fstab and run mount -a and the changes are instant
When I try to cd to these mounts, I and su are both told we have no permissions.
I just re installed the latest stable #! and have run into an issue with my fstab. I have a 2nd #!
I just re installed the latest stable #! and have run into an issue with my fstab. I have a 2nd #!
I can successfully mount a Samba share on a local folder in Opensuse 12.1:
sudo mount -t cifs -o username=<username>,password=<password> //<win-box>/<share> <mountpoint>
The problem comes if i interrupt (^C) for example a long cp process in <mountpoint>: I get
> cp -r BIG_FOLDER/ /tmp
^C
> ls
ls: reading directory .: Permission denied
The only soluti
I've got a private share set up on my home server (running Ubuntu Server 12.04.2 64-bit), such that I can mount it with a username/password. I've got it auto-mounting in /etc/fstab with the following line:
Code:
//192.168.1.120/jaywalker_pshare /media/server cifs username=jaywalker,password=xxx,domain=WORKGROUP 0 0
This worked immediately after I set it up.