From 873968903ae3386a1e78bbfd34d9523ed343a76d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sun, 12 Oct 2014 13:16:53 +0200 Subject: [PATCH] mount: add bind mount --- cheat/cheatsheets/mount | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cheat/cheatsheets/mount b/cheat/cheatsheets/mount index 7b81d93..233c0e3 100644 --- a/cheat/cheatsheets/mount +++ b/cheat/cheatsheets/mount @@ -1,6 +1,9 @@ # To mount / partition as read-write in repair mode: mount -o remount,rw / +# Bind mount path to a second location +mount --bind /origin/path /destination/path + # To mount Usb disk as user writable: mount -o uid=username,gid=usergroup /dev/sdx /mnt/xxx