How to find large files on Linux

Discover how to find large files and duplicate files to free up more usable space and improve system performance.

Find large files using GUI tools

The easy way first. QDirStat is a GUI application for the Linux desktop that you can install using this terminal command:

sudo apt install qdirstat

When running QDirStat, it will ask you to select a folder to scan before listing the size of the folder and the files in it. You can then use the Discover > Largest Files menu item to find the largest files. In the Locate Files window , sort them by Size and you will see the largest files in descending order.

How to find large files on Linux Picture 1 How to find large files on Linux Picture 2 How to find large files on Linux Picture 3 How to find large files on Linux Picture 4

You may notice that QDirStat shows some folders in red. This means you do not have read permission to access those folders.

To resolve the issue, run the program with superuser rights as follows:

sudo qdirstat

How to find large files on Linux Picture 5 How to find large files on Linux Picture 6 How to find large files on Linux Picture 7 How to find large files on Linux Picture 8

Find large files using FTP software

FileZilla FTP application has great file search features that you can use on your local machine. Make sure SSH is installed, or install with:

sudo apt install ssh

Next, install FileZilla using this command:

sudo apt install filezilla

How to find large files on Linux Picture 9 How to find large files on Linux Picture 10 How to find large files on Linux Picture 11

After installing FileZilla, you can use it to search your local files:

1. Open FileZilla and connect using the following credentials:

Host:

localhost

Username:

Your username

Password:

Your password

Port:

22

2. Once you're connected, select Server from the menu, then select Search remote files .

3. Select the Search folder and in Search conditions , select File size from the drop-down box and, for example, greater than 100MB.

4. Clicking Search will only show you files of the desired size.

You can filter the search further by adding conditions, for example, the video file has the MP4 extension.

How to find large files on Linux Picture 12 How to find large files on Linux Picture 13 How to find large files on Linux Picture 14 How to find large files on Linux Picture 15

Tip : This process is also useful when you want to search large files on a remote Linux server, especially if you don't have access to a terminal. You will need to replace the authentication information with the FTP details.

5 ★ | 1 Vote

May be interested

  • How to Find a File in LinuxHow to Find a File in Linux
    finding a file in a linux system can be difficult if you don't know how. the best way to find files is to utilize several different terminal commands. mastering these commands can give you complete control over your files, and they are...
  • Moving files between Linux systems with SCPMoving files between Linux systems with SCP
    when transferring files to a remote linux server, you have a few options. one of the best is to use a program called secure copy, or scp, which runs over the ssh protocol to quickly transfer files over the network to the remote system.
  • File Management in Unix / LinuxFile Management in Unix / Linux
    all data in unix is ​​organized in files. all files are organized in folders. these directories are organized in a tree structure that is called the file system.
  • Is it possible to run .exe files on Linux?Is it possible to run .exe files on Linux?
    you don't need to trade the appeal of windows software for the stability, security, ease of customization (and even great classic appearance) of linux. in this article, you will be shown how to run windows exe (possibly executable) files and software using the linux operating system. these methods can be applied to any linux distribution, including ubuntu, kali linux, centos and many others.
  • Install and use 7 ZIP on Ubuntu LinuxInstall and use 7 ZIP on Ubuntu Linux
    if you are a windows user and you have ever sent/received large files online, you probably have not heard of the 7 zip file compression tool. installing 7 zip on windows is quite simple, so what about on ubuntu linux. the article below tipsmake will guide you how to install and use 7 zip on ubuntu linux.
  • How to use pandoc to convert files on LinuxHow to use pandoc to convert files on Linux
    you can use pandoc on linux to convert over 40 different file formats. you can also use it to create a simple docs-as-code system by writing to markdown, saving with git and exporting it in any supported format.
  • The fastest way to send large filesThe fastest way to send large files
    sending large files has always been a challenge for many users, especially when working remotely or sharing important documents.
  • How to create new files in LinuxHow to create new files in Linux
    there are a number of different linux applications and commands that will create new files for you, even without launching the application. the method you use will depend on your purpose for the file. let's take a look at the options so you can see which one is most useful for you!
  • How to Create ISO Files on LinuxHow to Create ISO Files on Linux
    today's tipsmake will show you how to turn multiple files into one iso file on a linux computer. you need to use the linux command line to do it.
  • How is Arch Linux different from other Linux versions?How is Arch Linux different from other Linux versions?
    arch linux is arguably the most misunderstood linux distribution. many people find arch difficult to install and maintain.