Operating System - HP-UX
1832345 Members
2187 Online
110041 Solutions
New Discussion

Error , while runnig Nickel ?

 
SOLVED
Go to solution
rveri
Super Advisor

Error , while runnig Nickel ?

Hi All ,

I have got to collect , system information.
But while running nickel , its hanging after sometime with this error message.

--------------------------------------
# ./nickel

..
..


verifying Filesystem/Disk Information...

read: Invalid argument
read_blocks(lifvol): error on 1024 byte write
lifls: Can't list /dev/rdsk/c0t1d0; not a LIF volume
lifls(open): No such device or address
lifls: Can't list /dev/rdsk/c10t0d0; file not opened
lifls(open): No such device or address
lifls: Can't list /dev/rdsk/c10t0d1; file not opened
lifls(open): No such device or address
lifls: Can't list /dev/rdsk/c10t0d2; file not opened
lifls(open): No such device or address
lifls: Can't list /dev/rdsk/c10t0d3; file not opened
lifls(open): No such device or address
lifls: Can't list /dev/rdsk/c10t0d4; file not opened
lifls(open): No such device or address
lifls: Can't list /dev/rdsk/c10t0d5; file not opened
lifls(open): No such device or address
lifls: Can't list /dev/rdsk/c10t0d6; file not opened
lifls(open): No such device or address
lifls: Can't list /dev/rdsk/c10t0d7; file not opened
lifls(open): No such device or address
lifls: Can't list /dev/rdsk/c10t1d0; file not opened
lifls(open): No such device or address
lifls: Can't list /dev/rdsk/c10t1d1; file not opened
lifls(open): No such device or address
lifls: Can't list /dev/rdsk/c10t1d2; file not opened
lifls(open): No such device or address
lifls: Can't list /dev/rdsk/c10t1d3; file not opened
lifls(open): No such device or address
lifls: Can't list /dev/rdsk/c10t1d4; file not opened
lifls(open): No such device or address
lifls: Can't list /dev/rdsk/c10t1d5; file not opened
lifls(open): No such device or address
lifls: Can't list /dev/rdsk/c10t1d6; file not opened
lifls(open): No such device or address
lifls: Can't list /dev/rdsk/c10t1d7; file not opened
lifls(open): No such device or address
lifls: Can't list /dev/rdsk/c10t2d0; file not opened
lifls(open): No such device or address
lifls: Can't list /dev/rdsk/c10t2d1; file not opened
lifls(open): No such device or address
lifls: Can't list /dev/rdsk/c10t2d2; file not opened
lifls(open): No such device or address
lifls: Can't list /dev/rdsk/c10t2d3; file not opened
lifls(open): No such device or address
lifls: Can't list /dev/rdsk/c10t2d4; file not opened
lifls(open): No such device or address
lifls: Can't list /dev/rdsk/c10t2d5; file not opened
lifls(open): No such device or address
----------------------------------------

After 5 min it doesnot proceed further , I have interupted with Ctrl+c , then it come to the prompt.

System : hp-ux 11i , L2000-36

Any idea , whats wrong.

Thanks,
2 REPLIES 2
Raj D.
Honored Contributor
Solution

Re: Error , while runnig Nickel ?

Hi ,

This is a normal error as the script looks for the lifls for all the disk under /dev/dsk/c* ,

You can wait till it gets next function to execute in the script , and at the end it builds the hostname.tar.gz file.

hth,
Raj.
" If u think u can , If u think u cannot , - You are always Right . "
Raj D.
Honored Contributor

Re: Error , while runnig Nickel ?

Here is the function , that it try to execute for lifls collection:

function _lifinfo {
FILE=$OUT_DIR/lifinfo.html
echo "LIF info  "
echo "`_title LIF directory contents`" > $FILE
echo "Information on root, boot, swap, and dump logical volumes:\n" >> $FILE
echo "\n`lvlnboot -v`\n\n" >> $FILE
for i in `ls /dev/rdsk/c*`
do
echo "lifls -il $i" >> $FILE
lifls -il $i >> $FILE
echo "\n" >> $FILE
done >> $FILE
echo "`_footer`" >> $FILE
}
-----------------------

You can hash it , to bypass.

hth,
Raj.

" If u think u can , If u think u cannot , - You are always Right . "