linux - mount system call -
i stuck @ finding correct usage of mount() system call should replacment command
$mount -t ext3 -oloop /test /mount
please help.
thanks
try:
$ strace mount -t ext3 -oloop /test /mount
and see there 2 number of system calls involved - 1 setting loopback block device , actual mount
Comments
Post a Comment