mount –bind – How to Do ‘mount –bind’ in /etc/fstab

fstablinuxmountunix

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

Best Answer

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
Related Topic