Difference between revisions of "Mount"

From Useful Things
Jump to: navigation, search
(Created page with "== Mount disk image == <source lang="bash"> mount -oloop,offset=1048576 image.img /mnt/destination </source>")
 
Line 1: Line 1:
 +
== Common options ==
 +
<code>noperm</code> client does not do permission checks
 +
 
== Mount disk image ==
 
== Mount disk image ==
 
<source lang="bash">
 
<source lang="bash">
 
mount -oloop,offset=1048576 image.img /mnt/destination
 
mount -oloop,offset=1048576 image.img /mnt/destination
 +
</source>
 +
 +
== Mount CIFS network share ==
 +
<source lang="bash">
 +
mount -ousername=user,noperm //192.168.2.2/share /mnt/mountpoint
 
</source>
 
</source>

Revision as of 14:47, 20 August 2014

Common options

noperm client does not do permission checks

Mount disk image

mount -oloop,offset=1048576 image.img /mnt/destination

Mount CIFS network share

mount -ousername=user,noperm //192.168.2.2/share /mnt/mountpoint