목록2025/01/14 (2)
2swan
[Linux] 용량 큰 로그 파일 열기
리눅스에서 큰용량의 로그 파일을 열고자 한다면 split 명령어로 로그 파일을 쪼갠다# split -b 1000m test.txt 100m : 100MB1000m : 1000MB
System of Infra/Linux
2025. 1. 14. 16:13
Linux 하드웨어 상태 확인
리눅스 종류 및 리눅스 버전 확인# grep . /etc/*-release CPU 코어 전체 갯수 확인# grep -c processor /proc/cpuinfo HostName 확인# hostname Serial Number 확인# dmidecode | grep 'Serial Number' | head -1 메모리 용량 확인# cat /proc/meminfo | grep MemTotal HDD 용량 또는 갯수 확인# fdisk -l | egrep 'Disk.*bytes' | awk '{ sub(/,/,""); sum +=$5;print $1" "$2" "$3" "$4" "$5" "$6 } END { print "total: " sum/1024/1024/1024 " GB" }' 서비스 모델 확인# dmi..
System of Infra/Linux
2025. 1. 14. 16:06