0
LinuxのCプログラム内に100 MBのtmpfsをマウントしたい。 システムにパスマウントのオプション(-o size = 100M、mode = 0755)を渡すにはどうすればよいですか?マウントシステムコールにオプションを渡すには?
それはCのマウント・インタフェースです:mount(2)マン・ページを読む
#include <sys/mount.h>
int mount(const char *source, const char *target,
const char *filesystemtype, unsigned long mountflags,
const void *data);
は答えてくれてありがとう。私はデータを介してファイルシステムオプションを送ったが、私は自分のtmpfsを見つけることができない。私のプログラムの外でこのパーティションを使用できますか? – SAP
このアドレスを調べてください:http://stackoverflow.com/questions/32814782/mount-system-call-in-linux-cannot-display-the-mountpoint-of-file-system-by-df-co – SAP