Mount: Difference between revisions
Jump to navigation
Jump to search
Line 7: | Line 7: | ||
Run <tt>mount</tt> without any argument. | Run <tt>mount</tt> without any argument. | ||
=Mount a Newly Added Filesystem without Reboot= | |||
If a new filesystem was added to [[/etc/fstab]] it can be mounted without reboot: | |||
mount -a | |||
=Options= | =Options= |
Revision as of 17:59, 22 April 2018
Internal
List Filesystems Mounted by a NFS Client
Run mount without any argument.
Mount a Newly Added Filesystem without Reboot
If a new filesystem was added to /etc/fstab it can be mounted without reboot:
mount -a
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