EDIT:
Thanks to How do I correctly mount a NTFS partition in /etc/fstab? and cmak.fr both the local NTFS drive and the network samba shares seems to work properly now (recylce bin and file operations works)the fstab lines for the NTFS drive:
UUID=882679BB2679AAB8 /home/pietro/Storage ntfs-3g defaults,nls=utf8,umask=000,dmask=027,fmask=137,uid=1000,gid=1000,windows_names 0 0
for the samba shares:
//192.168.2.3/media/home/pietro/Lan/MediaDrive cifs uid=1000,gid=1000,_netdev,credentials=/home/pietro/.smbcred,vers=1.0 0 0
vers=3.1.1 gives me error13 permission denied on the cifs mounts.
I have couple of ntfs drives on a debian server shared with samba.
If i mount them on my ubuntu 18.04 machine (either from terminal or at boot via fstab) nautilus won't copy from those drives more than 1 file at time. If i select more than one file and try to copy them it copies the first one than just "hangs" for the remaining files
Works fine if i use the cp command from terminal or if i use the smb://address/sharename in Nautilus address bar, also works fine if i just browse to the drive from the "other locations".
Atm i solved by sharing the drives with nfs instead. But i'd like to have an username/password on my lan shares.
Any idea what i'm doing wrong? Thanx!
My fstab file:
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda5 during installation
UUID=a8d1b759-0333-4bf0-92ef-d98f1825ca91 / ext4 noatime,errors=remount-ro 0 1
/swapfile none swap sw 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto,exec,utf8 0 0
# STORAGE
UUID=882679BB2679AAB8 /home/pietro/Storage ntfs-3g auto,user,rw 0 0
# LAN NFS
192.168.2.3:/mnt/red-media /home/pietro/Lan/MediaDrive nfs rw,soft,intr,noatime,x-gvfs-show
#LAN SMB
//192.168.2.3/bk1 /home/pietro/Lan/Bck1 cifs credentials=/home/pietro/.smbcred 0 0
while to mount it from terminal i used:
mount -t cifs -o username=pietro //192.168.2.3/bk2 /home/pietro/Lan/Bck2
_netdev,credentials=....
. Another idea -that is probably not related is adding uid and gid optionsuid=1000,gid=1000,_netdev,credentials=....
- There is the optionvers
for smb version too - Good luck – cmak.fr Jun 30 '19 at 19:12