Putty + Bash + Screen,向上箭头显示历史记录不起作用(Ubuntu 11.10)

Putty + Bash + Screen,向上箭头显示历史记录不起作用(Ubuntu 11.10)

我安装了全新安装的 Ubuntu Server 11.10,并通过 PuTTy 登录 SSH。当我在 screen 中时,我无法使用向上箭头来调用 bash 历史记录(尽管这在 screen 之外有效)。我似乎无法在 Interwebs 上找到完全相同的问题(尽管有很多类似的问题)。我的 .screenrc 如下:

# Look and feel
caption always "%{= bb}%{+b w}Screen: %n | %h %=%t %c"
hardstatus alwayslastline "%-Lw%{= BW}%50>%n%f* %t%{-}%+Lw%<"

# Our warning of activity
activity "Activity in %t(%n)"

# Left Right meta key mods
#ALT-,. and ALT-<>
bindkey "^[<" eval number !echo $WINDOW-1|bc
bindkey "^[>" eval number !echo $WINDOW+1|bc
bindkey "^[," prev
bindkey "^[." next

#disable startup banner
startup_message off

#see http://www4.informatik.uni-erlangen.de/~jnweiger/screen-faq.html
termcap  xterm 'XT:AF=\E[3%dm:AB=\E[4%dm:AX'
terminfo xterm 'XT:AF=\E[3%p1%dm:AB=\E[4%p1%dm:AX'
termcapinfo xterm 'XT:AF=\E[3%p1%dm:AB=\E[4%p1%dm:AX:hs:ts=\E]2;:fs=\007:ds=\E]2;screen\007'
termcap  xtermc 'XT:AF=\E[3%dm:AB=\E[4%dm:AX'
terminfo xtermc 'XT:AF=\E[3%p1%dm:AB=\E[4%p1%dm:AX'
termcapinfo xtermc 'XT:AF=\E[3%p1%dm:AB=\E[4%p1%dm:AX:hs:ts=\E]2;:fs=\007:ds=\E]2;screen\007'

#scrollback
termcapinfo xterm ti@:te@

shell -$SHELL

更新:向上箭头在其他应用程序(如 vim 和 less)中正常工作。此问题出现在物理控制台和 PuTTy 中。

答案1

我遇到了类似的问题。原来我创建的用户帐户没有设置默认 shell。

答案2

我使用Ctrl-a Esc进入复制/回滚模式,然后使用h j k l或箭头键导航。

阅读此内容以了解导航选项 -http://web.mit.edu/gnu/doc/html/screen_11.html

相关内容