{"id":2986,"date":"2025-12-02T06:01:51","date_gmt":"2025-12-02T06:01:51","guid":{"rendered":"https:\/\/fadyanwar.com\/?p=2986"},"modified":"2025-12-02T06:01:55","modified_gmt":"2025-12-02T06:01:55","slug":"fixing-a-full-linux-root-filesystem","status":"publish","type":"post","link":"https:\/\/fadyanwar.com\/index.php\/2025\/12\/02\/fixing-a-full-linux-root-filesystem\/","title":{"rendered":"Fixing a Full Linux Root Filesystem"},"content":{"rendered":"\n<p><strong>Understanding Why \/var\/lib\/snapd Consumes So Much Space<\/strong><\/p>\n\n\n\n<p>When a Linux system reports that the root filesystem is completely full, the cause often lies somewhere inside the <code>\/var<\/code> directory. One of the most common and least obvious contributors is Snapd, the package and application management system used in Ubuntu and other distributions.<\/p>\n\n\n\n<p>Snap stores application revisions, snapshots, cached packages, and metadata. Over time, these layers accumulate silently, and it\u2019s not unusual for <code>\/var\/lib\/snapd<\/code> to grow beyond 10 GB. This can cause package managers to fail, logs to stop writing, and system services to behave unpredictably.<\/p>\n\n\n\n<p>This article walks through the process of diagnosing the issue and cleaning up Snap safely and effectively.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">1. Diagnose What\u2019s Filling the Root Filesystem<\/h2>\n\n\n\n<p>Start by checking disk usage across the <code>\/var<\/code> directory:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nsudo du -sh \/var\/* | sort -h\n\n<\/pre><\/div>\n\n\n<p>If <code>\/var\/lib<\/code> is significantly larger than expected, inspect it more closely:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nsudo du -sh \/var\/lib\/* | sort -h\n\n<\/pre><\/div>\n\n\n<p>A large <code>\/var\/lib\/snapd<\/code> directory typically indicates the presence of:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>obsolete application revisions<\/li>\n\n\n\n<li>cached downloads<\/li>\n\n\n\n<li>signature assertions<\/li>\n\n\n\n<li>automatic snapshots<\/li>\n\n\n\n<li>leftover <code>.snap<\/code> package images<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">2. Remove Old Snap Revisions<\/h2>\n\n\n\n<p>Snap retains older versions of applications even after updates. To list all installed snaps, including inactive revisions:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nsnap list --all\n\n<\/pre><\/div>\n\n\n<p>Rows marked as \u201cdisabled\u201d represent inactive revisions that can be safely removed:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nsudo snap remove &amp;lt;name&gt; --revision=&amp;lt;rev&gt;\n\n<\/pre><\/div>\n\n\n<p>Removing inactive revisions often frees several gigabytes.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">3. Delete Snap Automatic Snapshots<\/h2>\n\n\n\n<p>Before removing or updating snaps, the system may create automatic snapshots. These snapshots persist until explicitly deleted.<\/p>\n\n\n\n<p>List snapshots:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nsudo snap saved\n\n<\/pre><\/div>\n\n\n<p>Delete snapshots you no longer need:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nsudo snap forget &amp;lt;id&gt;\n\n<\/pre><\/div>\n\n\n<p>This is one of the quickest ways to reclaim disk space.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">4. Clean Up Leftover <code>.snap<\/code> Package Files<\/h2>\n\n\n\n<p>Downloaded <code>.snap<\/code> package files live under:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nls -lh \/var\/lib\/snapd\/snaps\/\n\n<\/pre><\/div>\n\n\n<p>If snaps have been removed but their package files remain, they can be deleted:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nsudo rm \/var\/lib\/snapd\/snaps\/&amp;lt;file&gt;.snap\n\n<\/pre><\/div>\n\n\n<p>Only remove files corresponding to snaps that are no longer installed.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">5. Clear Snap Assertions and Cache<\/h2>\n\n\n\n<p>Snap maintains:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>metadata assertions<\/li>\n\n\n\n<li>cached packages<\/li>\n<\/ul>\n\n\n\n<p>These can grow large over time. Clear them safely:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nsudo rm -rf \/var\/lib\/snapd\/assertions\nsudo rm -rf \/var\/lib\/snapd\/cache\/*\n\n<\/pre><\/div>\n\n\n<p>Snap will regenerate required metadata automatically.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">6. Handle Deleted Files Still Held by Running Processes<\/h2>\n\n\n\n<p>Sometimes deleted files remain open by running processes, preventing the disk space from returning.<\/p>\n\n\n\n<p>Identify these ghost files:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nsudo lsof \/ | grep deleted\n\n<\/pre><\/div>\n\n\n<p>Restart the listed processes or reboot the machine to release the space.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">7. Repair Package Management After Clearing Space<\/h2>\n\n\n\n<p>A full root partition may interrupt package operations. If <code>dpkg<\/code> is stuck, repair it:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nsudo dpkg --configure -a\n\n<\/pre><\/div>\n\n\n<p>Then clean unused packages:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nsudo apt autoremove --purge\nsudo apt clean\n\n<\/pre><\/div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">8. (Optional) Remove Snapd Entirely<\/h2>\n\n\n\n<p>If you no longer rely on Snap-based applications, you can remove Snapd from the system:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nsudo apt purge snapd\nsudo rm -rf \/var\/lib\/snapd\nsudo rm -rf ~\/snap\n\n<\/pre><\/div>\n\n\n<p>This prevents Snap from consuming additional space in the future.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Snap simplifies software installation, but it can silently consume large amounts of disk space over time. By cleaning old revisions, removing automatic snapshots, deleting unused <code>.snap<\/code> files, and clearing cached metadata, you can significantly reduce the size of <code>\/var\/lib\/snapd<\/code> and restore free space to your root filesystem.<\/p>\n\n\n\n<p>Regular maintenance is recommended, especially on systems with smaller root partitions, developer environments, or machines with frequent Snap activity.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Understanding Why \/var\/lib\/snapd Consumes So Much Space When a Linux system reports that the root filesystem is completely full, the cause often lies somewhere inside the \/var directory. One of the most common and least obvious contributors is Snapd, the package and application management system used in Ubuntu and other distributions. Snap stores application revisions, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2988,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_editorskit_title_hidden":false,"_editorskit_reading_time":0,"_editorskit_is_block_options_detached":false,"_editorskit_block_options_position":"{}","_vp_format_video_url":"","_vp_image_focal_point":[],"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-2986","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-technology"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Fixing a Full Linux Root Filesystem - Fady Anwar<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/fadyanwar.com\/index.php\/2025\/12\/02\/fixing-a-full-linux-root-filesystem\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Fixing a Full Linux Root Filesystem - Fady Anwar\" \/>\n<meta property=\"og:description\" content=\"Understanding Why \/var\/lib\/snapd Consumes So Much Space When a Linux system reports that the root filesystem is completely full, the cause often lies somewhere inside the \/var directory. One of the most common and least obvious contributors is Snapd, the package and application management system used in Ubuntu and other distributions. Snap stores application revisions, [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/fadyanwar.com\/index.php\/2025\/12\/02\/fixing-a-full-linux-root-filesystem\/\" \/>\n<meta property=\"og:site_name\" content=\"Fady Anwar\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-02T06:01:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-02T06:01:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/fadyanwar.com\/wp-content\/uploads\/2025\/12\/ChatGPT-Image-Dec-2-2025-06_00_00-AM-1024x683.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"683\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Fady Anwar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@fadyanwar\" \/>\n<meta name=\"twitter:site\" content=\"@fadyanwar\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Fady Anwar\" \/>\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\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/12\\\/02\\\/fixing-a-full-linux-root-filesystem\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/12\\\/02\\\/fixing-a-full-linux-root-filesystem\\\/\"},\"author\":{\"name\":\"Fady Anwar\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#\\\/schema\\\/person\\\/b66e3277ceba346f7053a83464e90b03\"},\"headline\":\"Fixing a Full Linux Root Filesystem\",\"datePublished\":\"2025-12-02T06:01:51+00:00\",\"dateModified\":\"2025-12-02T06:01:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/12\\\/02\\\/fixing-a-full-linux-root-filesystem\\\/\"},\"wordCount\":458,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#\\\/schema\\\/person\\\/b66e3277ceba346f7053a83464e90b03\"},\"image\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/12\\\/02\\\/fixing-a-full-linux-root-filesystem\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/fadyanwar.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/ChatGPT-Image-Dec-2-2025-06_00_00-AM.png?fit=1536%2C1024&ssl=1\",\"articleSection\":[\"Technology\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/12\\\/02\\\/fixing-a-full-linux-root-filesystem\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/12\\\/02\\\/fixing-a-full-linux-root-filesystem\\\/\",\"url\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/12\\\/02\\\/fixing-a-full-linux-root-filesystem\\\/\",\"name\":\"Fixing a Full Linux Root Filesystem - Fady Anwar\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/12\\\/02\\\/fixing-a-full-linux-root-filesystem\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/12\\\/02\\\/fixing-a-full-linux-root-filesystem\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/fadyanwar.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/ChatGPT-Image-Dec-2-2025-06_00_00-AM.png?fit=1536%2C1024&ssl=1\",\"datePublished\":\"2025-12-02T06:01:51+00:00\",\"dateModified\":\"2025-12-02T06:01:55+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/12\\\/02\\\/fixing-a-full-linux-root-filesystem\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/12\\\/02\\\/fixing-a-full-linux-root-filesystem\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/12\\\/02\\\/fixing-a-full-linux-root-filesystem\\\/#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/fadyanwar.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/ChatGPT-Image-Dec-2-2025-06_00_00-AM.png?fit=1536%2C1024&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/fadyanwar.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/ChatGPT-Image-Dec-2-2025-06_00_00-AM.png?fit=1536%2C1024&ssl=1\",\"width\":1536,\"height\":1024},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/index.php\\\/2025\\\/12\\\/02\\\/fixing-a-full-linux-root-filesystem\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/fadyanwar.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Fixing a Full Linux Root Filesystem\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#website\",\"url\":\"https:\\\/\\\/fadyanwar.com\\\/\",\"name\":\"Fady Anwar\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#\\\/schema\\\/person\\\/b66e3277ceba346f7053a83464e90b03\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/fadyanwar.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/fadyanwar.com\\\/#\\\/schema\\\/person\\\/b66e3277ceba346f7053a83464e90b03\",\"name\":\"Fady Anwar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g\",\"caption\":\"Fady Anwar\"},\"logo\":{\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Fixing a Full Linux Root Filesystem - Fady Anwar","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:\/\/fadyanwar.com\/index.php\/2025\/12\/02\/fixing-a-full-linux-root-filesystem\/","og_locale":"en_US","og_type":"article","og_title":"Fixing a Full Linux Root Filesystem - Fady Anwar","og_description":"Understanding Why \/var\/lib\/snapd Consumes So Much Space When a Linux system reports that the root filesystem is completely full, the cause often lies somewhere inside the \/var directory. One of the most common and least obvious contributors is Snapd, the package and application management system used in Ubuntu and other distributions. Snap stores application revisions, [&hellip;]","og_url":"https:\/\/fadyanwar.com\/index.php\/2025\/12\/02\/fixing-a-full-linux-root-filesystem\/","og_site_name":"Fady Anwar","article_published_time":"2025-12-02T06:01:51+00:00","article_modified_time":"2025-12-02T06:01:55+00:00","og_image":[{"width":1024,"height":683,"url":"https:\/\/fadyanwar.com\/wp-content\/uploads\/2025\/12\/ChatGPT-Image-Dec-2-2025-06_00_00-AM-1024x683.png","type":"image\/png"}],"author":"Fady Anwar","twitter_card":"summary_large_image","twitter_creator":"@fadyanwar","twitter_site":"@fadyanwar","twitter_misc":{"Written by":"Fady Anwar","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/fadyanwar.com\/index.php\/2025\/12\/02\/fixing-a-full-linux-root-filesystem\/#article","isPartOf":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/12\/02\/fixing-a-full-linux-root-filesystem\/"},"author":{"name":"Fady Anwar","@id":"https:\/\/fadyanwar.com\/#\/schema\/person\/b66e3277ceba346f7053a83464e90b03"},"headline":"Fixing a Full Linux Root Filesystem","datePublished":"2025-12-02T06:01:51+00:00","dateModified":"2025-12-02T06:01:55+00:00","mainEntityOfPage":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/12\/02\/fixing-a-full-linux-root-filesystem\/"},"wordCount":458,"commentCount":0,"publisher":{"@id":"https:\/\/fadyanwar.com\/#\/schema\/person\/b66e3277ceba346f7053a83464e90b03"},"image":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/12\/02\/fixing-a-full-linux-root-filesystem\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/fadyanwar.com\/wp-content\/uploads\/2025\/12\/ChatGPT-Image-Dec-2-2025-06_00_00-AM.png?fit=1536%2C1024&ssl=1","articleSection":["Technology"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/fadyanwar.com\/index.php\/2025\/12\/02\/fixing-a-full-linux-root-filesystem\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/fadyanwar.com\/index.php\/2025\/12\/02\/fixing-a-full-linux-root-filesystem\/","url":"https:\/\/fadyanwar.com\/index.php\/2025\/12\/02\/fixing-a-full-linux-root-filesystem\/","name":"Fixing a Full Linux Root Filesystem - Fady Anwar","isPartOf":{"@id":"https:\/\/fadyanwar.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/12\/02\/fixing-a-full-linux-root-filesystem\/#primaryimage"},"image":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/12\/02\/fixing-a-full-linux-root-filesystem\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/fadyanwar.com\/wp-content\/uploads\/2025\/12\/ChatGPT-Image-Dec-2-2025-06_00_00-AM.png?fit=1536%2C1024&ssl=1","datePublished":"2025-12-02T06:01:51+00:00","dateModified":"2025-12-02T06:01:55+00:00","breadcrumb":{"@id":"https:\/\/fadyanwar.com\/index.php\/2025\/12\/02\/fixing-a-full-linux-root-filesystem\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/fadyanwar.com\/index.php\/2025\/12\/02\/fixing-a-full-linux-root-filesystem\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/fadyanwar.com\/index.php\/2025\/12\/02\/fixing-a-full-linux-root-filesystem\/#primaryimage","url":"https:\/\/i0.wp.com\/fadyanwar.com\/wp-content\/uploads\/2025\/12\/ChatGPT-Image-Dec-2-2025-06_00_00-AM.png?fit=1536%2C1024&ssl=1","contentUrl":"https:\/\/i0.wp.com\/fadyanwar.com\/wp-content\/uploads\/2025\/12\/ChatGPT-Image-Dec-2-2025-06_00_00-AM.png?fit=1536%2C1024&ssl=1","width":1536,"height":1024},{"@type":"BreadcrumbList","@id":"https:\/\/fadyanwar.com\/index.php\/2025\/12\/02\/fixing-a-full-linux-root-filesystem\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/fadyanwar.com\/"},{"@type":"ListItem","position":2,"name":"Fixing a Full Linux Root Filesystem"}]},{"@type":"WebSite","@id":"https:\/\/fadyanwar.com\/#website","url":"https:\/\/fadyanwar.com\/","name":"Fady Anwar","description":"","publisher":{"@id":"https:\/\/fadyanwar.com\/#\/schema\/person\/b66e3277ceba346f7053a83464e90b03"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/fadyanwar.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/fadyanwar.com\/#\/schema\/person\/b66e3277ceba346f7053a83464e90b03","name":"Fady Anwar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g","caption":"Fady Anwar"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/a9172040bbc3bbe24fb49d59dac20da030af1f5ff628126c979a1d4b71eaed41?s=96&d=mm&r=g"}}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/fadyanwar.com\/wp-content\/uploads\/2025\/12\/ChatGPT-Image-Dec-2-2025-06_00_00-AM.png?fit=1536%2C1024&ssl=1","jetpack_sharing_enabled":true,"post_mailing_queue_ids":[],"_links":{"self":[{"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/posts\/2986","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/comments?post=2986"}],"version-history":[{"count":1,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/posts\/2986\/revisions"}],"predecessor-version":[{"id":2987,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/posts\/2986\/revisions\/2987"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/media\/2988"}],"wp:attachment":[{"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/media?parent=2986"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/categories?post=2986"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fadyanwar.com\/index.php\/wp-json\/wp\/v2\/tags?post=2986"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}