爪哇。在 Linux 中将文件保存为 root
如何将java应用程序生成的文件保存在具有root访问权限的文件夹中?
How I can save file generated by java application in folder with root access?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最直接的方法是以 root 用户身份运行应用程序。
另一种解决方案是询问用户 root 密码。为此,您必须询问系统的“su”命令。请注意,您的用户必须拥有“wheel”组。或者,您可以使用 sudo(确保为当前用户安装并配置了 sudo)。
正如 caarlos0 在评论中所说,如果您愿意,可以使用“kdesu”或“gtksu/gksudo”。
当然,您的应用程序是不可移植的!在 Windows 上,没有“su”、“sudo”等。
The straight forward way to do that is to run your application as the root user.
Another solution is to ask to the user the root password. To do that, you have to ask the "su" command of your system. Be careful, your user must have the "wheel" group. Or, you can use sudo (make sure that sudo is installed and configured for the current user).
As caarlos0 said in the comments, you can use "kdesu" or "gtksu/gksudo" if you prefer.
Of course, your application is not portable ! On windows, there's no "su", "sudo", etc.