Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Perl PAR 模块来打包我用 Perl 编写的应用程序。作为安全请求,我想阻止用户修改脚本。是否可以在 PAR 模块中执行此操作,或者是否有其他方法可以实现?
好吧,显而易见的方法是修改脚本的安全性,只允许您想要(或某个组中)的用户写入权限。
在 Linux 中,您可以使用 chmod 755 [文件名]。这将赋予脚本所有者读取、写入和执行权限,以及其他所有人读取和执行权限(以便他们可以运行它)。如果您想要更具体的答案,请告诉我们您的确切目标是什么。是否只有特定的组也应该能够读取和执行此脚本?