214

I'm trying to add mount --bind /proc/ /chroot/mysql/proc to /etc/fstab. How can I do this?

jpaugh
  • 231
  • 5
  • 15
Some Linux Nerd
  • 3,157
  • 3
  • 18
  • 20
  • See the third paragraph of the section "The third field" in `man fstab`: "An entry swap denotes a file or partition to be used for swapping, cf. swapon(8). An entry ignore causes the line to be ignored. This is useful to show disk partitions which are currently unused. An entry none is useful for bind or move mounts." See also the previous section in `man fstab`, "The second field" that also mentions the use of "none". – Jonathan Ben-Avraham Aug 07 '16 at 05:30
  • In case anyone's wondering, it looks like you can no longer do the same thing on Mac OS X: https://apple.stackexchange.com/questions/197029/how-do-you-mount-bind-a-local-directory – Sridhar Sarnobat Aug 28 '19 at 20:28

2 Answers2

242

The mount command accepts --bind or -o bind.

In the /etc/fstab file, you can use the following line:

/source /destination none defaults,bind 0 0
Addison
  • 235
  • 2
  • 7
Matheus
  • 2,599
  • 1
  • 11
  • 4
114

If I had a volume mounted at /media/3tb-vol1/Private/, and I wanted to bind it to /srv/Private I have a /etc/fstab like this.

/media/3tb-vol1/Private/ /srv/Private        none    bind
Zoredache
  • 128,755
  • 40
  • 271
  • 413