{"id":3033,"date":"2025-07-13T04:07:56","date_gmt":"2025-07-13T01:07:56","guid":{"rendered":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\/"},"modified":"2025-07-13T04:07:56","modified_gmt":"2025-07-13T01:07:56","slug":"disabling-core-dumps-on-linux-servers-a-step-by-step-guide","status":"publish","type":"post","link":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\/","title":{"rendered":"Disabling Core Dumps on Linux Servers: A Step-by-Step Guide"},"content":{"rendered":"<p><br \/>\n<\/p>\n<p>Core dumps can be immensely useful for debugging applications. However, they can also consume considerable disk space and pose security risks by exposing sensitive information. In this article, we will explore how to disable core dumps on Linux servers safely and efficiently.<\/p>\n<p><\/p>\n<h2>What Are Core Dumps?<\/h2>\n<p><\/p>\n<p>A core dump is a file that captures the memory of an application at a specific point in time, typically when the application crashes. While this can be invaluable for developers diagnosing issues, core dumps may contain sensitive data, such as passwords and user information, and can quickly fill up disk space if not managed properly.<\/p>\n<p><\/p>\n<h3>Reasons to Disable Core Dumps<\/h3>\n<p><\/p>\n<ol><\/p>\n<li><strong>Security Risks<\/strong>: Core dumps can expose sensitive information. If unauthorized individuals access these files, it may lead to data breaches.<\/li>\n<p><\/p>\n<li><strong>Disk Space Consumption<\/strong>: Core dumps can grow large, especially for memory-intensive applications, potentially filling up your disk and affecting system performance.<\/li>\n<p><\/p>\n<li><strong>Unnecessary Files<\/strong>: If you\u2019re not in the business of debugging, core dumps may not be needed at all.<\/li>\n<p>\n<\/ol>\n<p><\/p>\n<h2>How to Disable Core Dumps<\/h2>\n<p><\/p>\n<p>Disabling core dumps on Linux can be accomplished in several ways. Below are step-by-step instructions for each method.<\/p>\n<p><\/p>\n<h3>Method 1: Using <code>ulimit<\/code><\/h3>\n<p><\/p>\n<ol><\/p>\n<li>\n<p><strong>Open the Terminal<\/strong>: Access your server through SSH or directly via the terminal.<\/p>\n<p>\n<\/li>\n<p><\/p>\n<li>\n<p><strong>Check Current Core Dump Size<\/strong>: Run the following command:<br \/>\nbash<br \/>\nulimit -c<\/p>\n<p><\/p>\n<p>A result of <code>0<\/code> indicates that core dumps are already disabled. If it returns a size (e.g., <code>unlimited<\/code>), proceed to the next step.<\/p>\n<p>\n<\/li>\n<p><\/p>\n<li>\n<p><strong>Disable Core Dumps for the Current Session<\/strong>:<br \/>\nTo disable core dumps for the current user session, use:<br \/>\nbash<br \/>\nulimit -c 0<\/p>\n<p><\/p>\n<p>This change is temporary and will reset after a reboot.<\/p>\n<p>\n<\/li>\n<p><\/p>\n<li>\n<p><strong>Make the Change Permanent<\/strong>:<br \/>\nTo keep this setting even after a reboot, you\u2019ll need to add the command to your shell initialization files. For bash users, you can add the following line to <code>~\/.bashrc<\/code> or <code>~\/.bash_profile<\/code>:<br \/>\nbash<br \/>\necho &#8220;ulimit -c 0&#8221; &gt;&gt; ~\/.bashrc<\/p>\n<p><\/p>\n<p>Then, to apply the change:<br \/>\nbash<br \/>\nsource ~\/.bashrc<\/p>\n<p>\n<\/li>\n<p>\n<\/ol>\n<p><\/p>\n<h3>Method 2: Modifying <code>\/etc\/security\/limits.conf<\/code><\/h3>\n<p><\/p>\n<ol><\/p>\n<li>\n<p><strong>Open the Limits Configuration File<\/strong>:<br \/>\nUse a text editor to open the limits configuration file:<br \/>\nbash<br \/>\nsudo nano \/etc\/security\/limits.conf<\/p>\n<p>\n<\/li>\n<p><\/p>\n<li>\n<p><strong>Add the Following Lines<\/strong>:<br \/>\nTo disable core dumps for all users, add these lines at the end of the file:<\/p>\n<p><\/p>\n<ul><\/p>\n<li>hard    core    0<\/li>\n<p><\/p>\n<li>soft    core    0<\/li>\n<p>\n<\/ul>\n<p><\/p>\n<p>This change affects all users. If you want to target a specific user, replace <code>*<\/code> with the username.<\/p>\n<p>\n<\/li>\n<p><\/p>\n<li>\n<p><strong>Save and Exit<\/strong>: <br \/>\nSave your changes and exit the text editor (for nano, it\u2019s <code>CTRL + O<\/code>, then <code>CTRL + X<\/code>).<\/p>\n<p>\n<\/li>\n<p><\/p>\n<li>\n<p><strong>Reboot the System<\/strong>: To apply the changes, reboot your server:<br \/>\nbash<br \/>\nsudo reboot<\/p>\n<p>\n<\/li>\n<p>\n<\/ol>\n<p><\/p>\n<h3>Method 3: Modifying System-wide Settings<\/h3>\n<p><\/p>\n<ol><\/p>\n<li>\n<p><strong>Edit <code>sysctl.conf<\/code><\/strong>:<br \/>\nOpen the sysctl configuration file:<br \/>\nbash<br \/>\nsudo nano \/etc\/sysctl.conf<\/p>\n<p>\n<\/li>\n<p><\/p>\n<li>\n<p><strong>Add the Following Line<\/strong>:<br \/>\nTo disable core dumps on a global scale, add this line:<br \/>\nbash<br \/>\nkernel.core_uses_pid = 0<\/p>\n<p><\/p>\n<p>Note that this configures how core files are named, but does not fully disable them.<\/p>\n<p>\n<\/li>\n<p><\/p>\n<li>\n<p><strong>Apply Changes<\/strong>:<br \/>\nAfter saving your changes, apply them with:<br \/>\nbash<br \/>\nsudo sysctl -p<\/p>\n<p>\n<\/li>\n<p>\n<\/ol>\n<p><\/p>\n<h3>Verification<\/h3>\n<p><\/p>\n<p>After implementing any method, it\u2019s essential to verify that the changes have taken effect:<\/p>\n<p><\/p>\n<ol><\/p>\n<li>\n<p><strong>Check Core Dump Size<\/strong>:<br \/>\nRe-run the <code>ulimit -c<\/code> command:<br \/>\nbash<br \/>\nulimit -c<\/p>\n<p><\/p>\n<p>You should see <code>0<\/code>.<\/p>\n<p>\n<\/li>\n<p><\/p>\n<li>\n<p><strong>Test Core Dump Creation<\/strong>:<br \/>\nForce an application to crash (be cautious with production systems) and check for the presence of a core dump file. If core dumps were disabled successfully, no file should be generated.<\/p>\n<p>\n<\/li>\n<p>\n<\/ol>\n<p><\/p>\n<h2>Conclusion<\/h2>\n<p><\/p>\n<p>Disabling core dumps is a straightforward process that can greatly enhance the security and performance of your Linux server. Whether you choose to apply changes per session, for specific users, or system-wide, it\u2019s crucial to ensure that you are aware of the implications of these modifications. Always consider keeping core dumps enabled in a development environment while securing production servers against potential risks.<\/p>\n<p><\/p>\n<p>For further tips and best practices on server management, stay tuned to the WafaTech Blog!<\/p>\n\n","protected":false},"excerpt":{"rendered":"<p>Core dumps can be immensely useful for debugging applications. However, they can also consume considerable disk space and pose security risks by exposing sensitive information. In this article, we will explore how to disable core dumps on Linux servers safely and efficiently. What Are Core Dumps? A core dump is a file that captures the [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":3034,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","inline_featured_image":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[22],"tags":[891,267,1598,233,265,302,279],"class_list":["post-3033","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux-security","tag-core","tag-disabling","tag-dumps","tag-guide","tag-linux","tag-servers","tag-stepbystep","et-has-post-format-content","et_post_format-et-post-format-standard"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.5 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Disabling Core Dumps on Linux Servers: A Step-by-Step Guide - WafaTech Blogs<\/title>\n<meta name=\"description\" content=\"Disabling Core Dumps on Linux Servers: A Step-by-Step Guide %\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Disabling Core Dumps on Linux Servers: A Step-by-Step Guide\" \/>\n<meta property=\"og:description\" content=\"Disabling Core Dumps on Linux Servers: A Step-by-Step Guide %\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"WafaTech Blogs\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/people\/WafaTech\/61560546351289\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-07-13T01:07:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/06\/logo_big.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"2221\" \/>\n\t<meta property=\"og:image:height\" content=\"482\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"WafaTech SA\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@wafatech_sa\" \/>\n<meta name=\"twitter:site\" content=\"@wafatech_sa\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"WafaTech SA\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":[\"Article\",\"BlogPosting\"],\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\\\/\"},\"author\":{\"name\":\"WafaTech SA\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#\\\/schema\\\/person\\\/1a5761fc0feb63ab59d295d7c2648f06\"},\"headline\":\"Disabling Core Dumps on Linux Servers: A Step-by-Step Guide\",\"datePublished\":\"2025-07-13T01:07:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\\\/\"},\"wordCount\":632,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/Disabling-Core-Dumps-on-Linux-Servers-A-Step-by-Step-Guide.png\",\"keywords\":[\"Core\",\"Disabling\",\"Dumps\",\"Guide\",\"Linux\",\"Servers\",\"StepbyStep\"],\"articleSection\":[\"Linux Security\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\\\/\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\\\/\",\"name\":\"Disabling Core Dumps on Linux Servers: A Step-by-Step Guide - WafaTech Blogs\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/Disabling-Core-Dumps-on-Linux-Servers-A-Step-by-Step-Guide.png\",\"datePublished\":\"2025-07-13T01:07:56+00:00\",\"description\":\"Disabling Core Dumps on Linux Servers: A Step-by-Step Guide %\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\\\/#primaryimage\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/Disabling-Core-Dumps-on-Linux-Servers-A-Step-by-Step-Guide.png\",\"contentUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/Disabling-Core-Dumps-on-Linux-Servers-A-Step-by-Step-Guide.png\",\"width\":1024,\"height\":1024,\"caption\":\"linux server disabling core dumps\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Disabling Core Dumps on Linux Servers: A Step-by-Step Guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/\",\"name\":\"WafaTech Blogs\",\"description\":\"Smart Technologies\",\"publisher\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#organization\"},\"alternateName\":\"WafaTech\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#organization\",\"name\":\"WafaTech Blogs\",\"alternateName\":\"WafaTech\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/logo_big.webp\",\"contentUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/logo_big.webp\",\"width\":2221,\"height\":482,\"caption\":\"WafaTech Blogs\"},\"image\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/people\\\/WafaTech\\\/61560546351289\\\/\",\"https:\\\/\\\/x.com\\\/wafatech_sa\",\"https:\\\/\\\/www.youtube.com\\\/@wafatech-sa\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/wafatech\\\/\"],\"description\":\"WafaTech, a leading Saudi IT services provider, specializes in cloud solutions, connectivity, and ICT services. Offering secure cloud infrastructure, high-speed internet, and ICT solutions like hosting, backup, and disaster recovery, WafaTech operates a Tier 3 data center at KAUST with ISO certifications. Regulated by CST, the company is committed to innovation, security, and customer satisfaction, empowering businesses in the digital age.\",\"email\":\"sales@wafatech.sa\",\"legalName\":\"Al-Wafa Al-Dhakia For Information Technology LLC\",\"foundingDate\":\"2013-01-08\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#\\\/schema\\\/person\\\/1a5761fc0feb63ab59d295d7c2648f06\",\"name\":\"WafaTech SA\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g\",\"caption\":\"WafaTech SA\"},\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/author\\\/omer-yaseen\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Disabling Core Dumps on Linux Servers: A Step-by-Step Guide - WafaTech Blogs","description":"Disabling Core Dumps on Linux Servers: A Step-by-Step Guide %","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\/","og_locale":"en_US","og_type":"article","og_title":"Disabling Core Dumps on Linux Servers: A Step-by-Step Guide","og_description":"Disabling Core Dumps on Linux Servers: A Step-by-Step Guide %","og_url":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\/","og_site_name":"WafaTech Blogs","article_publisher":"https:\/\/www.facebook.com\/people\/WafaTech\/61560546351289\/","article_published_time":"2025-07-13T01:07:56+00:00","og_image":[{"width":2221,"height":482,"url":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/06\/logo_big.webp","type":"image\/webp"}],"author":"WafaTech SA","twitter_card":"summary_large_image","twitter_creator":"@wafatech_sa","twitter_site":"@wafatech_sa","twitter_misc":{"Written by":"WafaTech SA","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\/#article","isPartOf":{"@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\/"},"author":{"name":"WafaTech SA","@id":"https:\/\/wafatech.sa\/blog\/#\/schema\/person\/1a5761fc0feb63ab59d295d7c2648f06"},"headline":"Disabling Core Dumps on Linux Servers: A Step-by-Step Guide","datePublished":"2025-07-13T01:07:56+00:00","mainEntityOfPage":{"@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\/"},"wordCount":632,"commentCount":0,"publisher":{"@id":"https:\/\/wafatech.sa\/blog\/#organization"},"image":{"@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2025\/07\/Disabling-Core-Dumps-on-Linux-Servers-A-Step-by-Step-Guide.png","keywords":["Core","Disabling","Dumps","Guide","Linux","Servers","StepbyStep"],"articleSection":["Linux Security"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/wafatech.sa\/blog\/linux\/linux-security\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\/","url":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\/","name":"Disabling Core Dumps on Linux Servers: A Step-by-Step Guide - WafaTech Blogs","isPartOf":{"@id":"https:\/\/wafatech.sa\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\/#primaryimage"},"image":{"@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2025\/07\/Disabling-Core-Dumps-on-Linux-Servers-A-Step-by-Step-Guide.png","datePublished":"2025-07-13T01:07:56+00:00","description":"Disabling Core Dumps on Linux Servers: A Step-by-Step Guide %","breadcrumb":{"@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wafatech.sa\/blog\/linux\/linux-security\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\/#primaryimage","url":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2025\/07\/Disabling-Core-Dumps-on-Linux-Servers-A-Step-by-Step-Guide.png","contentUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2025\/07\/Disabling-Core-Dumps-on-Linux-Servers-A-Step-by-Step-Guide.png","width":1024,"height":1024,"caption":"linux server disabling core dumps"},{"@type":"BreadcrumbList","@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/disabling-core-dumps-on-linux-servers-a-step-by-step-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wafatech.sa\/blog\/"},{"@type":"ListItem","position":2,"name":"Disabling Core Dumps on Linux Servers: A Step-by-Step Guide"}]},{"@type":"WebSite","@id":"https:\/\/wafatech.sa\/blog\/#website","url":"https:\/\/wafatech.sa\/blog\/","name":"WafaTech Blogs","description":"Smart Technologies","publisher":{"@id":"https:\/\/wafatech.sa\/blog\/#organization"},"alternateName":"WafaTech","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wafatech.sa\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/wafatech.sa\/blog\/#organization","name":"WafaTech Blogs","alternateName":"WafaTech","url":"https:\/\/wafatech.sa\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wafatech.sa\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/06\/logo_big.webp","contentUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/06\/logo_big.webp","width":2221,"height":482,"caption":"WafaTech Blogs"},"image":{"@id":"https:\/\/wafatech.sa\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/people\/WafaTech\/61560546351289\/","https:\/\/x.com\/wafatech_sa","https:\/\/www.youtube.com\/@wafatech-sa","https:\/\/www.linkedin.com\/company\/wafatech\/"],"description":"WafaTech, a leading Saudi IT services provider, specializes in cloud solutions, connectivity, and ICT services. Offering secure cloud infrastructure, high-speed internet, and ICT solutions like hosting, backup, and disaster recovery, WafaTech operates a Tier 3 data center at KAUST with ISO certifications. Regulated by CST, the company is committed to innovation, security, and customer satisfaction, empowering businesses in the digital age.","email":"sales@wafatech.sa","legalName":"Al-Wafa Al-Dhakia For Information Technology LLC","foundingDate":"2013-01-08","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/wafatech.sa\/blog\/#\/schema\/person\/1a5761fc0feb63ab59d295d7c2648f06","name":"WafaTech SA","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g","caption":"WafaTech SA"},"url":"https:\/\/wafatech.sa\/blog\/author\/omer-yaseen\/"}]}},"jetpack_featured_media_url":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2025\/07\/Disabling-Core-Dumps-on-Linux-Servers-A-Step-by-Step-Guide.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/posts\/3033","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/comments?post=3033"}],"version-history":[{"count":0,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/posts\/3033\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/media\/3034"}],"wp:attachment":[{"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/media?parent=3033"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/categories?post=3033"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/tags?post=3033"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}