반응형 OS/Linux73 How do I find files and total their sizes? $ find . -name 'flibble*' -ctime +90 -exec du -sh {} \; 2.1G ./flibble_116.log 2.1G ./flibble_83.log 2.1G ./flibble_211040_157.log 2.1G ./flibble3747_51.log Solution find . -name 'flibble*' -ctime +90 -exec du -shc {} + 2022. 8. 18. tcpdump # tcpdump -n -i eth0 tcp port 8000 # tcpdump -i eth0 -n -l -s0 -A tcp port 8000 2022. 4. 30. [Linux] CentOS 8: Failed to download metadata for repo 'appstream' [root@g15 ~]# yum list Failed to set locale, defaulting to C.UTF-8 CentOS-8 - AppStream 36 B/s | 38 B 00:01 Failed to download metadata for repo 'AppStream' Error: Failed to download metadata for repo 'AppStream' [root@g15 yum.repos.d]# ls CentOS-AppStream.repo CentOS-Debuginfo.repo CentOS-Media.repo CentOS-Vault.repo CentOS-Base.repo CentOS-Extras.repo CentOS-PowerTools.repo CentOS-centosplus.r.. 2022. 4. 23. 디렉토리 일괄변경 c*로 시작하는 폴더를 dhshin*로 변경 find . -maxdepth 1 -name "c*" -exec rename choi dhshin {} \; 2022. 2. 21. 이전 1 2 3 4 ··· 19 다음 반응형