Mount: Difference between revisions
Jump to navigation
Jump to search
Line 31: | Line 31: | ||
{{Internal|/etc/fstab#Mount_a_File_System_at_Boot|Mounting a Filesystem at Boot}} | {{Internal|/etc/fstab#Mount_a_File_System_at_Boot|Mounting a Filesystem at Boot}} | ||
=Mounting a CD/DVD ISO Image= | |||
<pre> | |||
mkdir /mnt/dvd | |||
mount -o loop image-file.iso /mnt/dvd | |||
</pre> |
Revision as of 01:03, 27 June 2017
Internal
List Filesystems Mounted by a NFS Client
Run mount without any argument.
Options
-v
Verbose mount.
Useful to troubleshoot NFS client problems.
-o
Specifies other mount options.
For NFS, the following can be specified:
- NFS version to use:
mount -t nfs -o "vers=3" ...
Mounting a Filesystem at Boot
Mounting a CD/DVD ISO Image
mkdir /mnt/dvd mount -o loop image-file.iso /mnt/dvd