How to input password to sudo using java Runtime?(如何使用 java Runtime 向 sudo 输入密码?)
问题描述
我需要使用 Java 以 root 和 sudo 用户身份执行给定的命令.但是,我不确定可以用来传递密码的方法.有没有办法可以将密码传递给终端?
I need to execute the given commands as root and sudo user using Java. However, I am not sure about the method that I can use to pass the password. Is there a way by which I can pass the password to the terminal ?
推荐答案
你可以把 sodu 放在一起,然后创建一个 shell 脚本 suid root 并运行它.
You could just drop sodu all together and create a shell script suid root and run that instead.
chmod +s myscript && chown root myscript && chgrp root myscript
每当调用该脚本时,它将以 root 身份运行.
whenever that script is called it will be run as root.
这篇关于如何使用 java Runtime 向 sudo 输入密码?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 java Runtime 向 sudo 输入密码?


基础教程推荐
- Java:带有char数组的println给出乱码 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 降序排序:Java Map 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01