AIX chdev sys0 query


 
Thread Tools Search this Thread
Operating Systems AIX AIX chdev sys0 query
# 1  
Old 09-12-2009
AIX chdev sys0 query

Hi all

chdev -l sys0 -a fullcore=flase

In the above command please explain why this command is use.and what is the default value of sys0

Also it would be good if someone can elaborate on the 'sys0' thing.

Thanks
# 2  
Old 09-12-2009
core dump

The core dump file that is created contains a memory image of the terminated process.

Once process terminated abnormally the core file is generated... To completion of full core file there should be some values assigned...

1.sufficient file sytem.. because core file generated in location at where process is terminated..

2. The ulimit value for core dump should be high

3. AIX should be configured to allow for full core dumps

If there is sufficient space in the filesystem and the user limits are set large enough to allow for the generation of a full core dump, but only partial core dumps are created then this is likely the result of AIX not being configured to allow for the generation of full core dumps. There are two AIX parameters that can affect the ability to generate full core dumps; the first parameter is 'fullcore' and the second parameter is 'pre430core'. To determine the currently defined values for these parameters issue the following command:

# lsattr -El sys0

The value for 'fullcore' should be true and the value for 'pre430core' should be false. If either of these values are not set appropriately, issue the following command(s) to update these values:

# chdev -l sys0 -a fullcore='true'
# chdev -l sys0 -a pre430core='false'


And default value for fullcore is false only..

Last edited by sumathi.k; 09-12-2009 at 06:24 AM..
# 3  
Old 09-12-2009
Thanks sumathi.k

The information provided by you is quite helpful.

Can you/anyone please explain what sys0 stands for in that command.

Appreciate the efforts
Thanks
# 4  
Old 09-28-2009
It refers to your operating system settings

smitty system changes sys0 as well


have a look at smitty chgsys and compare to output from lsattr -EL sys0
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

AIX Query

Can anyone tell me what the syntax :.: in a script means?? Thanks in advance (3 Replies)
Discussion started by: fergalmur
3 Replies

2. AIX

Chdev hostname change is not permanent

Dear Gurus, I have an AIX 7.1 box whose hostname is set to turtle.domain.com (FQDN) and I'm trying to change it to turtle. I'm using the below command for this: chdev -l inet0 -a hostname=turtle On running this, the hostname changes to turtle but once i reboot the machine, FQDN is back. ... (6 Replies)
Discussion started by: pocodot
6 Replies

3. UNIX for Dummies Questions & Answers

Query: How to install commercial cert into AIX and use it for FTPS connection

Hi Techies, I wish to check with everyone here something regarding Configuration of FTPS Server in AIX using Commercial Digital Cert instead of Sel Sign Cert. I'm working as system integration designer and I'm currently working on a interface which involves integration btw two systems using... (6 Replies)
Discussion started by: mkmuraly
6 Replies

4. UNIX for Advanced & Expert Users

sudo & chdev

I have an error when using chdev with sudo as follows; sudo chdev -l rmt0 -a block_size=512 chdev: 0514-518 Cannot access the CuDv object class in the device configuration database. I've added chdev in sudoers but still get the error, I guess it's something to do with CuDv... (3 Replies)
Discussion started by: gefa
3 Replies

5. Shell Programming and Scripting

Shell Script to execute Oracle query taking input from a file to form query

Hi, I need to query Oracle database for 100 users. I have these 100 users in a file. I need a shell script which would read this User file (one user at a time) & query database. For instance: USER CITY --------- ---------- A CITY_A B CITY_B C ... (2 Replies)
Discussion started by: DevendraG
2 Replies

6. Shell Programming and Scripting

Query Oracle tables and return values to shell script that calls the query

Hi, I have a requirement as below which needs to be done viz UNIX shell script (1) I have to connect to an Oracle database (2) Exexute "SELECT field_status from table 1" query on one of the tables. (3) Based on the result that I get from point (2), I have to update another table in the... (6 Replies)
Discussion started by: balaeswari
6 Replies

7. AIX

AIX custom package install query

I have created a .bff package for an app to tbe installed on AIX servers across regions. I am pretty new to the AIX mode of packaging using mkinstallp but I have been able to get the same done. I installed the same on the server in which i created the package and the application was deployed... (9 Replies)
Discussion started by: jobbyjoseph
9 Replies

8. Shell Programming and Scripting

add the output of a query to a variable to be used in another query

I would like to use the result of a query in another query. How do I redirect/add the output to another variable? $result = odbc_exec($connect, $query); while ($row = odbc_fetch_array($result)) { echo $row,"\n"; } odbc_close($connect); ?> This will output hostnames: host1... (0 Replies)
Discussion started by: hazno
0 Replies

9. AIX

IBM AIX 5.3 Query (v_node hold count ?)

Hi , I was reading AIX's Kernel Subsystem manual where I read about vn_hold, vn_rele, vn_lookup. I have few queries about them. According to manual vn_hold "The vn_hold entry point increments the v_count field, the hold count on the v-node, and the v-node's underlying g-node (generic node). This... (0 Replies)
Discussion started by: Amit Dang
0 Replies

10. AIX

Linking query in AIX

Hi, Can we link to 2 libraries out of which one is compiled with version 5 and other with version 6. version 6 used AIX 5.0 Version 5 used AIX 4.3 Will there be any runtime problems because of this ( If it goes through linking step )? Thanks , Suman (2 Replies)
Discussion started by: suman_jakkula
2 Replies
Login or Register to Ask a Question