在linux根目录中!有一些静态共享目录,例如:/usr & /opt;这些目录可以挂载只读设备;还有一些其他目录,如/etc & /boot,它们是静态非共享目录;我知道这些概念,但我真的不明白共享和非共享之间的区别;
答案1
这些目录是否“共享”取决于权限。Root 几乎可以访问所有内容。权限包括:
U - User (the current owner)
G - Group (permissions for any group the user is a member of or the owning group)
O - Other (everyone permissions)
R - Read access
W - Write access
X - Execute access (run file as executable)
除非您知道自己在做什么,否则不应将其挂载到随机目录。如果要挂载文件系统,请将文件夹放在 /media 或 /mnt 下并附加到那里。
正如 fixer1234 所说,某些文件夹可供所有用户访问,因为它们包含应用程序。