我尝试了C-x C-f'/ ssh:user @ host:/ some / file',输入密码后,我的确认'enter'没有回复。
从OS X到archlinux机器,而ssh在emacs外部工作。
我设置PS1 =“>”,并在root shell中使用'emacs -q',而Cx Cf'/ sudo:root @ localhost:/'成功,Cx Cf'/ ssh:user @ host:/'也失败了。
Tramp-verbose设置为10,它提供了这样的信息。
12:25:46.141981 tramp-accept-process-output (3) # Opening connection for SOMEUSER@SOMEIP using ssh...done
12:25:46.142129 tramp-get-connection-property (7) # process-name nil
12:25:46.142269 tramp-flush-connection-property (7) # [ssh SOMEUSER SOMEIP nil] (first-password-request)
12:25:46.142420 tramp-flush-connection-property (7) # *tramp/ssh SOMEUSER@SOMEIP* (vector temp-file last-cmd-time)
12:25:46.142670 tramp-get-connection-property (7) # vector nil
12:25:46.143894 tramp-file-name-handler (1) # Interrupt received in operation (file-exists-p /ssh:SOMEUSER@SOMEIP:/home/SOMEUSER/tmp)
我在远程计算机上创建了一个新用户并且成功与该用户(使用bash)连接,但我在主用户的.zhsrc中写了“case dumb”并且也失败了,所以我不能明白这一点。
答案 0 :(得分:5)
你说你在.zshrc
中写了一个愚蠢的案例。请检查它是否与以下构造类似:
if [[ "$TERM" == "dumb" ]]
then
unsetopt zle
unsetopt prompt_cr
unsetopt prompt_subst
unfunction precmd
unfunction preexec
PS1='$ '
fi
我遇到了类似的问题。将上述块添加到我的.zshrc
修复了问题。
礼貌:EmacsWiki