I have trouble appending to a file on FreeBSD 10.4 on a encase volume:
$ echo -e "1\n2\n3\n4" > t
$ cat t
1
2
3
4
$ echo test >> t
$ cat t
test
4
and
$ echo -e "1\n2\n3\n4" > t
$ echo test | tee -a t
test
$ cat t
test
4
$ uname -r
10.4-RELEASE-p9
$ pkg info | grep -E 'encfs|fuse'
fusefs-encfs-1.9.4 Encrypted pass-through FUSE filesystem
fusefs-libs-2.9.5 FUSE allows filesystem implementation in userspace
I have trouble appending to a file on FreeBSD 10.4 on a encase volume:
and