When I try to mount directory, 'test_mount' through command line, the operation succeeds:
mount -t nfs4 remote_server_ip:/ local_dir
but am unable to mount the same directory programmatically:
int ret_val = mount("remote_server_ip:/", "local_dir", "nfs4", MS_SYNCHRONOUS, "");
if (ret_val < 0) {
perror("Mount failed");
return 1;
}
This C function fails with Mount failed: Invalid argument
. How can I programmatically mount the target directory? I'm running the executable with super user permissions.
Platform:
Linux ip-10-1-19-46 3.10.42-52.145.amzn1.x86_64 #1 SMP Tue Jun 10 23:46:43 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
If you run
strace
on thatmount
command (with no options), you will see that it runs:So the fifth argument of
mount
should beNULL
if you do not want to pass any options.