How to disable the coredump function of systemd on Linux?

I do not want to have coredump for the developing machine using systemd on Linux? How to disable the coredump function of systemd?

You can disable coredump function of systemd by adding this line

Storage=none

to

/etc/systemd/coredump.conf

For your reference:

   Storage=
       Controls where to store cores. One of "none", "external",
       "journal", and "both". When "none", the coredumps will be
       logged but not stored permanently. When "external" (the
       default), cores will be stored in
       /var/lib/systemd/coredump. When "journal", cores will be
       stored in the journal and rotated following normal
       journal rotation patterns. When "both", cores will be
       stored in both locations.

       When cores are stored in the journal, they might be
       compressed following journal compression settings, see
       journald.conf(5). When cores are stored externally, they
       will be compressed by default, see below.

Eric Ma

Eric is a systems guy. Eric is interested in building high-performance and scalable distributed systems and related technologies. The views or opinions expressed here are solely Eric's own and do not necessarily represent those of any third parties.

Leave a Reply

Your email address will not be published. Required fields are marked *