How do I find out what is taking up space on my hard drive?

How do I find out what is taking up space on my hard drive?

To access it, head to Settings > System > Storage and click a drive. You’ll see a list of things taking up space on that drive, from apps and games to system files, videos, photos, and music.

How do I find out what files are taking up space on Ubuntu?

To check the free disk space and disk capacity with System Monitor:

  1. Open the System Monitor application from the Activities overview.
  2. Select the File Systems tab to view the system’s partitions and disk space usage. The information is displayed according to Total, Free, Available and Used.

How do I clear space on my hard drive?

Here’s how to free up hard drive space on your desktop or laptop, even if you’ve never done it before.

  1. Uninstall unnecessary apps and programs.
  2. Clean your desktop.
  3. Get rid of monster files.
  4. Use the Disk Cleanup Tool.
  5. Discard temporary files.
  6. Deal with downloads.
  7. Save to the cloud.

How do I find the top 10 files in Linux?

Command To Find Top 10 Largest Files In Linux

  1. du command -h option : display file sizes in human readable format, in Kilobytes, Megabytes and Gigabytes.
  2. du command -s option : Show total for each argument.
  3. du command -x option : Skip directories.
  4. sort command -r option : Reverse the result of comparisons.

How do I see sudo users in Linux?

List sudo users in Linux. You can also use “getent” command instead of “grep” to get the same result. As you see in the above output, “sk” and “ostechnix” are the sudo users in my system.

How is disk space divided up in Linux?

However, operating systems divide that space up so that 1024 bytes = 1 kilobyte. Because of this, a 1000-gigabyte hard drive ends up with roughly 930 gigabytes of usable storage. The du command displays disk usage. This tool can display disk usage for individual directories in Linux, giving you a finer-grained view of your disk usage.

Which is the best command to check disk space on Linux?

The df command is the tool I first used to discover drive space on Linux, way back in the 1990s. It’s very simple in both usage and reporting. To this day, df is my go-to command for this task. This command has a few switches but, for basic reporting, you really only need one. That command is df -H.

How can I find out how much disk space my computer is using?

Bash contains two useful commands related to disk space. To find out the available and used disk space, use df (disk filesystems, sometimes called disk free). To discover what’s taking up the used disk space, use du (disk usage).

How do I check disk space in Bash?

Bash contains two useful commands related to disk space. To find out the available and used disk space, use df (disk filesystems, sometimes called disk free). To discover what’s taking up the used disk space, use du (disk usage). Type df and press enter in a Bash terminal window to get started.