2

我对 libssh (libssh.org) 有疑问。我需要在远程服务器上运行一个 makefile。我用命令“channel_request_exec”来做:

int SSHExecCmd (void(* MessSender)(char* CurMessage, bool IsError, CWnd* MainWnd),ssh_session session,  CString & ShellEcho, char * cmd, CWnd* MainWnd)
{
    ssh_channel channel;
    int rc;
    channel = ssh_channel_new(session);
    if (channel == NULL) return SSH_ERROR;
    rc = ssh_channel_open_session(channel);
    if (rc != SSH_OK)
    {
        ssh_channel_free(channel);
        return rc;
    }
    rc = ssh_channel_request_exec(channel, cmd);
    if (rc != SSH_OK)
    {
        ssh_channel_close(channel);
        ssh_channel_free(channel);
        return rc;
    }
    char buffer[256];
    unsigned int nbytes;
    nbytes = ssh_channel_read(channel, buffer, sizeof(buffer), 0);
    while (nbytes > 0)
    {
        if (fwrite(buffer, 1, nbytes, stdout) != nbytes)
        {
            ssh_channel_close(channel);
            ssh_channel_free(channel);
            return SSH_ERROR;
        }
        nbytes = ssh_channel_read(channel, buffer, sizeof(buffer), 0);
    }
    if (nbytes < 0)
    {
        ssh_channel_close(channel);
        ssh_channel_free(channel);
        return SSH_ERROR;
    }
    return SSH_OK;
}

Makefile 位于根目录下:

all: mpi_cuda.o pattern2d.o
        mpicc mpi_cuda.o pattern2d.o -o mpi_cuda -lrt -lpthread -L/opt/cuda/lib64 -lcudart -lm

mpi_cuda.o: mpi_cuda.c
        mpicc -g -std=c99 -D_GNU_SOURCE -I/opt/cuda/include -c $< -o $@

pattern2d.o: pattern2d.cu
        nvcc -g -c $< -o $@

我发送命令“make”并接收回声:

mpicc -g -std=c99 -D_GNU_SOURCE -I/opt/cuda/include -c mpi_cuda.c -o mpi_cuda.oda

但什么也没发生(不执行编译)。

如果我用腻子做:一切正常。回声:

make
mpicc -g -std=c99 -D_GNU_SOURCE -I/opt/cuda/include -c mpi_cuda.c -o mpi_cuda.o
mpi_cuda.c: В функции ‘main’:
mpi_cuda.c:148: предупреждение: недостаточно аргументов для указанного формата
nvcc -g -c pattern2d.cu -o pattern2d.o
mpicc mpi_cuda.o pattern2d.o -o mpi_cuda -lrt -lpthread -L/opt/cuda/lib64 -lcudart -lm

我该如何解决这个问题?

4

2 回答 2

1

不熟悉 libssh,但可能会出错,因为环境设置不同,因此通过 shell 显式运行 make 可能会有所帮助。

尝试将命令(make?)更改为

bash -c make

如果这不起作用,请尝试

bash -c "export > env.txt ; make > make_out.txt 2> make_err.txt"

然后检查这些文件是否出现,以及它们包含的内容,这应该会给出很好的提示。

如果您有一个工作案例和一个非工作案例,则从这两个案例中获取这些文件,并比较它们(例如 with diff -u)。

如果您不使用 bash,则更改为您使用的任何 shell(在这种情况下,检查是否是正确的开关以提供命令字符串,以及是否是正确的命令以显示环境bash-cexport


基于以下评论: env.txt 的差异可能是,因为某些环境变量只为交互式 shell 设置。例如,在我的 Ubuntu 框中,.bashrc 的开头有这样的行:

# If not running interactively, don't do anything
[ -z "$PS1" ] && return

现在,如果在该行之后的 .bashrc 中设置了任何所需的环境变量,并且您的 ssh 连接是非交互式的(没有伪 tty),则不会设置这些变量。

如果是这种情况,请将这些环境变量集移动到~/.profile,或在~/.bashrc上述测试之前。也这样做man bash,并阅读有关初始化文件的内容(例如~/.bashrc)。

其他解决方案是使 ssh-session 具有交互性,我相信在此页面上记录了 libssh:http ://api.libssh.org/master/libssh_tutor_shell.html 。

于 2013-01-20T08:46:45.103 回答
1

我建议打开一个非交互式外壳并在那里进行。看

http://api.libssh.org/master/libssh_tutor_shell.html

于 2013-01-20T13:19:53.007 回答