我的代码有问题。我试图以sudo su -
为根,但是当执行该命令以使其在控制台中待机时,它会向我显示以下内容:
已连接
#
并且没有通过下一行。
这是我的代码:
String command1 = "sudo su -";
try {
java.util.Properties config = new java.util.Properties();
config.put("StrictHostKeyChecking", "no");
JSch jsch = new JSch();
Session session = jsch.getSession(user, host, 22);
session.setPassword(password);
session.setConfig(config);
session.connect();
System.out.println("Connected");
Channel channel = session.openChannel("exec");
((ChannelExec) channel).setCommand(command1);
channel.setInputStream(null);
((ChannelExec) channel).setErrStream(System.err);
InputStream in = channel.getInputStream();
((ChannelExec) channel).setPty(true);
OutputStream out = channel.getOutputStream();
channel.connect();
byte[] tmp = new byte[1024];
while (true) {
while (in.available() > 0) {
int i = in.read(tmp, 0, 1024);
if (i < 0) {
break;
}
System.out.print(new String(tmp, 0, i));
}
if (channel.isClosed()) {
System.out.println("exit-status: " + channel.getExitStatus());
break;
}
try {
Thread.sleep(1000);
} catch (Exception ee) {
}
}
channel.disconnect();
session.disconnect();
System.out.println("DONE");
} catch (Exception e) {
e.printStackTrace();
}
答案 0 :(得分:0)
sudo su -
命令在您当前的shell中打开一个新的shell进程。
这个新的shell进程直到收到exit
命令后才会结束。
由于您是从Java向操作系统中的另一个进程发布命令,因此结果与您发出挂起的命令相同。
有两种方法可以解决此问题:
仅通过将sudo
附加到每个命令来使用sudo
来执行您真正需要的确切命令。
创建一个包装器脚本,该脚本将执行您需要以root身份运行并使用sudo
运行的所有命令。