#Help accessing Nas drive (NTFS formated).

5 messages · Page 1 of 1 (latest)

alpine yoke
#

Guys, I have trouble accessing (r+w) my nas drive which is unfortunately NTFS formated. Mounting is not an issue, but I get stall handling error when I try to read or write. NTFS-3g is installed. No issues on my nixos PC which uses this method: device = "//192.168.178.1/FRITZ.NAS"; fsType = "cifs"; options = [ "credentials=/home/rey/secrets/nas-credentials" "vers=2.1" "nounix" "rw" "uid=1000" "gid=100" "file_mode=0770" "dir_mode=0770" "nofail" "noauto" "x-systemd.automount" "x-systemd.requires=network-online.target" "x-systemd.after=network-online.target"

broken ingot
#

I don't think the backend shoud matter if its exposed as a cifs share. Can you try sudo pacman -

#

S cifs-utils; sudo mkdir /mnt/test; sudo mount -t cifs //192.168.178.1/FRITZ.NAS -o username=<user who crereated share>/mnt/test

#

Just to make sure you can copy/paste, make sure the share isn't mounted, then:

#

sudo pacman -S cifs-utils; sudo mkdir /mnt/test; sudo mount -t cifs //192.168.178.1/FRITZ.NAS -o username=<user who crereated share>/mnt/test