Hi, all. I want to mount a windows shared folder on kubuntu startup.
I wrote this on the /etc/fstab file:
and when I clic on the icon that appears under the "Network" session of Dolphin, I get a "Only root can mount" message.
and If I go to the /home/myusername/mount/directory its shows empty (not mounted)
The odd thing is that I can mount it with no problem using the command:
The file in /home/mysuername/Directory/with/credentials/credentiales is:
Thank you all for your help.
I wrote this on the /etc/fstab file:
//IP_Server/Shared/Windows/Network /home/myusername/mount/directory cifs uid=linux_user_id,credentials=/home/mysuername/Directory/with/credentials/credentiales,iocharset=utf8,sec=ntlm 0 0
and If I go to the /home/myusername/mount/directory its shows empty (not mounted)
The odd thing is that I can mount it with no problem using the command:
sudo mount -t cifs -o 'credentials=/home/mysuername/Directory/with/credentials/credentiales,uid=linux_user_id,gid=linux_group_id, sec=ntlm,vers=1.0' //IP_Server/Shared/Windows/Network /home/myusername/mount/directory
username=windowsDomainUsername
password=windowsDomainPassword
domain=windowsDomainName
password=windowsDomainPassword
domain=windowsDomainName
Comment