일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 코딩테스트
- LeNet-5
- timestamp-aware frame encoder
- autogluon
- ma-lmm
- sliding video q-former
- jmeter
- long video understanding
- secure-file-priv
- hackerrank
- Anaconda
- MySQL
- Kaggle
- Server
- q-former
- transference
- tensorflow
- error
- Python
- 용어
- CNN
- timechat
- multimodal machine learning
- Artificial Intelligence
- 백준
- Github
- memory bank
- leetcode
- quantification
- Linux
Archives
- Today
- Total
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 코딩테스트
- LeNet-5
- timestamp-aware frame encoder
- autogluon
- ma-lmm
- sliding video q-former
- jmeter
- long video understanding
- secure-file-priv
- hackerrank
- Anaconda
- MySQL
- Kaggle
- Server
- q-former
- transference
- tensorflow
- error
- Python
- 용어
- CNN
- timechat
- multimodal machine learning
- Artificial Intelligence
- 백준
- Github
- memory bank
- leetcode
- quantification
- Linux
Archives
- Today
- Total
목록리눅스 (1)
Juni_DEV
리눅스에서 CPU/RAM 사양 확인하기
리눅스 터미널 창에서 간단한 명령어 몇 개로 CPU와 RAM 사양을 확인해 볼 수 있다. 먼저 CPU 사양을 알고 싶다면 /proc/cpuinfo의 내용을 보면 된다. 출력되는 내용이 많으므로 more와 조합하여 사용하면 된다. # CPU 사양 확인 cat /proc/cpuinfo | more 만약 CPU 모델명만 알고 싶으면 grep 명령으로 걸러내면 된다. 아래와 같이 입력해 보자. # CPU 모델명 확인 cat /proc/cpuinfo | grep name 코어의 수만 확인할 때는 nproc 명령을 사용하면 된다. 하이퍼-스레딩(hyper-threading)이 사용되고 있을 경우 nproc 명령의 결괏값은 물리적인 코어 수의 2배가 된다. # CPU 코어의 수 출력 nproc RAM 용량을 확인하고..
etc/Server
2019. 8. 24. 20:32