I need to allow 2 users to mount/unmount as follows
Code:
mount -t cifs //192.168.1.8/public /mnt/publiciomega1 -o username=salam,password=password
This works fine with root, i ran the following
Code:
chmod u+s /sbin/mount.cifs
thinking that this should allow my user to do the the job, still getting the following message
mount: only root can do that
In fstab I dont see an entry for this.
I am trying to setup an auto-mounting network drive. The network drive requires a user/pass.
I have been trying to mount a drive, but anything i do i get 'Access Denied',
I tried:
mount -t cifs //192.168.x.x/m -o username=user,password=mypass /mnt/mymount
mount -t cifs //192.168.x.x/m -o credentials=cred /mnt/mymount
mount -t cifs //192.168.x.x/m -o username=user,password=mypass,domain=xxxxx /mnt/mymount
I want to user a local user account on the windows machine and not a domain user
I'm maintaining a heterogeneous network of mac and linux so I decided to create a little perl script to unify mounting strategies across machines.
The current implementation in linux is in /etc/fstab works fine:
//myserverhere.com/cifs_share /mnt/cifs_share cifs
user,uid=65001,rw,workgroup=DEV,credentials=/root/.cifs 0 0
and /root/.cifs contains
username=ouruser
password=ourpassword
I
I have a number of fstab entries that will no longer mount. They used to work under 10.04 and after I did a clean install of 12.04, they did work for a while although they would periodically hang up and become unresponsive until they were unmounted "lazily" and then remounted.
Hey Guys,After upgrade my system I can't get to connect my NAS. Using the same command that I've ever used, the system reply... # mount -t cifs //192.168.1.4/snake /mnt/snake/
Password for user@//192.168.1.4/snake:
mount error(38): Function not implemented
Refer to the mount.cifs(8) manual page (e.g.
I can mount the drive in the following way, no problem there:
mount -t cifs //nas/home /mnt/nas -o username=username,password=pass\!word,uid=1000,gid=100,rw,suid
However if I try to mount it via fstab I get the following error:
//nas/home /mnt/nas cifs iocharset=utf8,credentials=/home/username/.smbcredentials,uid=1000,gid=100 0 0 auto
.smbcredentials file looks like this:
username=
I'm trying to mount a Windows 7 in 12.10, but it doesn't seem to have cifs working. I've installed smbfs, winbind, and cifs-utils. If i run:
sudo mount -t cifs //servername/shareName /mnt/point
I get this:
mount error: cifs filesystem not supported by the system
mount error(19): No such device
Refer to the mount.cifs(8) manual page (e.g.
We have a CIFS share on our network. I have a centos 6.3 server in which I want to map the share.
The problem is that when mounting it in /etc/fstab I have to set which user (and password) to use.
The problem is that the linux server has many users.