{"id":14648,"date":"2024-01-25T13:19:03","date_gmt":"2024-01-25T09:49:03","guid":{"rendered":"https:\/\/www.itpiran.net\/blog\/?p=14648"},"modified":"2024-01-25T13:19:03","modified_gmt":"2024-01-25T09:49:03","slug":"analyzing-disk-usage-with-ncdu-on-linux-systems","status":"publish","type":"post","link":"https:\/\/www.itpiran.net\/blog\/en\/tutorials\/analyzing-disk-usage-with-ncdu-on-linux-systems\/","title":{"rendered":"Analyzing disk usage with ncdu on Linux systems"},"content":{"rendered":"<h2 id=\"%d9%85%d9%82%d8%af%d9%85%d9%87\">Introduction<\/h2>\n<p>Disk space management is a critical task for Linux system administrators. As the number and size of files and directories increase, tracking disk usage is essential to maintain system performance and ensure that critical processes have enough space to work. One tool that can help with this is ncdu (NCurses Disk Usage). This tutorial provides an in-depth look at ncdu, including details on how to install it, how to use it, and an overview of its optional parameters.<\/p>\n<p>Ncdu, short for NCurses Disk Usage, is a command-line tool designed to help users and system administrators find and manage disk space usage on Linux systems. Unlike traditional disk usage tools like <code>Du<\/code>, <code>ncdu<\/code> It offers an interactive interface that makes it easier to navigate through lists and get a visual picture of space usage.<\/p>\n<p>This tool is on the library. <code>ncurses <\/code>It is built to provide a text-based graphical interface in the terminal. This is <code>ncdu <\/code>It allows for a user-friendly way to explore directories, sort files and directories by size, and delete unnecessary files directly from the interface.<\/p>\n<h2 id=\"%d9%85%d8%b1%d8%ad%d9%84%d9%87-1-%d9%86%d8%ad%d9%88%d9%87-%d9%86%d8%b5%d8%a8-ncdu\">Step 1 \u2013 How to install ncdu<\/h2>\n<p>Before you can <code>ncdu <\/code>To use it, you need to install it on your system. Most Linux distributions include <code>ncdu <\/code>They are included in their default repositories, making installation easy using the system&#039;s package manager.<\/p>\n<ul>\n<li>On Debian\/Ubuntu based systems<\/li>\n<\/ul>\n<div class=\"hcb_wrap\" data-no-translation=\"\" data-no-auto-translation=\"\">\n<pre class=\"prism line-numbers lang-bash\" data-lang=\"Bash\"><code>sudo apt update\r\nsudo apt install ncdu<\/code><\/pre>\n<\/div>\n<ul>\n<li>On Red Hat\/CentOS systems<\/li>\n<\/ul>\n<p>For Red Hat based systems, you may need to enable the EPEL repository to find the ncdu package.<\/p>\n<pre class=\"prism line-numbers lang-bash\" data-lang=\"Bash\"><code>sudo yum install epel-release sudo yum install ncdu<\/code><\/pre>\n<p>&nbsp;<\/p>\n<ul>\n<li>On Fedora systems<\/li>\n<\/ul>\n<div class=\"hcb_wrap\" data-no-translation=\"\" data-no-auto-translation=\"\">\n<pre class=\"prism line-numbers lang-bash\" data-lang=\"Bash\"><code>sudo dnf install ncdu<\/code><\/pre>\n<\/div>\n<ul>\n<li>In Arch Linux<\/li>\n<\/ul>\n<div class=\"hcb_wrap\" data-no-translation=\"\" data-no-auto-translation=\"\">\n<pre class=\"prism line-numbers lang-bash\" data-lang=\"Bash\"><code>sudo pacman -S ncdu<\/code><\/pre>\n<\/div>\n<p>Once the installation is complete, you can use ncdu to analyze disk usage.<\/p>\n<h2 id=\"%d9%85%d8%b1%d8%ad%d9%84%d9%87-2-%d9%86%d8%ad%d9%88%d9%87-%d8%a7%d8%b3%d8%aa%d9%81%d8%a7%d8%af%d9%87-%d8%a7%d8%b2-ncdu\">Step 2 \u2013 How to use Ncdu<\/h2>\n<p>To start analyzing disk usage with <code>ncdu<\/code>, just run the command followed by the path you want to check. If no path is provided, <code>ncdu <\/code>It will analyze the current working directory.<\/p>\n<div class=\"hcb_wrap\" data-no-translation=\"\" data-no-auto-translation=\"\">\n<pre class=\"prism line-numbers lang-bash\" data-lang=\"Bash\"><code>ncdu \/path\/to\/directory<\/code><\/pre>\n<\/div>\n<div>After executing the command, <code>ncdu<\/code> It scans the specified directory and presents an interactive interface. The interface shows a list of files and subdirectories along with their size and the percentage of disk space they occupy.<\/div>\n<div><\/div>\n<h2 id=\"%d9%85%d8%b1%d8%ad%d9%84%d9%87-3-%d9%be%d8%a7%d8%b1%d8%a7%d9%85%d8%aa%d8%b1%d9%87%d8%a7%db%8c-%d8%a7%d8%ae%d8%aa%db%8c%d8%a7%d8%b1%db%8c-ncdu\">Step 3 \u2013 Optional ncdu parameters<\/h2>\n<p>ncdu offers several command line options that can change its behavior or alter its output. Here are some optional parameters that can be particularly useful:<\/p>\n<ul>\n<li><span>-x<\/span>: Only count files and directories on the same file system as the specified directory. This is useful for excluding mounted drives or network file systems.<\/li>\n<li><span>-o<\/span>: <span>Export scanned data to a file that can be read later.<\/span><\/li>\n<li><span>-r<\/span>: Enable read-only mode, which disables the ability to delete files from within the interface.<\/li>\n<\/ul>\n<p>For a full list of options, you can type <code>man ncdu<\/code> In the terminal to the page <code>ncdu man<\/code> See.<\/p>\n<h2 id=\"%d9%85%d8%b1%d8%ad%d9%84%d9%87-4-%d8%a7%d8%b3%d8%aa%d9%81%d8%a7%d8%af%d9%87-%d9%be%db%8c%d8%b4%d8%b1%d9%81%d8%aa%d9%87-%d9%88-%d9%86%da%a9%d8%a7%d8%aa\">Step 4 \u2013 Advanced Usage and Tips<\/h2>\n<p>Beyond basic disk usage analysis, <code>ncdu<\/code> can be used in more advanced scenarios. For example, scan remote servers or check another user&#039;s disk usage.<\/p>\n<ul>\n<li>Scan remote directories: ncdu can also scan remote directories via SSH. Use the following syntax:<\/li>\n<\/ul>\n<div class=\"hcb_wrap\" data-no-translation=\"\" data-no-auto-translation=\"\">\n<pre class=\"prism line-numbers lang-bash\" data-lang=\"Bash\"><code>ssh -C user@system ncdu -o- \/ | .\/ncdu -f-<\/code><\/pre>\n<\/div>\n<p>Make sure you have SSH access to the remote host and ncdu installed on both the local and remote machines.<\/p>\n<ul>\n<li>Deleting files and directories: Be careful with this, but <code>ncdu<\/code> Allows you to delete files and directories from within your interface. Navigate to the file or directory and press d to delete it.<\/li>\n<\/ul>\n<h2 id=\"%d9%86%d8%aa%db%8c%d8%ac%d9%87\">Result<\/h2>\n<p><code>ncdu<\/code> is a powerful and user-friendly tool that can greatly simplify disk usage analysis on Linux systems. By providing an interactive interface and a variety of command line options, it allows both novice and experienced system administrators to manage disk space effectively. As with any system tool that can modify or delete files, it should be used with caution. Regular use of <code>ncdu<\/code>, combined with good disk management practices, can help ensure that your Linux systems run smoothly and are free of space issues.<\/p>","protected":false},"excerpt":{"rendered":"Introduction Managing disk space is a critical task for Linux system administrators. As the number and size of files increase\u2026","protected":false},"author":1,"featured_media":14649,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_yoast_wpseo_focuskw":"\u0622\u0646\u0627\u0644\u06cc\u0632 \u062f\u06cc\u0633\u06a9 \u0628\u0627 Ncdu","_yoast_wpseo_title":"","_yoast_wpseo_metadesc":"","_yoast_wpseo_canonical":"","_yoast_wpseo_opengraph-description":"","_yoast_wpseo_opengraph-image":"","_yoast_wpseo_twitter-description":"","_yoast_wpseo_twitter-image":"","_yoast_wpseo_focuskeywords":"","_yoast_wpseo_primary_category":"193","footnotes":""},"categories":[193,354],"tags":[358,389],"class_list":{"0":"post-14648","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-tutorials","8":"category-disk","9":"tag-linux","10":"tag-ncdu"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\u062a\u062c\u0632\u06cc\u0647 \u0648 \u062a\u062d\u0644\u06cc\u0644 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u062f\u06cc\u0633\u06a9 \u0628\u0627 ncdu \u062f\u0631 \u0633\u06cc\u0633\u062a\u0645 \u0647\u0627\u06cc \u0644\u06cc\u0646\u0648\u06a9\u0633 - \u0628\u0644\u0627\u06af ITPiran<\/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:\/\/www.itpiran.net\/blog\/en\/tutorials\/analyzing-disk-usage-with-ncdu-on-linux-systems\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u062a\u062c\u0632\u06cc\u0647 \u0648 \u062a\u062d\u0644\u06cc\u0644 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u062f\u06cc\u0633\u06a9 \u0628\u0627 ncdu \u062f\u0631 \u0633\u06cc\u0633\u062a\u0645 \u0647\u0627\u06cc \u0644\u06cc\u0646\u0648\u06a9\u0633 - \u0628\u0644\u0627\u06af ITPiran\" \/>\n<meta property=\"og:description\" content=\"\u0645\u0642\u062f\u0645\u0647 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0641\u0636\u0627\u06cc \u062f\u06cc\u0633\u06a9 \u06cc\u06a9 \u0648\u0638\u06cc\u0641\u0647 \u062d\u06cc\u0627\u062a\u06cc \u0628\u0631\u0627\u06cc \u0645\u062f\u06cc\u0631\u0627\u0646 \u0633\u06cc\u0633\u062a\u0645 \u0644\u06cc\u0646\u0648\u06a9\u0633 \u0627\u0633\u062a. \u0628\u0627 \u0627\u0641\u0632\u0627\u06cc\u0634 \u062a\u0639\u062f\u0627\u062f \u0648 \u0627\u0646\u062f\u0627\u0632\u0647 \u0641\u0627\u06cc\u0644\u200c\u0647\u0627&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.itpiran.net\/blog\/en\/tutorials\/analyzing-disk-usage-with-ncdu-on-linux-systems\/\" \/>\n<meta property=\"og:site_name\" content=\"\u0628\u0644\u0627\u06af ITPiran\" \/>\n<meta property=\"article:published_time\" content=\"2024-01-25T09:49:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdn.itpiran.net\/2024\/01\/25131726\/Ncdu-BackG.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1793\" \/>\n\t<meta property=\"og:image:height\" content=\"1110\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.itpiran.net\\\/blog\\\/tutorials\\\/analyzing-disk-usage-with-ncdu-on-linux-systems\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.itpiran.net\\\/blog\\\/tutorials\\\/analyzing-disk-usage-with-ncdu-on-linux-systems\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.itpiran.net\\\/blog\\\/#\\\/schema\\\/person\\\/04ed27b919baca468a2273f8e4318f81\"},\"headline\":\"\u062a\u062c\u0632\u06cc\u0647 \u0648 \u062a\u062d\u0644\u06cc\u0644 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u062f\u06cc\u0633\u06a9 \u0628\u0627 ncdu \u062f\u0631 \u0633\u06cc\u0633\u062a\u0645 \u0647\u0627\u06cc \u0644\u06cc\u0646\u0648\u06a9\u0633\",\"datePublished\":\"2024-01-25T09:49:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.itpiran.net\\\/blog\\\/tutorials\\\/analyzing-disk-usage-with-ncdu-on-linux-systems\\\/\"},\"wordCount\":36,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.itpiran.net\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.itpiran.net\\\/blog\\\/tutorials\\\/analyzing-disk-usage-with-ncdu-on-linux-systems\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/cdn.itpiran.net\\\/2024\\\/01\\\/25131726\\\/Ncdu-BackG.jpg\",\"keywords\":[\"linux\",\"ncdu\"],\"articleSection\":[\"\u0622\u0645\u0648\u0632\u0634\u06cc\",\"\u062f\u06cc\u0633\u06a9\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.itpiran.net\\\/blog\\\/tutorials\\\/analyzing-disk-usage-with-ncdu-on-linux-systems\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.itpiran.net\\\/blog\\\/tutorials\\\/analyzing-disk-usage-with-ncdu-on-linux-systems\\\/\",\"url\":\"https:\\\/\\\/www.itpiran.net\\\/blog\\\/tutorials\\\/analyzing-disk-usage-with-ncdu-on-linux-systems\\\/\",\"name\":\"\u062a\u062c\u0632\u06cc\u0647 \u0648 \u062a\u062d\u0644\u06cc\u0644 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u062f\u06cc\u0633\u06a9 \u0628\u0627 ncdu \u062f\u0631 \u0633\u06cc\u0633\u062a\u0645 \u0647\u0627\u06cc \u0644\u06cc\u0646\u0648\u06a9\u0633 - \u0628\u0644\u0627\u06af ITPiran\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.itpiran.net\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.itpiran.net\\\/blog\\\/tutorials\\\/analyzing-disk-usage-with-ncdu-on-linux-systems\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.itpiran.net\\\/blog\\\/tutorials\\\/analyzing-disk-usage-with-ncdu-on-linux-systems\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/cdn.itpiran.net\\\/2024\\\/01\\\/25131726\\\/Ncdu-BackG.jpg\",\"datePublished\":\"2024-01-25T09:49:03+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.itpiran.net\\\/blog\\\/tutorials\\\/analyzing-disk-usage-with-ncdu-on-linux-systems\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.itpiran.net\\\/blog\\\/tutorials\\\/analyzing-disk-usage-with-ncdu-on-linux-systems\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.itpiran.net\\\/blog\\\/tutorials\\\/analyzing-disk-usage-with-ncdu-on-linux-systems\\\/#primaryimage\",\"url\":\"https:\\\/\\\/cdn.itpiran.net\\\/2024\\\/01\\\/25131726\\\/Ncdu-BackG.jpg\",\"contentUrl\":\"https:\\\/\\\/cdn.itpiran.net\\\/2024\\\/01\\\/25131726\\\/Ncdu-BackG.jpg\",\"width\":1793,\"height\":1110},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.itpiran.net\\\/blog\\\/tutorials\\\/analyzing-disk-usage-with-ncdu-on-linux-systems\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.itpiran.net\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u0622\u0645\u0648\u0632\u0634\u06cc\",\"item\":\"https:\\\/\\\/www.itpiran.net\\\/blog\\\/category\\\/tutorials\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"\u062a\u062c\u0632\u06cc\u0647 \u0648 \u062a\u062d\u0644\u06cc\u0644 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u062f\u06cc\u0633\u06a9 \u0628\u0627 ncdu \u062f\u0631 \u0633\u06cc\u0633\u062a\u0645 \u0647\u0627\u06cc \u0644\u06cc\u0646\u0648\u06a9\u0633\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.itpiran.net\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.itpiran.net\\\/blog\\\/\",\"name\":\"\u0628\u0644\u0627\u06af ITPiran\",\"description\":\"\u0627\u062e\u0628\u0627\u0631 \u0648 \u0645\u0642\u0627\u0644\u0627\u062a \u062a\u062c\u0627\u0631\u062a \u067e\u0627\u06cc\u062f\u0627\u0631 \u0627\u06cc\u0631\u0627\u0646\u06cc\u0627\u0646\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.itpiran.net\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.itpiran.net\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.itpiran.net\\\/blog\\\/#organization\",\"name\":\"\u0628\u0644\u0627\u06af \u062a\u062c\u0627\u0631\u062a \u067e\u0627\u06cc\u062f\u0627\u0631 \u0627\u06cc\u0631\u0627\u0646\u06cc\u0627\u0646\",\"alternateName\":\"ITPIran Blog\",\"url\":\"https:\\\/\\\/www.itpiran.net\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.itpiran.net\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/cdn.itpiran.net\\\/2023\\\/12\\\/27150508\\\/cropped-ITPIRAN-BLOG-LOGO-2.png\",\"contentUrl\":\"https:\\\/\\\/cdn.itpiran.net\\\/2023\\\/12\\\/27150508\\\/cropped-ITPIRAN-BLOG-LOGO-2.png\",\"width\":512,\"height\":512,\"caption\":\"\u0628\u0644\u0627\u06af \u062a\u062c\u0627\u0631\u062a \u067e\u0627\u06cc\u062f\u0627\u0631 \u0627\u06cc\u0631\u0627\u0646\u06cc\u0627\u0646\"},\"image\":{\"@id\":\"https:\\\/\\\/www.itpiran.net\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.itpiran.net\\\/blog\\\/#\\\/schema\\\/person\\\/04ed27b919baca468a2273f8e4318f81\",\"name\":\"admin\",\"url\":\"https:\\\/\\\/www.itpiran.net\\\/blog\\\/en\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Analyzing Disk Usage with ncdu on Linux Systems - ITPiran Blog","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.itpiran.net\/blog\/en\/tutorials\/analyzing-disk-usage-with-ncdu-on-linux-systems\/","og_locale":"en_US","og_type":"article","og_title":"\u062a\u062c\u0632\u06cc\u0647 \u0648 \u062a\u062d\u0644\u06cc\u0644 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u062f\u06cc\u0633\u06a9 \u0628\u0627 ncdu \u062f\u0631 \u0633\u06cc\u0633\u062a\u0645 \u0647\u0627\u06cc \u0644\u06cc\u0646\u0648\u06a9\u0633 - \u0628\u0644\u0627\u06af ITPiran","og_description":"\u0645\u0642\u062f\u0645\u0647 \u0645\u062f\u06cc\u0631\u06cc\u062a \u0641\u0636\u0627\u06cc \u062f\u06cc\u0633\u06a9 \u06cc\u06a9 \u0648\u0638\u06cc\u0641\u0647 \u062d\u06cc\u0627\u062a\u06cc \u0628\u0631\u0627\u06cc \u0645\u062f\u06cc\u0631\u0627\u0646 \u0633\u06cc\u0633\u062a\u0645 \u0644\u06cc\u0646\u0648\u06a9\u0633 \u0627\u0633\u062a. \u0628\u0627 \u0627\u0641\u0632\u0627\u06cc\u0634 \u062a\u0639\u062f\u0627\u062f \u0648 \u0627\u0646\u062f\u0627\u0632\u0647 \u0641\u0627\u06cc\u0644\u200c\u0647\u0627&hellip;","og_url":"https:\/\/www.itpiran.net\/blog\/en\/tutorials\/analyzing-disk-usage-with-ncdu-on-linux-systems\/","og_site_name":"\u0628\u0644\u0627\u06af ITPiran","article_published_time":"2024-01-25T09:49:03+00:00","og_image":[{"width":1793,"height":1110,"url":"https:\/\/cdn.itpiran.net\/2024\/01\/25131726\/Ncdu-BackG.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.itpiran.net\/blog\/tutorials\/analyzing-disk-usage-with-ncdu-on-linux-systems\/#article","isPartOf":{"@id":"https:\/\/www.itpiran.net\/blog\/tutorials\/analyzing-disk-usage-with-ncdu-on-linux-systems\/"},"author":{"name":"admin","@id":"https:\/\/www.itpiran.net\/blog\/#\/schema\/person\/04ed27b919baca468a2273f8e4318f81"},"headline":"\u062a\u062c\u0632\u06cc\u0647 \u0648 \u062a\u062d\u0644\u06cc\u0644 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u062f\u06cc\u0633\u06a9 \u0628\u0627 ncdu \u062f\u0631 \u0633\u06cc\u0633\u062a\u0645 \u0647\u0627\u06cc \u0644\u06cc\u0646\u0648\u06a9\u0633","datePublished":"2024-01-25T09:49:03+00:00","mainEntityOfPage":{"@id":"https:\/\/www.itpiran.net\/blog\/tutorials\/analyzing-disk-usage-with-ncdu-on-linux-systems\/"},"wordCount":36,"commentCount":0,"publisher":{"@id":"https:\/\/www.itpiran.net\/blog\/#organization"},"image":{"@id":"https:\/\/www.itpiran.net\/blog\/tutorials\/analyzing-disk-usage-with-ncdu-on-linux-systems\/#primaryimage"},"thumbnailUrl":"https:\/\/cdn.itpiran.net\/2024\/01\/25131726\/Ncdu-BackG.jpg","keywords":["linux","ncdu"],"articleSection":["\u0622\u0645\u0648\u0632\u0634\u06cc","\u062f\u06cc\u0633\u06a9"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.itpiran.net\/blog\/tutorials\/analyzing-disk-usage-with-ncdu-on-linux-systems\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.itpiran.net\/blog\/tutorials\/analyzing-disk-usage-with-ncdu-on-linux-systems\/","url":"https:\/\/www.itpiran.net\/blog\/tutorials\/analyzing-disk-usage-with-ncdu-on-linux-systems\/","name":"Analyzing Disk Usage with ncdu on Linux Systems - ITPiran Blog","isPartOf":{"@id":"https:\/\/www.itpiran.net\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.itpiran.net\/blog\/tutorials\/analyzing-disk-usage-with-ncdu-on-linux-systems\/#primaryimage"},"image":{"@id":"https:\/\/www.itpiran.net\/blog\/tutorials\/analyzing-disk-usage-with-ncdu-on-linux-systems\/#primaryimage"},"thumbnailUrl":"https:\/\/cdn.itpiran.net\/2024\/01\/25131726\/Ncdu-BackG.jpg","datePublished":"2024-01-25T09:49:03+00:00","breadcrumb":{"@id":"https:\/\/www.itpiran.net\/blog\/tutorials\/analyzing-disk-usage-with-ncdu-on-linux-systems\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.itpiran.net\/blog\/tutorials\/analyzing-disk-usage-with-ncdu-on-linux-systems\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.itpiran.net\/blog\/tutorials\/analyzing-disk-usage-with-ncdu-on-linux-systems\/#primaryimage","url":"https:\/\/cdn.itpiran.net\/2024\/01\/25131726\/Ncdu-BackG.jpg","contentUrl":"https:\/\/cdn.itpiran.net\/2024\/01\/25131726\/Ncdu-BackG.jpg","width":1793,"height":1110},{"@type":"BreadcrumbList","@id":"https:\/\/www.itpiran.net\/blog\/tutorials\/analyzing-disk-usage-with-ncdu-on-linux-systems\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.itpiran.net\/blog\/"},{"@type":"ListItem","position":2,"name":"\u0622\u0645\u0648\u0632\u0634\u06cc","item":"https:\/\/www.itpiran.net\/blog\/category\/tutorials\/"},{"@type":"ListItem","position":3,"name":"\u062a\u062c\u0632\u06cc\u0647 \u0648 \u062a\u062d\u0644\u06cc\u0644 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u062f\u06cc\u0633\u06a9 \u0628\u0627 ncdu \u062f\u0631 \u0633\u06cc\u0633\u062a\u0645 \u0647\u0627\u06cc \u0644\u06cc\u0646\u0648\u06a9\u0633"}]},{"@type":"WebSite","@id":"https:\/\/www.itpiran.net\/blog\/#website","url":"https:\/\/www.itpiran.net\/blog\/","name":"ITPiran Blog","description":"Iranian Sustainable Trade News and Articles","publisher":{"@id":"https:\/\/www.itpiran.net\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.itpiran.net\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.itpiran.net\/blog\/#organization","name":"Sustainable Iranian Business Blog","alternateName":"ITPIran Blog","url":"https:\/\/www.itpiran.net\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.itpiran.net\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdn.itpiran.net\/2023\/12\/27150508\/cropped-ITPIRAN-BLOG-LOGO-2.png","contentUrl":"https:\/\/cdn.itpiran.net\/2023\/12\/27150508\/cropped-ITPIRAN-BLOG-LOGO-2.png","width":512,"height":512,"caption":"\u0628\u0644\u0627\u06af \u062a\u062c\u0627\u0631\u062a \u067e\u0627\u06cc\u062f\u0627\u0631 \u0627\u06cc\u0631\u0627\u0646\u06cc\u0627\u0646"},"image":{"@id":"https:\/\/www.itpiran.net\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.itpiran.net\/blog\/#\/schema\/person\/04ed27b919baca468a2273f8e4318f81","name":"admin","url":"https:\/\/www.itpiran.net\/blog\/en\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.itpiran.net\/blog\/en\/wp-json\/wp\/v2\/posts\/14648","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.itpiran.net\/blog\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.itpiran.net\/blog\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.itpiran.net\/blog\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.itpiran.net\/blog\/en\/wp-json\/wp\/v2\/comments?post=14648"}],"version-history":[{"count":1,"href":"https:\/\/www.itpiran.net\/blog\/en\/wp-json\/wp\/v2\/posts\/14648\/revisions"}],"predecessor-version":[{"id":14650,"href":"https:\/\/www.itpiran.net\/blog\/en\/wp-json\/wp\/v2\/posts\/14648\/revisions\/14650"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.itpiran.net\/blog\/en\/wp-json\/wp\/v2\/media\/14649"}],"wp:attachment":[{"href":"https:\/\/www.itpiran.net\/blog\/en\/wp-json\/wp\/v2\/media?parent=14648"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.itpiran.net\/blog\/en\/wp-json\/wp\/v2\/categories?post=14648"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.itpiran.net\/blog\/en\/wp-json\/wp\/v2\/tags?post=14648"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}