Is confusing of memory dump, the variable was added to the /etc/sysctl.conf file and continues to generate automatically those files of memory dump.SirDice said:Not sure if that's all that's needed but set the sysctl(8) kern.coredump to 0.
Code:# sysctl -d kern.coredump kern.coredump: Enable/Disable coredumps
vi /etc/sysctl.conf
kern.coredump=0
No, that's for kernel crash dumps (see dumpon(8)).Can he comment out this line in /etc/rc.conf ?
Code:dumpdev="AUTO"
Have you applied the setting withIs confusing of memory dump, the variable was added to the /etc/sysctl.conf file and continues to generate automatically those files of memory dump.
#vi /etc/sysctl.conf
Code:kern.coredump=0
service sysctl restart
? What does sysctl kern.coredump
return now?Isn't this what generates the memory dump? This is an option to activate or deactivate at the time the base system is being installed.SirDice said:Not sure if that's all that's needed but set the sysctl(8) kern.coredump to 0.
Code:# sysctl -d kern.coredump kern.coredump: Enable/Disable coredumps
vi /etc/rc.conf
# Set dumpdev to "AUTO" to enable crash dumps, "NO" to disable
dumpdev="AUTO"
Yes.tobik@ said:Have you applied the setting with service sysctl restart ? What does sysctl kern.coredump return now?
Ok commented, it's under observation, it seems to be solved.PacketMan said:Can he comment out this line in /etc/rc.conf ?