Why does mount --bind in linux require root privileges?
bind, kernel, linux, mount, root
Solution
Alternatively, you can use `bindfs` to do the same thing as with `mount --bind` but with the added bonus that `bindfs` won't require you root privileges, because it is a FUSE filesystem.
Problem
Even if you have all permissions for mount source/destination it requires root, why?