losetup example
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1244 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
cb42609f95
commit
375e7b165f
@ -953,7 +953,24 @@ losetup [-o <offset>] [-r] <dev-path> <file-path>
|
||||
</pre></ul>
|
||||
<p>
|
||||
<b>Synopsis</b>.
|
||||
Setup the loop device at <dev-path> to access the file at <file-path> as a block device:
|
||||
Setup the loop device at <dev-path> to access the file at <file-path> as a block device.
|
||||
Example:
|
||||
<ul><pre>
|
||||
nsh> dd if=/dev/zero of=/tmp/image bs=512 count=512
|
||||
nsh> ls -l /tmp
|
||||
/tmp:
|
||||
-rw-rw-rw- 262144 IMAGE
|
||||
nsh> losetup /dev/loop0 /tmp/image
|
||||
nsh> ls -l /dev
|
||||
/dev:
|
||||
brw-rw-rw- 0 loop0
|
||||
nsh> mkfatfs /dev/loop0
|
||||
nsh> mount -t vfat /dev/loop0 /mnt/example
|
||||
nsh> ls -l /mnt
|
||||
ls -l /mnt
|
||||
/mnt:
|
||||
drw-rw-rw- 0 example/
|
||||
</pre></ul>
|
||||
</p>
|
||||
|
||||
<a <p><b>Command Syntax 2:</b></p>
|
||||
|
Loading…
Reference in New Issue
Block a user