MemFS 2.0 - A Memory-based File System on HP-UX 11iv3

11
Figure 5. SDET Benchmark results
Configuration Guidelines
A MemFS instance can be created using mount(1m) command,
mount [-F memfs]
[-o [remount]]
[-o [size=value]]
[-o [ninode=value]]
[-o [mode=mode]]
[-o [user=userID]]
[-o [group=groupID]]
[-o suid|nosuid] directory
For example, to mount a file system with maximum space 100MB and maximum number of
inodes as 1000 on /memfs
mount F memfs o size=100M,ninode=1000 /memfs
To mount a file system with unlimited space and number of inodes, permissions of the file systems
root set to 0777, owner to be user with ID 20, and owning group to be a group with ID 40, on
/memfs,
mount F memfs o mode=0777,user=20,group=40 /memfs
To remove the restriction on the file system size on the above file systems,
mount F memfs o remount,size=0 /memfs