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.
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
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
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.
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.
You should read it
- How to access Linux files on Windows 10
- Is it possible to run .exe files on Linux?
- What is UID in Linux? How to find and change the UID
- Search for files and directories in Linux using the command line interface
- Instructions for using find command in Linux
- How to host and share large files online with PicoShare in Linux
- File Management in Unix / Linux
- How to use pandoc to convert files on Linux
May be interested
- How to Find a File in Linuxfinding 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 SCPwhen 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 / Linuxall 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?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 Linuxif 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 Linuxyou 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 filessending large files has always been a challenge for many users, especially when working remotely or sharing important documents.
- How to create new files in Linuxthere 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 Linuxtoday'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?arch linux is arguably the most misunderstood linux distribution. many people find arch difficult to install and maintain.