{"id":16309,"date":"2024-10-31T11:37:30","date_gmt":"2024-10-31T11:37:30","guid":{"rendered":"https:\/\/truehost.com\/support\/?post_type=docs&#038;p=16309"},"modified":"2024-10-31T19:19:14","modified_gmt":"2024-10-31T19:19:14","password":"","slug":"how-to-find-large-files-and-directories-on-a-linux-server","status":"publish","type":"docs","link":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-find-large-files-and-directories-on-a-linux-server\/","title":{"rendered":"How to Find Large Files and Directories on a Linux Server"},"content":{"rendered":"\n<p>To manage disk space on a Linux server effectively, you often need to identify large files and directories. Here are several useful commands to find and analyze large files and directories.<\/p>\n\n\n\n<p><strong>1. Using the <code>du<\/code> Command<\/strong><\/p>\n\n\n\n<p>The <code>du<\/code> (Disk Usage) command displays the disk space used by files and directories. Use it with various options to list large directories and files.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Find the Largest Directories<\/h4>\n\n\n\n<p>To find the largest directories within the current directory, use<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>du -ah --max-depth=1 | sort -hr | head -n 10<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>-a<\/code>: Shows sizes for both files and directories.<\/li>\n\n\n\n<li><code>-h<\/code>: Displays human-readable sizes (e.g., KB, MB).<\/li>\n\n\n\n<li><code>--max-depth=1<\/code>: Limits output to the first level.<\/li>\n\n\n\n<li><code>sort -hr<\/code>: Sorts output in human-readable reverse order.<\/li>\n\n\n\n<li><code>head -n 10<\/code>: Displays the top 10 largest entries.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-large is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"237\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-692-1024x237.png\" alt=\"\" class=\"wp-image-16323\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-692-1024x237.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-692-300x70.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-692-768x178.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-692-1536x356.png 1536w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-692.png 1596w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">Find Large Directories on Entire Filesystem<\/h4>\n\n\n\n<p>To find the largest directories on the whole filesystem:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo du -ah \/ | sort -hr | head -n 10<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"269\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-694-1024x269.png\" alt=\"\" class=\"wp-image-16326\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-694-1024x269.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-694-300x79.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-694-768x201.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-694.png 1216w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">Find Specific File Sizes in MB<\/h4>\n\n\n\n<p>To find files larger than a specific size (e.g., 100 MB):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo find \/ -type f -size +100M -exec ls -lh {} \\; | awk '{ print $NF \": \" $5 }'<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>-type f<\/code>: Searches for files only.<\/li>\n\n\n\n<li><code>-size +100M<\/code>: Looks for files larger than 100 MB.<\/li>\n\n\n\n<li><code>-exec ls -lh {}<\/code>: Lists each file with its size in human-readable format.<\/li>\n\n\n\n<li><code>awk '{ print $NF \": \" $5 }'<\/code>: Prints the file path and size.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"1008\" height=\"236\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-693.png\" alt=\"\" class=\"wp-image-16325\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-693.png 1008w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-693-300x70.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-693-768x180.png 768w\" sizes=\"auto, (max-width: 1008px) 100vw, 1008px\" \/><\/figure>\n\n\n\n<p><strong>2. Using the <code>find<\/code> Command<\/strong><\/p>\n\n\n\n<p>The <code>find<\/code> command is very powerful for locating large files based on various conditions.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Find Files Larger than 1 GB<\/h4>\n\n\n\n<p>To locate files larger than 1 GB, use:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>find \/ -type f -size +1G 2&gt;\/dev\/null<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>\/<\/code>: Specifies the root directory. Replace with a specific path to narrow the search.<\/li>\n\n\n\n<li><code>-type f<\/code>: Searches for files only.<\/li>\n\n\n\n<li><code>-size +1G<\/code>: Finds files larger than 1 GB.<\/li>\n\n\n\n<li><code>2>\/dev\/null<\/code>: Suppresses error messages for directories you don\u2019t have permission to access.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-large is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"289\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-695-1024x289.png\" alt=\"\" class=\"wp-image-16327\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-695-1024x289.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-695-300x85.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-695-768x217.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-695.png 1270w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">3. Using the <code>ls<\/code> Command for Directory Contents<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>For a quick list of large files in a specific directory, <code>ls<\/code> can be handy.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">Sort Files by Size in a Directory<\/h4>\n\n\n\n<p>To list files in a directory sorted by size:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ls -lhS \/path\/to\/directory | head -n 10<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>-l<\/code>: Displays details (size, date, etc.).<\/li>\n\n\n\n<li><code>-h<\/code>: Shows human-readable sizes.<\/li>\n\n\n\n<li><code>-S<\/code>: Sorts output by file size, largest first.<\/li>\n\n\n\n<li><code>head <\/code><\/li>\n\n\n\n<li><code>-n 10<\/code>: Displays the top 10 largest files.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-large is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"208\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-696-1024x208.png\" alt=\"\" class=\"wp-image-16328\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-696-1024x208.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-696-300x61.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-696-768x156.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-696.png 1035w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">4. Using the <code>ncdu<\/code> Command (Recommended for Interactive Use)<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Install <code>ncdu<\/code> if it\u2019s not available:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install ncdu     # For Debian\/Ubuntu\nsudo yum install ncdu     # For CentOS\/RHEL<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"384\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-690-1024x384.png\" alt=\"\" class=\"wp-image-16320\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-690-1024x384.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-690-300x112.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-690-768x288.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-690.png 1438w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>If available, <code>ncdu<\/code> (NCurses Disk Usage) is an interactive tool that\u2019s particularly useful for finding large files and directories.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo ncdu \/<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large is-style-zoooom\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"324\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-691-1024x324.png\" alt=\"\" class=\"wp-image-16321\" srcset=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-691-1024x324.png 1024w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-691-300x95.png 300w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-691-768x243.png 768w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-691-1536x487.png 1536w, https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-691.png 1679w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Use the arrow keys to navigate directories and identify the largest files or folders interactively.<\/li>\n\n\n\n<li>Press <code>q<\/code> to quit.zz<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Summary<\/h3>\n\n\n\n<p>These commands are quick and efficient ways to locate large files and directories on a Linux server. By combining <code>du<\/code>, <code>find<\/code>, <code>ls<\/code>, and <code>ncdu<\/code>, you can easily identify the largest files and manage your disk space effectively.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>To manage disk space on a Linux server effectively, you often need to identify large files and directories. Here are several useful commands to find and analyze large files and directories. 1. Using the du Command The du (Disk Usage) command displays the disk space used by files and directories. Use it with various options [&hellip;]<\/p>\n","protected":false},"author":9,"featured_media":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"_eb_attr":"","_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"footnotes":""},"doc_category":[1820,1824,1879,2128],"doc_tag":[],"class_list":["post-16309","docs","type-docs","status-publish","hentry","doc_category-cloud-servers-in-kenya","doc_category-dedicated-servers","doc_category-servers","doc_category-vps-servers"],"year_month":"2026-06","word_count":466,"total_views":0,"reactions":{"happy":0,"normal":0,"sad":0},"author_info":{"name":"Eugene","author_nicename":"eugene","author_url":"https:\/\/truehost.com\/support\/author\/eugene\/"},"doc_category_info":[{"term_name":"Cloud servers in Kenya","term_url":"https:\/\/truehost.com\/support\/docs-category\/cloud-servers-in-kenya\/"},{"term_name":"dedicated servers","term_url":"https:\/\/truehost.com\/support\/docs-category\/dedicated-servers\/"},{"term_name":"Servers","term_url":"https:\/\/truehost.com\/support\/docs-category\/servers\/"},{"term_name":"VPS-Servers","term_url":"https:\/\/truehost.com\/support\/docs-category\/vps-servers\/"}],"doc_tag_info":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Find Large Files and Directories on a Linux Server -<\/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:\/\/truehost.com\/support\/knowledge-base\/how-to-find-large-files-and-directories-on-a-linux-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Find Large Files and Directories on a Linux Server -\" \/>\n<meta property=\"og:description\" content=\"To manage disk space on a Linux server effectively, you often need to identify large files and directories. Here are several useful commands to find and analyze large files and directories. 1. Using the du Command The du (Disk Usage) command displays the disk space used by files and directories. Use it with various options [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/truehost.com\/support\/knowledge-base\/how-to-find-large-files-and-directories-on-a-linux-server\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-31T19:19:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-692-1024x237.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-find-large-files-and-directories-on-a-linux-server\\\/\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-find-large-files-and-directories-on-a-linux-server\\\/\",\"name\":\"How to Find Large Files and Directories on a Linux Server -\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-find-large-files-and-directories-on-a-linux-server\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-find-large-files-and-directories-on-a-linux-server\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/image-692-1024x237.png\",\"datePublished\":\"2024-10-31T11:37:30+00:00\",\"dateModified\":\"2024-10-31T19:19:14+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-find-large-files-and-directories-on-a-linux-server\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-find-large-files-and-directories-on-a-linux-server\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-find-large-files-and-directories-on-a-linux-server\\\/#primaryimage\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/image-692.png\",\"contentUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/image-692.png\",\"width\":1596,\"height\":370},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/how-to-find-large-files-and-directories-on-a-linux-server\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Find Large Files and Directories on a Linux Server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#website\",\"url\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/\",\"name\":\"\",\"description\":\"Help In a Click\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#organization\",\"name\":\"Truehost Kenya\",\"url\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-image_2026-04-16_174808866.png\",\"contentUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-image_2026-04-16_174808866.png\",\"width\":240,\"height\":48,\"caption\":\"Truehost Kenya\"},\"image\":{\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Find Large Files and Directories on a Linux Server -","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:\/\/truehost.com\/support\/knowledge-base\/how-to-find-large-files-and-directories-on-a-linux-server\/","og_locale":"en_US","og_type":"article","og_title":"How to Find Large Files and Directories on a Linux Server -","og_description":"To manage disk space on a Linux server effectively, you often need to identify large files and directories. Here are several useful commands to find and analyze large files and directories. 1. Using the du Command The du (Disk Usage) command displays the disk space used by files and directories. Use it with various options [&hellip;]","og_url":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-find-large-files-and-directories-on-a-linux-server\/","article_modified_time":"2024-10-31T19:19:14+00:00","og_image":[{"url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-692-1024x237.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-find-large-files-and-directories-on-a-linux-server\/","url":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-find-large-files-and-directories-on-a-linux-server\/","name":"How to Find Large Files and Directories on a Linux Server -","isPartOf":{"@id":"https:\/\/www.truehost.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-find-large-files-and-directories-on-a-linux-server\/#primaryimage"},"image":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-find-large-files-and-directories-on-a-linux-server\/#primaryimage"},"thumbnailUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-692-1024x237.png","datePublished":"2024-10-31T11:37:30+00:00","dateModified":"2024-10-31T19:19:14+00:00","breadcrumb":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-find-large-files-and-directories-on-a-linux-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/truehost.com\/support\/knowledge-base\/how-to-find-large-files-and-directories-on-a-linux-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-find-large-files-and-directories-on-a-linux-server\/#primaryimage","url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-692.png","contentUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2024\/10\/image-692.png","width":1596,"height":370},{"@type":"BreadcrumbList","@id":"https:\/\/truehost.com\/support\/knowledge-base\/how-to-find-large-files-and-directories-on-a-linux-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.truehost.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to Find Large Files and Directories on a Linux Server"}]},{"@type":"WebSite","@id":"https:\/\/www.truehost.com\/support\/#website","url":"https:\/\/www.truehost.com\/support\/","name":"","description":"Help In a Click","publisher":{"@id":"https:\/\/www.truehost.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.truehost.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.truehost.com\/support\/#organization","name":"Truehost Kenya","url":"https:\/\/www.truehost.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.truehost.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2026\/04\/cropped-image_2026-04-16_174808866.png","contentUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2026\/04\/cropped-image_2026-04-16_174808866.png","width":240,"height":48,"caption":"Truehost Kenya"},"image":{"@id":"https:\/\/www.truehost.com\/support\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/16309","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/comments?post=16309"}],"version-history":[{"count":8,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/16309\/revisions"}],"predecessor-version":[{"id":16331,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/docs\/16309\/revisions\/16331"}],"wp:attachment":[{"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/media?parent=16309"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_category?post=16309"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/truehost.com\/support\/wp-json\/wp\/v2\/doc_tag?post=16309"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}