You are not logged in.
I have put
Storage=none
in /etc/systemd/coredump.conf. But I nevertheless find big coredump files in /var/lib/systemd/coredump
[xxxxxx@pcolivier /var/lib/systemd/coredump]$ ls -sha
total 1.1G
16K ./
4.0K ../
528M .#core.chromium.1000.9d1496c070aa4e98956e50e172cbd7c1.551.14477661410000001236b4ce05c4e143
541M .#core.chromium.1000.f500f02578f24c159ce1ffc81e8dc4ff.538.14476899740000006acdd264b686712a
Is this a bug? Is there any possibility to completely get rid of coredumps files.
Offline
I have "DumpCore=no" in /etc/systemd/system.conf
Offline
I have "DumpCore=no" in /etc/systemd/system.conf
I missed this option, thanks! I will see if that really works in the future. Or perhaps have a way to force crash a software and see what happen?
Offline
/*
* filename: dump.c
*/
#include <stdio.h>
int
main (int argc, char *argv[])
{
int *p = NULL;
*p = 0;
return 0;
}
Last edited by Knight (2015-11-19 12:23:16)
Offline
Maybe the coredumps are from before you used 'Storage=none'?
Offline