System cleanup-search for large files

Source: Internet
Author: User

How to find large files in the system:
1. Count the file (or folder) Size of the current directory and sort the files in ascending order.Du-s/home/* | sort-nr*-H the readable format shows the size of the specified directory or file
* The-s option specifies that the size of each subdirectory or file is not displayed in detail for the directory. 2. Search for files larger than MB and display details.Find.-type f-size + 100 M-exec ls-lh {}\;The find action can be-print, which is output by default.
-Ls: displays the detailed information of the searched file.
-OK COMMAND \; to confirm
-Exec COMMAND \; where COMMAND is the COMMAND to operate on the file, use {} to replace the searched file; "\;" is the end of-exec, is a fixed format. This action can be replaced by the xargs command, that is, the result is sent to the xargs command through the pipeline, and the file to be operated is represented.

Reference: 1. find, a powerful file search tool in Linux, provides a detailed description of the find command, which can be used as a reference for future use.
2. Linux provides detailed command introduction for finding out the summary of large files, and finally provides two different methods for searching large files.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.