Sponsored Content
Full Discussion: screen - termcap problem
Operating Systems HP-UX screen - termcap problem Post 302287242 by otheus on Friday 13th of February 2009 04:57:49 AM
Old 02-13-2009
I think you're on the right track... Looking at the names that are colliding, they are indeed TERMCAP/terminfo names, which means maybe that screen is somehow getting two copies of the terminal's capability.

Why don't you crosspost to the screen's email/bug list. Meanwhile maybe someone here will have an insight that is HP specific.
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

screen problem

Hi Can anyone help with the following problem. I have an ultra 5 box running SunOS 5.6, since a reboot last week the following error message has appeared on the servers screen resulting in no one being able to login to the box direct: - INT: Command is respawning too rapidly. check for... (2 Replies)
Discussion started by: superuser
2 Replies

2. Linux

Termcap Definitions

Hi. How do I enter and escape from graphics mode on RedHat Linux to capture escape sequences. I'm trying to edit the system termcap. (2 Replies)
Discussion started by: cstovall
2 Replies

3. UNIX for Dummies Questions & Answers

TermCap Error w/Anzio SSH

I have a sco unix 5.0.7 unix box with open SSH and have Soft Talk floor software I use on it. http://www.floorsoftware.com/index2.html I use Anzio 15u full Terminal with SSH to remotely connect. I connect fine and get to the Soft Talk Menu. I choose Pricing ok, then proceed to the next menu to... (3 Replies)
Discussion started by: PCTECH
3 Replies

4. UNIX for Dummies Questions & Answers

Termcap

Hi all! What is the TERMCAP variable? (1 Reply)
Discussion started by: aitor314
1 Replies

5. UNIX for Dummies Questions & Answers

no entry in termcap for 'hp'

Hello, I have one application (top) for Solaris that exits with error "no entry in termcap for 'hp'". What can I do with system to fix it? Is it access problem to termcap file or real corruption inside the file since I know that HP is defined in termcap? ... or changes to environment... (0 Replies)
Discussion started by: gogogo
0 Replies

6. Red Hat

screen lock problem

hi friends i have a small problem,in my redhat enterprise linux system screen lock is not working if i click screen lock no action takes place... so is there any solution to fix this problem or any alternate method available please let me know.... waiting for replys....... thanks... (2 Replies)
Discussion started by: madhusudankh
2 Replies

7. UNIX for Dummies Questions & Answers

ncurses function key problem - termcap ??

My ncurses program has been displaying "OP" (junk) on pressing F1 (instead of catching it). I have finally discovered that it runs fine (traps F1) when run under screen (program), but not in my login terminal (xterm-color) I did a check of "Set" and "env" under screen, there is a "TERMCAP"... (0 Replies)
Discussion started by: sentinel
0 Replies

8. Ubuntu

Scigraphica-termcap installation

Hi all, I am trying to install Scigraphica on Ubuntu 8.10 and Termcap needs to be installed. I cannot find or install Termcap by Synaptic package manager (sudo apt-get install does not work either). I found in some forums that Termcap is not available for Ubuntu 8.10, and ncurses-dev was... (0 Replies)
Discussion started by: apprentice
0 Replies

9. AIX

AIX 7.1 screen problem

I am certain I have seen a thread for this somewhere but cannot remember where. The problem is for example when in smitty when all fields have been populated and return has been selected the screen clears and then returns with corruption. Also when using the more pipe once the end is reached or... (3 Replies)
Discussion started by: johnf
3 Replies

10. Red Hat

Problem with screen lock

I'm having a weird problem with a RHEL6 workstation. When the screen lock is activated manually the system will lock and the screens will go blank. Once I try to unlock the system, the monitor will just flicker and won't respond. I tried the combination CTRL, ALT, Backspace and it did not work,... (4 Replies)
Discussion started by: goose25
4 Replies
TERMCAP(3)						   BSD Library Functions Manual 						TERMCAP(3)

NAME
tgetent, tgetnum, tgetflag, tgetstr, tgoto, tputs -- terminal independent operation routines LIBRARY
Termcap Access Library (libtermcap, -ltermcap) SYNOPSIS
#include <termcap.h> char PC; char *BC; char *UP; int tgetent(char *bp, const char *name); int tgetnum(const char *id); int tgetflag(const char *id); char * tgetstr(const char *id, char **area); char * tgoto(const char *cm, int destcol, int destline); DESCRIPTION
These functions extract and use capabilities from a terminal capability database. They exist as wrappers around equivalent terminfo(3) func- tions, which new code should use. These are low level routines; see curses(3) for a higher level package. The tgetent() function calls setupterm() and configures PC, UP and BC. Only PC is actually used internally. The tgetent() function returns -1 if none of the terminfo data base files could be opened, 0 if the terminal name given does not match an entry, and 1 if all goes well. The bp argument is not used. The tgetnum() function gets the numeric value of the capability id, returning -1 if it is not given for the terminal. The tgetflag() func- tion returns 1 if the specified capability is present in the terminal's entry, 0 if it is not. The tgetstr() function returns the string value of the capability id. This is a terminfo(5) string and not a termcap string; as such it should only be processed by tgoto(). The tgetstr() function returns NULL if the capability was not found. The area argument is unused. The tgoto() function returns a cursor addressing string decoded from cm to go to column destcol in line destline, or NULL on error conditions such as out of memory. Please note that tgoto() can return an incomplete value on a malformed input sequence. Historically tgoto() used to return ``OOPS'' on those conditions, so newer programs should now be checking the return value. SEE ALSO
terminfo(3), terminfo(5) HISTORY
termcap first appeared in 4.0BSD. NetBSD 1.5 introduced some termcap t_*() extensions which were removed in NetBSD 6.0 when terminfo(3) was introduced. AUTHORS
Roy Marples <roy@NetBSD.org> BSD
March 14, 2011 BSD
All times are GMT -4. The time now is 09:18 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy