no entry in termcap for 'hp'


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers no entry in termcap for 'hp'
# 1  
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..?
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

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

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

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

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

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

7. UNIX for Dummies Questions & Answers

Termcap

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

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

9. 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
Login or Register to Ask a Question
ENVIRON(7)						 Miscellaneous Information Manual						ENVIRON(7)

NAME
environ - user environment SYNOPSIS
extern char **environ; DESCRIPTION
An array of strings called the `environment' is made available by execve(2) when a process begins. By convention these strings have the form `name=value'. The following names are used by various commands: PATH The sequence of directory prefixes that sh, time, nice(1), etc., apply in searching for a file known by an incomplete path name. The prefixes are separated by `:'. Login(1) sets PATH=:/usr/ucb:/bin:/usr/bin. HOME A user's login directory, set by login(1) from the password file passwd(5). TERM The kind of terminal for which output is to be prepared. This information is used by commands, such as nroff or plot(1G), which may exploit special terminal capabilities. See /etc/termcap (termcap(5)) for a list of terminal types. SHELL The file name of the users login shell. TERMCAP The string describing the terminal in TERM, or the name of the termcap file, see termcap(5),termcap(3X). EXINIT A startup list of commands read by ex(1), edit(1), and vi(1). USER The login name of the user. PRINTER The name of the default printer to be used by lpr(1), lpq(1), and lprm(1). Further names may be placed in the environment by the export command and `name=value' arguments in sh(1), or by the setenv command if you use csh(1). Arguments may also be placed in the environment at the point of an execve(2). It is unwise to conflict with certain sh(1) variables that are frequently exported by `.profile' files: MAIL, PS1, PS2, IFS. SEE ALSO
csh(1), ex(1), login(1), sh(1), execve(2), system(3), termcap(3X), termcap(5) 4.2 Berkeley Distribution May 20, 1985 ENVIRON(7)