{"id":25620,"date":"2018-02-20T02:42:25","date_gmt":"2018-02-20T08:42:25","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=25620"},"modified":"2023-04-05T04:35:18","modified_gmt":"2023-04-05T09:35:18","slug":"find-large-files-linux","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/find-large-files-linux\/","title":{"rendered":"Find Large Files in Linux"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><img decoding=\"async\" class=\"alignnone size-full wp-image-28205\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/02\/find-large-files-in-linux.jpg\" alt=\"find large files in linux\" width=\"742\" height=\"371\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/02\/find-large-files-in-linux.jpg 742w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/02\/find-large-files-in-linux-150x75.jpg 150w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/02\/find-large-files-in-linux-300x150.jpg 300w\" sizes=\"(max-width: 742px) 100vw, 742px\" \/><\/p>\n<p><img decoding=\"async\" class=\"alignright size-full wp-image-28580\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/02\/Find-Large-files-Linux.jpg\" alt=\"Find Large files Linux\" width=\"150\" height=\"134\" \/>Today we will show you how you can <strong>find large files in Linux<\/strong>. One of the most common things you will do as a Linux system administrator is finding useless large files that consume disk space and removing them to free up space for applications that actually need it. Let&#8217;s dive in and find out how we can find large files in Linux.<!--more--><\/p>\n<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_82_2 counter-hierarchy ez-toc-counter ez-toc-transparent ez-toc-container-direction\">\n<p class=\"ez-toc-title\" style=\"cursor:inherit\">Table of Contents<\/p>\n<label for=\"ez-toc-cssicon-toggle-item-69eec435e2ef6\" class=\"ez-toc-cssicon-toggle-label\"><span class=\"ez-toc-cssicon\"><span class=\"eztoc-hide\" style=\"display:none;\">Toggle<\/span><span class=\"ez-toc-icon-toggle-span\"><svg style=\"fill: #999;color:#999\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"list-377408\" width=\"20px\" height=\"20px\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M6 6H4v2h2V6zm14 0H8v2h12V6zM4 11h2v2H4v-2zm16 0H8v2h12v-2zM4 16h2v2H4v-2zm16 0H8v2h12v-2z\" fill=\"currentColor\"><\/path><\/svg><svg style=\"fill: #999;color:#999\" class=\"arrow-unsorted-368013\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"10px\" height=\"10px\" viewBox=\"0 0 24 24\" version=\"1.2\" baseProfile=\"tiny\"><path d=\"M18.2 9.3l-6.2-6.3-6.2 6.3c-.2.2-.3.4-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7zM5.8 14.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.5-.3.7s.1.5.3.7z\"\/><\/svg><\/span><\/span><\/label><input type=\"checkbox\"  id=\"ez-toc-cssicon-toggle-item-69eec435e2ef6\"  aria-label=\"Toggle\" \/><nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/www.rosehosting.com\/blog\/find-large-files-linux\/#Find-the-largest-directories-and-files-in-Linux\" >Find the largest directories and files in\u00a0Linux<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/www.rosehosting.com\/blog\/find-large-files-linux\/#Find-the-top-largest-directories-in-Linux\" >Find\u00a0the top largest directories in Linux<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-3\" href=\"https:\/\/www.rosehosting.com\/blog\/find-large-files-linux\/#Find-the-top-largest-files-in-Linux\" >Find the top largest files in Linux<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-4\" href=\"https:\/\/www.rosehosting.com\/blog\/find-large-files-linux\/#Find-the-largest-files-with-a-specific-extension-in-Linux\" >Find the largest files with a specific extension in Linux<\/a><\/li><\/ul><\/nav><\/div>\n<h2><span class=\"ez-toc-section\" id=\"Find-the-largest-directories-and-files-in-Linux\"><\/span>Find the largest directories and files in\u00a0Linux<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>First, we are going to look at how we can find the largest directories and files in Linux combined, execute the following command to find the top 10 largest directories and files on your Linux server:<\/p>\n<pre># du -ah \/* 2&gt;\/dev\/null | sort -rh | head -n 10<\/pre>\n<p>The output should show you the largest directories and files:<\/p>\n<pre>3.2G    \/backup\r\n1.3G    \/usr\r\n1.1G    \/var\r\n922M    \/home\r\n713M    \/var\/lib\r\n584M    \/odoo\r\n580M    \/usr\/lib\r\n579M    \/odoo\/odoo-server\r\n501M    \/home\/largefile3\r\n404M    \/odoo\/odoo-server\/addons\r\n<\/pre>\n<h2><span class=\"ez-toc-section\" id=\"Find-the-top-largest-directories-in-Linux\"><\/span>Find\u00a0the top largest directories in Linux<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>This command can be pretty useful when you need to check the size of the directories in the root partition to get an idea of how the used space on your server is distributed. Using the following command you can find the top 10 largest directories in the root partition:<\/p>\n<pre># du -sh \/*\/ 2&gt;\/dev\/null | sort -rh | head -n 10<\/pre>\n<p>The output should show you the largest directories:<\/p>\n<pre>3.2G    \/backup\r\n1.3G    \/usr\/\r\n1.1G    \/var\/\r\n922M    \/home\/\r\n584M    \/odoo\/\r\n135M    \/opt\/\r\n43M     \/lib\/\r\n40M     \/run\/\r\n30M     \/root\/\r\n10M     \/bin\/\r\n<\/pre>\n<p>You can also use the following command to check the size of the sub-directories of a given directory, in this case, we&#8217;ll use the directory &#8216;var&#8217;:<\/p>\n<pre># find \/var\/* -type d -exec du -sh {} 2&gt;\/dev\/null + | sort -rh | head -n 10<\/pre>\n<p>The output should list the sub-directories of the &#8216;var&#8217; directory:<\/p>\n<pre>713M    \/var\/lib\r\n357M    \/var\/cache\r\n40M     \/var\/www\r\n3.1M    \/var\/log\r\n124K    \/var\/spool\r\n52K     \/var\/backups\r\n20K     \/var\/mail\r\n12K     \/var\/tmp\r\n4.0K    \/var\/opt\r\n4.0K    \/var\/local\r\n<\/pre>\n<h2><span class=\"ez-toc-section\" id=\"Find-the-top-largest-files-in-Linux\"><\/span><img decoding=\"async\" class=\"alignleft size-full wp-image-28207\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/02\/how-to-find-large-files-in-linux.jpg\" alt=\"how to find large files in linux\" width=\"91\" height=\"150\" \/>Find the top largest files in Linux<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>Sometimes you may want to look for large files, especially large log files that can fill up your server pretty quickly, using the following command you can find the top 10 largest files on your server:<\/p>\n<pre># find \/ -type f -exec du -sh {} 2&gt;\/dev\/null + | sort -rh | head -n 10<\/pre>\n<p>The output should show you the largest files:<\/p>\n<pre>501M    \/home\/largefile3\r\n257M    \/home\/largefile2\r\n121M    \/home\/largefile1\r\n111M    \/odoo\/odoo-server\/.git\/objects\/pack\/pack-dcf71f4c259beb18e9784d3b4a00a45e1f2a8382.pack\r\n111M    \/backup\/odoo\/odoo-server\/.git\/objects\/pack\/pack-dcf71f4c259beb18e9784d3b4a00a45e1f2a8382.pack\r\n101M    \/var\/lib\/mongodb\/journal\/WiredTigerPreplog.0000000002\r\n101M    \/var\/lib\/mongodb\/journal\/WiredTigerPreplog.0000000001\r\n100M    \/backup\/var\/lib\/mongodb\/journal\/WiredTigerPreplog.0000000002\r\n100M    \/backup\/var\/lib\/mongodb\/journal\/WiredTigerPreplog.0000000001\r\n77M     \/var\/lib\/mysql\/ibdata1\r\n<\/pre>\n<h2><span class=\"ez-toc-section\" id=\"Find-the-largest-files-with-a-specific-extension-in-Linux\"><\/span>Find the largest files with a specific extension in Linux<img decoding=\"async\" class=\"alignright size-full wp-image-28208\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/02\/finding-large-files-in-linux.jpg\" alt=\"finding large files in linux\" width=\"150\" height=\"150\" \/><span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>If you are looking for large files of a particular extension you can find the top 10 largest files by their extension with the following command, we are going to use the &#8216;deb&#8217; extension in this case:<\/p>\n<pre># find \/ -type f -iname \"*.deb\" -exec du -sh {} + | sort -rh | head -10<\/pre>\n<p>The output should show you the largest files containing the extension we provided:<\/p>\n<pre>31M     \/var\/cache\/apt\/archives\/mongodb-org-tools_3.2.14_amd64.deb\r\n31M     \/backup\/var\/cache\/apt\/archives\/mongodb-org-tools_3.2.14_amd64.deb\r\n27M     \/var\/cache\/apt\/archives\/libpython2.7-dev_2.7.12-1ubuntu0~16.04.1_amd64.deb\r\n27M     \/backup\/var\/cache\/apt\/archives\/libpython2.7-dev_2.7.12-1ubuntu0~16.04.1_amd64.deb\r\n14M     \/opt\/wkhtmltox-0.12.1_linux-trusty-amd64.deb\r\n14M     \/backup\/opt\/wkhtmltox-0.12.1_linux-trusty-amd64.deb\r\n9.6M    \/var\/cache\/apt\/archives\/mongodb-org-server_3.2.14_amd64.deb\r\n9.6M    \/backup\/var\/cache\/apt\/archives\/mongodb-org-server_3.2.14_amd64.deb\r\n8.0M    \/var\/cache\/apt\/archives\/g++-5_5.4.0-6ubuntu1~16.04.4_amd64.deb\r\n8.0M    \/backup\/var\/cache\/apt\/archives\/g++-5_5.4.0-6ubuntu1~16.04.4_amd64.deb<\/pre>\n<hr \/>\n<pre><img decoding=\"async\" class=\"alignleft size-full wp-image-25696\" style=\"font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/02\/linux-find-large-files.png\" alt=\"linux find large files\" width=\"128\" height=\"128\" srcset=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/02\/linux-find-large-files.png 128w, https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/02\/linux-find-large-files-50x50.png 50w\" sizes=\"(max-width: 128px) 100vw, 128px\" \/><\/pre>\n<p>If you use one of our <a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" rel=\"noopener\">VPS Hosting<\/a> plans, you don\u2019t have search for the largest directories and files yourself, you can simply ask our expert Linux admins to find the largest directories and files on your Linux based VPS for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p><span style=\"color: #ff0000;\"><strong>PS.<\/strong><\/span> If you liked this post on how to <strong>find large files in Linux<\/strong>, please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Today we will show you how you can find large files in Linux. One of the most common things you &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"Find Large Files in Linux\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/find-large-files-linux\/#more-25620\" aria-label=\"Read more about Find Large Files in Linux\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":28205,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1236,2071,13],"tags":[1657,27],"class_list":["post-25620","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-guides","category-linux","category-tutorials","tag-large-files","tag-linux","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Find Large Files in Linux | RoseHosting<\/title>\n<meta name=\"description\" content=\"Find Large Files in Linux | RoseHosting\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.rosehosting.com\/blog\/find-large-files-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Find Large Files in Linux\" \/>\n<meta property=\"og:description\" content=\"Find Large Files in Linux | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/find-large-files-linux\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2018-02-20T08:42:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-04-05T09:35:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/02\/find-large-files-in-linux.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"371\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/find-large-files-linux\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/find-large-files-linux\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"Find Large Files in Linux\",\"datePublished\":\"2018-02-20T08:42:25+00:00\",\"dateModified\":\"2023-04-05T09:35:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/find-large-files-linux\\\/\"},\"wordCount\":423,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/find-large-files-linux\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/02\\\/find-large-files-in-linux.jpg\",\"keywords\":[\"large files\",\"Linux\"],\"articleSection\":[\"Guides\",\"Linux\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/find-large-files-linux\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/find-large-files-linux\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/find-large-files-linux\\\/\",\"name\":\"Find Large Files in Linux | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/find-large-files-linux\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/find-large-files-linux\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/02\\\/find-large-files-in-linux.jpg\",\"datePublished\":\"2018-02-20T08:42:25+00:00\",\"dateModified\":\"2023-04-05T09:35:18+00:00\",\"description\":\"Find Large Files in Linux | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/find-large-files-linux\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/find-large-files-linux\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/find-large-files-linux\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/02\\\/find-large-files-in-linux.jpg\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/02\\\/find-large-files-in-linux.jpg\",\"width\":742,\"height\":371,\"caption\":\"find large files in linux\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/find-large-files-linux\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Find Large Files in Linux\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"name\":\"RoseHosting.com\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/RoseHosting\",\"https:\\\/\\\/x.com\\\/rosehosting\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/rosehosting\\\/\"],\"description\":\"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.\",\"email\":\"info@rosehosting.com\",\"telephone\":\"(314) 275-0414\",\"legalName\":\"Rose Web Services LLC\",\"foundingDate\":\"2001-04-02\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\\\/\\\/www.rosehosting.com\",\"https:\\\/\\\/www.facebook.com\\\/rosehosting.helpdesk\"],\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/author\\\/jwilson\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Find Large Files in Linux | RoseHosting","description":"Find Large Files in Linux | RoseHosting","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:\/\/www.rosehosting.com\/blog\/find-large-files-linux\/","og_locale":"en_US","og_type":"article","og_title":"Find Large Files in Linux","og_description":"Find Large Files in Linux | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/find-large-files-linux\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2018-02-20T08:42:25+00:00","article_modified_time":"2023-04-05T09:35:18+00:00","og_image":[{"width":742,"height":371,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/02\/find-large-files-in-linux.jpg","type":"image\/jpeg"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/find-large-files-linux\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/find-large-files-linux\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"Find Large Files in Linux","datePublished":"2018-02-20T08:42:25+00:00","dateModified":"2023-04-05T09:35:18+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/find-large-files-linux\/"},"wordCount":423,"commentCount":1,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/find-large-files-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/02\/find-large-files-in-linux.jpg","keywords":["large files","Linux"],"articleSection":["Guides","Linux","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/find-large-files-linux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/find-large-files-linux\/","url":"https:\/\/www.rosehosting.com\/blog\/find-large-files-linux\/","name":"Find Large Files in Linux | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/find-large-files-linux\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/find-large-files-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/02\/find-large-files-in-linux.jpg","datePublished":"2018-02-20T08:42:25+00:00","dateModified":"2023-04-05T09:35:18+00:00","description":"Find Large Files in Linux | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/find-large-files-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/find-large-files-linux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/find-large-files-linux\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/02\/find-large-files-in-linux.jpg","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/02\/find-large-files-in-linux.jpg","width":742,"height":371,"caption":"find large files in linux"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/find-large-files-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Find Large Files in Linux"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting.com","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"],"description":"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.","email":"info@rosehosting.com","telephone":"(314) 275-0414","legalName":"Rose Web Services LLC","foundingDate":"2001-04-02","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/25620","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=25620"}],"version-history":[{"count":3,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/25620\/revisions"}],"predecessor-version":[{"id":43790,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/25620\/revisions\/43790"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/28205"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=25620"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=25620"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=25620"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}