Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

cfgmgr error on AIX 5.1

Status
Not open for further replies.

buckethead

Programmer
Apr 21, 2005
2
US
Getting the following error when I run cfgmgr on a SP attached AIX node.
(x919)/#cfgmgr
Method error (/etc/methods/cfgzcmem):
0514-068 Cause not known.
sh: /etc/methods/cfgzcmem: not found.

 
do a

lsdev -C | grep mem

and see if you find anything related to zcmem

looks like you installed some weird device driver or something/someone has fooled around with your ODM database... never seen it before, not on any AIX box, SP node, SP attached or LPAR...
 
Yea this is buggin me. The lsdev came back clean and a diag -a on mem0 came back with no errors.
(x919)/etc#lsdev -C |grep mem
mem0 Available 00-00 Memory
TESTING COMPLETE on Fri Apr 22 07:45:33 CDT 2005 801010

No trouble was found.

The resources tested were:

- sysplanar0 00-00 System Planar
- mem0 00-00 Memory

Use Enter to continue.

Is there a odm command to check this?
Your help is appreciated.
 
Use odmget to list all devices and attributes - filter out lines with mem in them:

# odmget CuDv|grep mem
name = "mem0"
PdDvLn = "memory/sys/totmem"
PdDvLn = "memory/sys/L2cache_rspc"

# odmget CuAt|grep mem
attribute = "realmem"
name = "mem0"
name = "mem0"
attribute = "bus_mem_start"
attribute = "bus_mem_start"
attribute = "bus_mem_addr"
attribute = "bus_mem_addr"
attribute = "busmem"
attribute = "rom_mem"
attribute = "busmem"
attribute = "rom_mem"

You shouldn't have anything related to "zcmem" that I am aware of. If you do see zcmem, post the output of

odmget CuDv | grep -p zcmem

and

odmget CuAt | grep -p zcmem

(mind the -p options!) back here and I will have a look.

greetz - p5wizard
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top