Sponsored Content
Full Discussion: cfgmgr in my aix box
Operating Systems AIX cfgmgr in my aix box Post 302492080 by AixCraft on Saturday 29th of January 2011 03:22:26 PM
Old 01-29-2011
MySQL cfgmgr -i

Just insert the AIX 6.1 DVD and run the following command:

cfgmgr -i /dev/cd0

Good-luck.
This User Gave Thanks to AixCraft For This Post:
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Adding a disk to an AIX box

I have been asked to look at an AIX box that the owner (not a technical person) installed a new SCSI disk into, but cannot figure out how to build volumes or file systems on. It has been years since I messed with AIX, and I remember enough to know that it isn't like Solaris. To make things... (1 Reply)
Discussion started by: 98_1LE
1 Replies

2. IP Networking

mail host name on AIX box.

Hi, I was wondering if any body out there can tell me how can I find out what is the name of the mail host on the AIX box that I am working on? Is there any command to bring up the configuration for the mail server or mail host? Thanks in advance. (4 Replies)
Discussion started by: Shaz
4 Replies

3. AIX

moving AIX ver 4.2.1 to another AIX box

i want to move my AIX os ver 4.2.1 to a new version IBM system. how can i acheive this. (1 Reply)
Discussion started by: gmonix
1 Replies

4. Shell Programming and Scripting

ps uax comand on AIX box

I am trying to find the total CPU usage on an IBM AIX machine that could have several processors. I am using ps uax | awk {'print $3'} to find the CPU usage columns for the processes and then adding them up to find the total CPU usage. It was doing fine. However to my surprise, I find that the... (2 Replies)
Discussion started by: asutoshch
2 Replies

5. UNIX for Dummies Questions & Answers

difference between AIX box and Sun Solaris box

Hi, I need a clarification. Is there any difference between AIX box and Sun Solaris box? The bzip command with -c option works in AIX box and the same does not work in Sun Solaris box. Can anyone please explain if there is an implementation difference in both these boxes for the shell... (1 Reply)
Discussion started by: nisha4680
1 Replies

6. AIX

FTP folders from CD to AIX Box

Hi All , I would like to ftp whole folder ( which contains various sub folder and files ) from CD to AIX box. Could you please guide me how I can do this? Thanks in Advance Chandan (2 Replies)
Discussion started by: chandancsc
2 Replies

7. AIX

AIX 5.1 Box not booting

Quick backgound. We just moved the Datacenter. I attempted to boot one of our older AIX machines backup and it stops at a 518 Error code. Which is fine I need to run fsck on the volumes. The issue is I can't find the original media with the appropriate Date that was originally installed(previous... (1 Reply)
Discussion started by: jcompguru
1 Replies

8. AIX

How to check the LPAR in a AIX box ?

I have login into a server, and when i launch this command uname -L. I can see there is a LPAR. But is there anymore commands i can use to get more information on the LPAR ? like it is VIO ? wat the IP address ? etc, etc. please help. Thank you. (7 Replies)
Discussion started by: wingcross
7 Replies

9. Cybersecurity

securing AIX box

Guys, i want to securing AIX after install by scrath. Is anybody can inform about the standard port which used by AIX? (0 Replies)
Discussion started by: michlix
0 Replies

10. AIX

Setting AIX box at home.

Hi guys... I have got a old Aix box i.e. 7043 - 150 for home experimenting purposes. I am having some issues to setup the tcpip on it correctly, so that i can access it within the network and also from outside i.e. work. My setup looks like this: Modem ----> Apple airport wireless router... (2 Replies)
Discussion started by: uzair_rock
2 Replies
cfg_subsys_attr_t(9s)													     cfg_subsys_attr_t(9s)

NAME
cfg_subsys_attr_t - General: Contains attribute information for kernel modules SYNOPSIS
typedef struct { char name[CFG_ATTR_NAME_SZ]; uchar type; uchar operation; caddr_t addr; ulong min_val; ulong max_val; ulong val_size; } cfg_subsys_attr_t; MEMBERS
Specifies the ASCII name of the attribute. The name must be between 2 and CFG_ATTR_NAME_SZ characters in length, including the terminating null character. Do not begin the ASCII name of the attribute with the Method_ or Device_ characters. The cfgmgr framework reserves certain names that begin with the Method_ and Device_ characters. Specifies the data type associated with the name attribute. See the DESCRIPTION section for the constants you can pass to the type member. Specifies the operations that the cfgmgr framework can perform on the attribute. See the DESCRIPTION section for the constants you can pass to the operation member. Specifies the address of the data value associated with the attribute. The cfgmgr framework obtains the data value for this attribute from the /etc/sysconfigtab database and stores it at this address. The cfgmgr framework performs this storage operation if the following occurs: The attribute appears in the cfg_subsys_attr_t table (declared and initialized in the kernel module) with an operation code of CFG_OP_CONFIGURE. The kernel module writer passes the CFG_OP_CONFIGURE constant to the optype argument of the kernel module's configure routine. This is the kernel module's configuration entry point for handling static or dynamic configuration requests. Although the configure routine can initialize attributes that appear in the array with an operation code of CFG_OP_CONFIGURE, the cfgmgr framework overrides this initialization with the value specified in the /etc/sysconfigtab database. Specifies the minimum length of a string data value. If the data type for the attribute is numeric, specifies the minimum range. Specifies the maximum length of a string data value. If the data type for the attribute is numeric, specifies the maximum range. Specifies the binary data size. DESCRIPTION
The cfg_subsys_attr_t data structure contains information that kernel modules use to describe a variety of attributes. Kernel module writ- ers declare and initialize an array of cfg_subsys_attr_t data structures in their kernel modules. The cfg_subsys_attr_t data structure is a simplified version of the cfg_attr_t data structure and is designed to save space in the kernel. You must set the type member to one of the following constants: Data type is a null-terminated array of characters. Data type is a 32-bit signed integer. Data type is a 32-bit unsigned integer. Data type is a 64-bit signed integer. Data type is a 64-bit unsigned integer. Data type is an array of bytes. Data type is an 8-bit unsigned character. Data type is a 16-bit unsigned short integer. You can set the operation member to one of the following constants: The cfgmgr framework configures the attribute. This means the cfgmgr framework obtains a data value for the attribute from the /etc/sysconfigtab database. The configure operation occurs when the cfgmgr frame- work calls the kernel module's configure routine at its CFG_OP_CONFIGURE entry point. (That is, the optype argument of theconfigure rou- tine evaluates to the CFG_OP_CONFIGURE constant.) The cfgmgr framework queries (reads) the attribute. This means the kernel module cooper- ates with the cfgmgr framework to provide the value associated with the attribute as a result of user-initiated query requests. These requests are typically the result of the sysconfig -q command. The query operation occurs when the cfgmgr framework calls the kernel mod- ule's configure routine at its CFG_OP_QUERY entry point. (That is, the optype argument of the configure routine evaluates to the CFG_OP_QUERY constant.) The cfgmgr framework reconfigures the attribute. This means the cfgmgr framework reconfigures the data value for the attribute. This functionality allows a user to modify the attribute. A reconfigure request is typically the result of the sysconfig -r command. The reconfigure operation occurs when the cfgmgr framework calls the kernel module's configure routine at its CFG_OP_RECONFIG- URE entry point. (That is, the optype argument of the configure routine evaluates to the CFG_OP_RECONFIGURE constant.) FILES
SEE ALSO
Data Structures: cfg_attr_t(9s) cfg_subsys_attr_t(9s)
All times are GMT -4. The time now is 12:56 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy