我怎样才能使葡萄酒更安全(或防白痴)
我想知道是否有可能“保护”葡萄酒;就像用户无法删除“explorer.exe”或弄乱 dll 一样。
我听说过 apparmor(我运行的是 ubuntu)和 chroot。
最好的方法是什么?
I wonder if it's ever possible to 'secure' wine; like for a user not being able to delete 'explorer.exe' or mess with the dll's.
I've heard of apparmor (i'm running ubuntu), and chroot.
What would be the best method ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
怎么样:将文件设置为不同的用户(
chown
),并将“组”和“其他”权限设置为“只读”(chmod 644
)。这样,当前用户只能读取文件,而不能修改它们。
How about this: set the files to a different user (
chown
), and set the "group" and "other" rights to "read only" (chmod 644
).That way, the current user can only read the files, but not modify them.
您可以使用主机操作系统的文件系统权限来“保护”文件。
You can use the filesystem permissions of the host OS to "secure" the files.