From 77c60fc861c038d12082367c27851391a23e4e8b Mon Sep 17 00:00:00 2001 From: Clint Priest Date: Wed, 21 Aug 2019 11:52:14 -0500 Subject: [PATCH] mount: add --bind example (#3236) --- pages/common/mount.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/common/mount.md b/pages/common/mount.md index e798ddccd..ad9a71279 100644 --- a/pages/common/mount.md +++ b/pages/common/mount.md @@ -21,3 +21,7 @@ - Mount a specific filesystem described in /etc/fstab (e.g. "/dev/sda1 /my_drive ext2 defaults 0 2"): `mount {{/my_drive}}` + +- Mount a directory to another directory: + +`mount --bind {{path/to/old_dir}} {{path/to/new_dir}}`