Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

261,671

Downloads of v 5.31.0:

1,984

Last Update:

12 Jul 2025

Package Maintainer(s):

Software Author(s):

  • Daniel Milde

Tags:

Go Disk Usage

  • 1
  • 2
  • 3

5.31.0 | Updated: 12 Jul 2025

Downloads:

261,671

Downloads of v 5.31.0:

1,984

Maintainer(s):

Software Author(s):

  • Daniel Milde

Go Disk Usage 5.31.0

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Daniel Milde. The inclusion of Daniel Milde trademark(s), if any, upon this webpage is solely to identify Daniel Milde goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Go Disk Usage, run the following command from the command line or from PowerShell:

>

To upgrade Go Disk Usage, run the following command from the command line or from PowerShell:

>

To uninstall Go Disk Usage, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade gdu -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade gdu -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install gdu
  win_chocolatey:
    name: gdu
    version: '5.31.0'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'gdu' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '5.31.0'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller gdu
{
    Name     = "gdu"
    Version  = "5.31.0"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'gdu':
  ensure   => '5.31.0',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 12 Jul 2025.

Description

Build Status
Coverage Status
Go Report Card
Maintainability
CodeScene Code Health

Pretty fast disk usage analyzer written in Go.

Gdu is intended primarily for SSD disks where it can fully utilize parallel processing.
However HDDs work as well, but the performance gain is not so huge.

asciicast


legal\LICENSE.txt
From: https://github.com/dundee/gdu/blob/v5.31.0/LICENSE.md

LICENSE

Copyright 2020-2021 Daniel Milde <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
legal\VERIFICATION.txt
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
 
Package can be verified like this:

1. Go to https://github.com/dundee/gdu/releases/v5.31.0, and download from there.

   x86_64: https://github.com/dundee/gdu/releases/download/v5.31.0/gdu_windows_amd64.exe.zip

   to download the archive. You may want to unpack and rename the file.

2. You can use one of the following methods to obtain the SHA512 checksum:
   - Use powershell function 'Get-FileHash'
   - Use Chocolatey utility 'checksum.exe'

   checksum:   b4b84578cc305baea258098455c335d448af9b35c1c45cccac3d0fc26757007603ffa712688a53fdb3a1651a42e7b9f708b6443c6b8b8c6b561f00c7e98b57ef

File 'LICENSE.txt' obtained from:
   https://github.com/dundee/gdu/blob/v5.31.0/LICENSE.md
tools\x64\gdu.exe
md5: 720F56E9566769B549B224043B948423 | sha1: 5E91C827A7B66711857CDE872DA09041E9C57A53 | sha256: 124F93AEEA04CD8ADF37FFABDBE668A000631573410317440BB212F2FE2296D3 | sha512: B4B84578CC305BAEA258098455C335D448AF9B35C1C45CCCAC3D0FC26757007603FFA712688A53FDB3A1651A42E7B9F708B6443C6B8B8C6B561F00C7E98B57EF

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Go Disk Usage 5.30.1 13464 Saturday, January 11, 2025 Approved
Go Disk Usage 5.30.0 271 Wednesday, January 8, 2025 Approved
Go Disk Usage 5.29.0 3064 Tuesday, December 10, 2024 Approved
Go Disk Usage 5.28.0 51700 Wednesday, April 24, 2024 Approved
Go Disk Usage 5.27.0 10333 Saturday, March 16, 2024 Approved
Go Disk Usage 5.26.0 3538 Friday, March 1, 2024 Approved
Go Disk Usage 5.25.0 43949 Monday, October 23, 2023 Approved
Go Disk Usage 5.24.0 36866 Wednesday, August 2, 2023 Approved
Go Disk Usage 5.23.0 33389 Sunday, June 25, 2023 Approved
Go Disk Usage 5.22.0 42229 Tuesday, March 7, 2023 Approved
Go Disk Usage 5.21.1 879 Tuesday, February 14, 2023 Approved
Go Disk Usage 5.21.0 1328 Saturday, January 7, 2023 Approved
Go Disk Usage 5.20.0 1112 Monday, October 24, 2022 Approved
Go Disk Usage 5.19.0 690 Monday, October 17, 2022 Approved
Go Disk Usage 5.18.1 517 Friday, October 14, 2022 Approved
Go Disk Usage 5.18.0 357 Thursday, October 13, 2022 Approved
Go Disk Usage 5.17.1 416 Wednesday, October 12, 2022 Approved
Go Disk Usage 5.17.0 681 Saturday, October 8, 2022 Approved
Go Disk Usage 5.16.0 934 Sunday, September 11, 2022 Approved
Go Disk Usage 5.15.0 835 Thursday, August 4, 2022 Approved
Go Disk Usage 5.14.0 930 Saturday, May 28, 2022 Approved
Go Disk Usage 5.13.2 1154 Tuesday, March 1, 2022 Approved
Go Disk Usage 5.13.1 719 Sunday, February 13, 2022 Approved
Go Disk Usage 5.13.0 610 Wednesday, February 2, 2022 Approved
Go Disk Usage 5.12.0 807 Thursday, December 16, 2021 Approved
Go Disk Usage 5.11.0 130 Saturday, November 27, 2021 Approved
Go Disk Usage 5.10.1 131 Thursday, November 25, 2021 Approved
Go Disk Usage 5.10.0 130 Tuesday, November 16, 2021 Approved
Go Disk Usage 5.9.0 144 Wednesday, October 27, 2021 Approved
Go Disk Usage 5.8.1 160 Wednesday, September 29, 2021 Approved
Go Disk Usage 5.8.0 155 Tuesday, September 28, 2021 Approved
Go Disk Usage 5.7.0 123 Tuesday, September 28, 2021 Approved
Go Disk Usage 5.6.2 123 Monday, September 27, 2021 Approved
Go Disk Usage 5.6.1 158 Monday, September 27, 2021 Approved
Go Disk Usage 5.6.0 108 Tuesday, September 28, 2021 Approved
Go Disk Usage 5.4.0 136 Monday, September 27, 2021 Approved
Go Disk Usage 5.3.0 112 Monday, September 27, 2021 Approved
Go Disk Usage 5.2.0 560 Monday, September 27, 2021 Approved
Go Disk Usage 5.1.1 119 Monday, September 27, 2021 Approved
Go Disk Usage 5.1.0 131 Monday, September 27, 2021 Approved
Go Disk Usage 5.0.1 123 Monday, September 27, 2021 Approved
Go Disk Usage 5.0.0 114 Saturday, September 25, 2021 Approved
Go Disk Usage 4.11.2 132 Friday, September 24, 2021 Approved
Go Disk Usage 4.11.1 101 Saturday, September 25, 2021 Approved
Go Disk Usage 4.11.0 114 Friday, September 24, 2021 Approved
Go Disk Usage 4.10.1 110 Friday, September 24, 2021 Approved
Go Disk Usage 4.10.0 134 Thursday, September 23, 2021 Approved
Go Disk Usage 4.9.1 107 Thursday, September 23, 2021 Approved
Go Disk Usage 4.9.0 142 Thursday, September 23, 2021 Approved
Go Disk Usage 4.8.1 178 Thursday, September 23, 2021 Approved
Go Disk Usage 4.8.0 144 Thursday, September 23, 2021 Approved
Go Disk Usage 4.7.0 133 Thursday, September 23, 2021 Approved
Go Disk Usage 4.6.5 142 Monday, September 20, 2021 Approved
Go Disk Usage 4.6.4 123 Monday, September 20, 2021 Approved
Go Disk Usage 4.6.3 123 Monday, September 20, 2021 Approved
Go Disk Usage 4.6.2 118 Monday, September 20, 2021 Approved
Go Disk Usage 4.6.1 103 Monday, September 20, 2021 Approved
Go Disk Usage 4.6.0 131 Monday, September 20, 2021 Approved
Go Disk Usage 4.5.0 137 Sunday, September 19, 2021 Approved
Go Disk Usage 4.4.1 142 Sunday, September 19, 2021 Approved
Go Disk Usage 4.4.0 284 Sunday, September 19, 2021 Approved
Go Disk Usage 4.3.2 140 Sunday, September 19, 2021 Approved
Go Disk Usage 4.3.1 109 Sunday, September 19, 2021 Approved
Go Disk Usage 4.3.0 131 Sunday, September 19, 2021 Approved
Go Disk Usage 4.2.0 126 Saturday, September 18, 2021 Approved
Go Disk Usage 4.1.0 117 Saturday, September 18, 2021 Approved
Go Disk Usage 4.0.0 281 Saturday, September 18, 2021 Approved
Go Disk Usage 3.0.0 122 Saturday, September 18, 2021 Approved
Go Disk Usage 2.3.0 138 Saturday, September 18, 2021 Approved
Go Disk Usage 2.2.0 112 Saturday, September 18, 2021 Approved
Go Disk Usage 2.1.0 107 Saturday, September 18, 2021 Approved
Go Disk Usage 2.0.0 99 Saturday, September 18, 2021 Approved
Go Disk Usage 1.7.1 113 Saturday, September 18, 2021 Approved
Go Disk Usage 1.6.0 111 Saturday, September 18, 2021 Approved
Go Disk Usage 1.5.1 110 Saturday, September 18, 2021 Approved
Go Disk Usage 1.5.0 106 Saturday, September 18, 2021 Approved
Go Disk Usage 1.4.0 109 Saturday, September 18, 2021 Approved
Go Disk Usage 1.3.0 1188 Friday, September 17, 2021 Approved
Go Disk Usage 1.2.1 123 Friday, September 17, 2021 Approved
Go Disk Usage 1.1.0 94 Friday, September 17, 2021 Approved
Go Disk Usage 1.0.0 116 Wednesday, September 15, 2021 Approved

What's Changed

New Contributors

Full Changelog: https://github.com/dundee/gdu/compare/v5.30.1...v5.31.0


This package has no dependencies.

Discussion for the Go Disk Usage Package

Ground Rules:

  • This discussion is only about Go Disk Usage and the Go Disk Usage package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Go Disk Usage, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus