系统相关
首页 > 系统相关> > Linux-terminfo在csh中似乎不起作用

Linux-terminfo在csh中似乎不起作用

作者:互联网

我想使用screen-256color术语,而我的系统没有这个术语,所以我在主目录中对其进行了编译.以下是我的问题

xxxx: ~/.terminfo > tree
.
|-- s
|   `-- screen-256color
`-- x
    `-- xterm-256color

2 directories, 2 files
xxxx: ~/.terminfo > setenv TERMINFO ~/.terminfo
xxxx: ~/.terminfo > setenv TERM  screen-256color
csh: No entry for terminal type "screen-256color"
csh: using dumb terminal settings.

看来系统无法检测到screen-256color文件?

解决方法:

在大多数Linux上,terminfo取代了termcap.但是,对于某些应用程序(例如csh / tcsh(例如Slackware)),有些人用terminfo替换termcap很慢.如果是这样,很可能会在/ etc / termcap中寻找条目

您可以通过查看列出的库来轻松检查

ldd `which csh`

标签:csh,tmux,terminal,terminfo,linux
来源: https://codeday.me/bug/20191120/2043583.html