-
Notifications
You must be signed in to change notification settings - Fork 2
Running Benchmark
KyungWoon Cho edited this page Mar 28, 2023
·
2 revisions
ULFS tool for creating and managing
ulfs <command> [<command options>]
command:
mkfs <path> <size>
ls [<path>]
copyto <host path> [<ulfs path>]
create ULFS initially. The following example creates a 1MB ULFS in the file 'testfile'.
$ ulfs mkfs testfile 1m
The last size argument accepts as k(KB), m(MB) and g(GB).
list ULFS contents. The following example lists the root directory.
$ ULV_BLOCK=testfile ulfs ls
d . 108
d .. 108
f t 1048576
$
ls
can list a specific directory.
$ ULV_BLOCK=testfile ulfs ls /t
$
$ ulfs mkfs testfile 1m
$ export ULV_BLOCK=testfile
$ ./mb_file