我能够使用 mount 命令检测 Trusty 中的绑定挂载:
23:22:49 server-trusty vlad ~ > mount | grep custom
/var/lib/custom on /var/lib/custom type none (rw,bind)
23:33:29 server-trusty vlad ~ > mount | grep ' / '
/dev/xvda1 on / type ext4 (rw,discard)
但在 Xenial 中,同样的测试不起作用。它输出与源相同的选项:
23:25:33 server-xenial vlad ~ > mount | grep custom
/dev/xvda1 on /var/lib/custom type ext4 (rw,relatime,discard,data=ordered)
23:30:00 server-xenial vlad ~ > mount | grep ' / '
/dev/xvda1 on / type ext4 (rw,relatime,discard,data=ordered)
有没有办法让自动脚本可靠地检测 Xenial 上的绑定挂载?