Tuesday 14 January 2020

Android NFS Client

I have found a good library to implement an Android NFS Client 'nfs-client-java', I'm creating an Nfs3 Client and I can access files and create new files... on the server. But the problem is that I can't mount the whole shared directory from the server. On Linux NFS Client, I can specify the mount point with

mount -t nfs -o nolock,rw,vers=3 192.168.1.10:/media/user/ /mnt/media_rw/remote

where /mnt/media_rw/remote is where the shared directory will be mounted.

My question is: How can I achieve the same result on Android App ?



from Android NFS Client

No comments:

Post a Comment