Solved ntfs-3g not working mounting from cron

Hello,

I have troubles mounting NTFS disk from Crontab. Exit code: 21, which is unclassified FUSE error accorting to man....

Code:
mount -t ntfs /dev/da0s1 /mnt/disk # does not work
mount: /dev/da0s1: Operation not supported by device

mount -t ntfs-3g /dev/da0s1 /mnt/disk # does not work
mount: /dev/da0s1: Operation not supported by device

ntfs-3g -o rw /dev/da0s1 /mnt/disk # works grate from root account, but fails from root crontab (crontab -e from root account).

mounting, say fat file system, work just fine from crontab...

operating system:
Code:
root@nztest:/etc # uname -a
FreeBSD nztest.ge 10.1-RELEASE FreeBSD 10.1-RELEASE #0: Thu May 21 11:50:56 UTC 2015  root@nztest.ge:/usr/obj/usr/src/sys/NZKERN-10.1-I386-IPFW  i386

thanks in advance
 
Back
Top