Problem scenario
How do you find files on a Linux server that consume more than one gigabyte of space?
Solution
Run this command: sudo find / -size +1G -type f -print
A Technical I.T./DevOps Blog
Problem scenario
How do you find files on a Linux server that consume more than one gigabyte of space?
Solution
Run this command: sudo find / -size +1G -type f -print