Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why does mount --bind in linux require root privileges?

Even if you have all permissions for mount source/destination it requires root, why?

like image 270
user3033648 Avatar asked Nov 25 '13 19:11

user3033648


Video Answer


1 Answers

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.

like image 132
Nelson Avatar answered Sep 22 '22 10:09

Nelson