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
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
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..
The ulimit value for core dump should be high
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..
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
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