CPU Cores 개수
리눅스에서 CPU/RAM 사양 확인하기
R에서
CPU Core 개수
library(parallel) round(detectCores()*0.75)
Ubuntu에서
CPU Core 개수
nproc
CPU 사양
cat /proc/cpuinfo | more #모델명 확인만 확인 cat /proc/cpuinfo | grep name
RAM 용량
# 메모리 용량 확인 free # 메모리 용량 확인, (메가(M), 기가(G) 단위를 사용) free -h