답변:
CentOS 6 상자가 편리한 경우 screen-256color에 대한 terminfo 파일의 소스를 가져 와서 CentOS 5 상자에서 컴파일 할 수 있어야합니다.
보세요:
http://tldp.org/HOWTO/Text-Terminal-HOWTO-16.html
나는 그것을 시도하지 않았지만 다음과 같은 것 :
CentOS 6 : infocmp screen-256color > /tmp/screen-256color.terminfo
에서 출력 파일을 CentOS 5 상자로 가져옵니다. 에 CentOS 5 상자, tic screen-256color.terminfo
. 맨 페이지에서 루트로 컴파일 된 terminfo 파일을 / usr / share / terminfo에 배치해야합니다.
물론 문서와 매뉴얼 페이지 등을 읽으십시오.
tic <(ssh CENTOS6MACHINE infocmp screen-256color)
. 여기서 CENTOS6MACHINE
CentOS 6 시스템의 호스트 이름입니다. 루트로 실행하면 시스템 전체 데이터베이스에 배치되지만 일반 사용자로 실행하면 홈 디렉토리의 올바른 위치에 배치됩니다.
/usr/share/terminfo/s/screen-256color
. 루트 만 읽을 수있었습니다. 간단한chmod a+r /usr/share/terminfo/s/screen-256color
문제가 해결되었습니다.