Sponsored Content
Full Discussion: no entry in termcap for 'hp'
Top Forums UNIX for Dummies Questions & Answers no entry in termcap for 'hp' Post 302092518 by gogogo on Tuesday 10th of October 2006 12:31:16 PM
Old 10-10-2006
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 settings (there is TERM=hp)

Any proposals..?
 

9 More Discussions You Might Find Interesting

1. 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

2. 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

3. UNIX for Dummies Questions & Answers

Termcap

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

4. 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

5. HP-UX

screen - termcap problem

Hi I`ve got problem with screen. After i launch screen i get flying list of : ---(example) Name collision between cad68-3 cad68-3 Name collision between cad68-2 cad68-2 Name collision between cops10 cops10 Name collision between d132 d132 MH Name collision between d800 d800 M7 Name... (4 Replies)
Discussion started by: chesti
4 Replies

6. 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

7. UNIX for Dummies Questions & Answers

Solaris +vi (not vim) not using xterm termcap entry

Well, apparently anyway. I have a Solaris 10/08 install using vi (not vim) and when I use vi to edit a file or go into cron, the screen goes into 25/80 mode and I have to send a reset or hard reset to get it back to my screen size (190x72 in this case). vi should be using the TERM environment... (7 Replies)
Discussion started by: BOFH
7 Replies

8. How to Post in the The UNIX and Linux Forums

Help me, write a bash script to delete parent entry with all their child entry in LDAP UNIX server

Hi All, Please help me and guide me to write a bash/shell script on Linux box to delete parent entry with all their child entries. example: Parent is : ---------- dn: email=yogesh.kumar@wipro.com, o=wipro, o=in child is: ---------- dn: cn: yogesh kumar, email=yogesh.kumar@wipro.com,... (1 Reply)
Discussion started by: Chand
1 Replies

9. Shell Programming and Scripting

How to replace multiple "&nbsp;" entry with in <td> tag into single entry using sed?

I have the input file like this. Input file: 12.txt 1) There are one or more than one <tr> tags in same line. 2) Some tr tags may have one <td> or more tna one <td> tags within it. 3) Few <td> tags having "<td> &nbsp; </td>". Few having more than one "&nbsp;" entry in it. <tr> some td... (4 Replies)
Discussion started by: thomasraj87
4 Replies
termcap(3x)															       termcap(3x)

NAME
tgetent, tgetnum, tgetflag, tgetstr, tgoto, tputs - Terminal independent operation routines LIBRARY
Termcap library (libtermcap.a or libtermlib.a) SYNOPSIS
char PC; char *BC; char *UP; short ospeed; tgetent(bp, name) char *bp, *name; tgetnum(id) char *iid; tgetflag(id) char *id; char * tgetstr(id, area) char *id, **area; char * tgoto(cm, destcol, destline) char *cm; tputs(cp, affcnt, outc) register char *cp; int affcnt; int (*outc)(); DESCRIPTION
These functions extract and use capabilities from the terminal capability database termcap(4). These are low level routines; see curses(3) for a higher level package. The tgetent function extracts the entry for terminal name into the buffer at bp. The bp capability should be a character buffer of size 1024 and must be retained through all subsequent calls to tgetnum, tgetflag, and tgetstr. The tgetent returns -1 if it cannot open the termcap file, 0 if the terminal name given does not have an entry, and 1 for success. It will look in the environment for a TERMCAP vari- able. If found, and the value does not begin with a slash, and the terminal type name is the same as the environment string TERM. The TERMCAP string is used instead of reading the termcap file. If it does begin with a slash, the string is used as a path name rather than /usr/share/lib/termcap. This can speed up entry into programs that call tgetent, as well as to help debug new terminal descriptions or to make one for your terminal if you cannot write the file /usr/share/lib/termcap. The tgetnum function gets the numeric value of capability id, returning -1 if is not given for the terminal. The tgetflag function returns 1 if the specified capability is present in the terminal's entry, 0 if it is not. The tgetstr returns the string value of the capability id, places it in the buffer at area, and advances the area pointer. It decodes the abbreviations for this field described in termcap(4), except for cursor addressing and padding information. The tgetstr function returns NULL if the capability was not found. The tgoto function returns a cursor addressing string decoded from cm to go to column destcol in line destline. It uses the external vari- ables UP (from the up capability) and BC (if bc is given rather than bs) if necessary to avoid placing , ^D or ^@ in the returned string. (Programs which call tgoto should be sure to turn off the XTABS bit(s), since tgoto may now output a tab. Note that, in general, programs using termcap should turn off XTABS anyway since some terminals use Control-I for other functions, such as nondestructive space.) If a % sequence is given which is not understood, tgoto returns OOPS. The tputs function decodes the leading padding information of the string cp. The affcnt parameter gives the number of lines affected by the operation, or 1 if this is not applicable. The outc parameter is the name of a routine that is called with each character in turn. The external variable ospeed should contain the output speed of the terminal as encoded by stty(). The external variable PC should contain a pad character to be used (from the pc capability) if a null (^@) is inappropriate. FILES
Termcap library (also known as termlib) Standard terminal capability database Backwards-compatible soft link to /usr/share/lib/termcap RELATED INFORMATION
curses(3), curs_termcap(3), termcap(4) delim off termcap(3x)
All times are GMT -4. The time now is 03:47 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy