Serius ERROR on HPUX 1020


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Serius ERROR on HPUX 1020
# 8  
Old 01-23-2002
Here is some help.

Sunbird,

Where to start! So many problems. I am an HP admin so I should be able to give you some answers. Here are some of them.

If you have any future questions the www.itrc.hp.com website is very good!


1) the /dev/root is the device file for root. If you do a "ll /dev/root" the output looks just like any other device file in the /dev directory. I am not sure what the error message is telling you.

2) You need to check if you have an /etc/utmp file that exists.
#>ll utmp
-rw-r--r-- 1 root root 1320 Jan 23 09:38 utmp

Just do "touch utmp" to create it if it is not present. Do a man on utmp to see more info.


3) On those startup scripts in /sbin/rc1.d, you will have to do some investigation on your own on these. Copy them to another file in your home directory or /tmp and read these files. See what exactly they are doing and see where they are having problems.


4) Tombstones are created to log errors during boot. You can view these files in /var/tombstones. They are ascii text. You can glean some info from them. Go to www.itrc.hp.com and search for tombstones. It will give you much more info there. Here is one very good link from there. http://forums.itrc.hp.com/cm/Questio...9cd0f9,00.html

Here is another one that says that pcdinfo is not supported. You may want to remove it from your startup. http://forums.itrc.hp.com/cm/Questio...9cd0f9,00.html

5) Regarding your vx-nospaces on /dev/root. Here is a good link.
http://us-support3.external.hp.com/e...RUMS&x=31&y=13

6) Here is some help that I can give you on the core files.
***********************
This may help some. It will tell you what executable created the core file but it will also give you the -i option to keep or delete it.

REMOVING CORES CONDITIONALLY

To find and remove core files
conditionally:

to find and remove.
PROMPT> find ~ -name core -exec file {} \; -exec rm -i {} \;

to find and list.
PROMPT> find ~ -name core -exec file {} \; -exec ls -lt {} \;

The File will show which
executable the core file is
for and the -i option to rm
will allow you to choose
weather to delete it or not.


Smilie Smilie

Last edited by Kelam_Magnus; 01-23-2002 at 12:50 PM..
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

HPUX Syntax error at line 9 : `<' is not expected

Hi All, i'm getting this error, can somebody check? file name is like this 951957039339019_560119_000523_2w47_3060_0038_6002.log filename=$(basename "$1") extension="${filename##*.}" filename="${filename%.*}" IFS="_" read -r -a array... (2 Replies)
Discussion started by: charli1
2 Replies

2. Slackware

Hp 1020 laser jet Printer doesn't work on slackware 13.1

when i attach HP 1020 leaser jet printer on slackware 13.1 via usb port it detects and display message "Ready to print", in printing window (start->setting->printing) it detects & its properties(Printer->properties) is Description : Hewlett-Packard HP LaserJet 1020 Location : Divya Device... (0 Replies)
Discussion started by: hitlar
0 Replies

3. HP-UX

mk_kernel : "dev_config" error (hpux 11.23)

Any clue why I'm getting the error below? I would greatly appreciate any help. HP ITRC is already engaged since this morning but until now I haven't got any resolution. I'm wondering if anybody out there got an idea on how to fix this. Thanks in advance. This is my system: HPUX11i-OE-Ent... (2 Replies)
Discussion started by: msgameng
2 Replies

4. HP-UX

pwage-hpux-T for Trusted HPUX servers

I'm sharing this in case anybody needs it. Modified from the original solaris pwage script. This modified hpux script will check /etc/password file on hpux trusted systems search /tcb and grep the required u_succhg field. Calculate days to expiry and notify users via email. original solaris... (2 Replies)
Discussion started by: sparcguy
2 Replies

5. Shell Programming and Scripting

Problem with awk awk: program limit exceeded: sprintf buffer size=1020

Hi I have many problems with a script. I have a script that formats a text file but always prints the same error when i try to execute it The code is that: { if (NF==17){ print $0 }else{ fields=NF; all=$0; while... (2 Replies)
Discussion started by: fate
2 Replies

6. Shell Programming and Scripting

hpux vi

Hello. I cant figure out how can i move entire row up , so it pasted on the one above at the end , or to do that for one character. In notepads,word, or some other text editors we would do that with backspace button. Example. Content of my text file is this : I am trying to do that. And... (2 Replies)
Discussion started by: tonijel
2 Replies

7. Shell Programming and Scripting

Need Script to Use CPUs on a HPUX server to simulate Workload Manager on HPUX.

I am running HPUX and using WLM (workload manager). I want to write a script to fork CPUs to basically take CPUs from other servers to show that the communication is working and CPU licensing is working. Basically, I want to build a script that will use up CPU on a server. Any ideas? (2 Replies)
Discussion started by: cpolikowsky
2 Replies

8. Shell Programming and Scripting

.profile file error on HPUX 11.11

Hi, I am working on HPUX 11.11i and 11.10 boxes. My default shell is ksh. I have the following entry in my profile file HOSTNAME=`uname -n` Every time I login to the server, this is the error I get: ${HOME:-.}/.profile: syntax error: `)' unexpected The line number shown... (1 Reply)
Discussion started by: Yomaanmean
1 Replies

9. UNIX for Dummies Questions & Answers

make is giving error while installing cups in hpux

m installing cups-1.2.12 in hp-ux ./configure didnt give any error. but make gives the following error making all in cups... Compiling adminutil.c... In file included from http-private.h:142, from globals.h:35, from adminutil.c:47: /usr/include/net/if.h:240: error: field 'iftp_local' has... (5 Replies)
Discussion started by: rosalina
5 Replies

10. HP-UX

import disk in HP-UX 1020

Hi, is it possible to import a disk into a system, and to mount it without overwriting all data on this disk? thanks (7 Replies)
Discussion started by: Olivier
7 Replies
Login or Register to Ask a Question