摘要:
功能描述: mount挂上文件系统,umount执行相反的操作。 用法:显示代码打印1 #include <sys/mount.h>23 int mount(const char *source, const char *target,4 const char *filesystemtype, unsigned long mountflags, const void *data);56 int umount(const char *target);78 int umount2(const char *target, int flags);参数:显示代码打印01 source:将要挂 阅读全文