Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- VirtualBox
- netsh
- Mac
- tomcat
- web.xml
- 줄바꿈 문자
- Quartz
- import
- resource
- find
- ssh
- context
- 네트워크
- grep
- JavaScript
- Windows
- lsof
- vscode
- port
- Eclipse
- profile
- GIT
- Source
- maVen
- IntelliJ
- xargs
- bash
- Windows 10
- plugin
- 단축키
Archives
- Today
- Total
develog
[linux] cpu, 메모리, 디스크 정보 확인하기 본문
물리 cpu 갯수
[root@ubuntu01 ~]# lscpu | grep 'Socket'
Socket(s): 2
cpu 코어 갯수
[root@ubuntu01 ~]# lscpu | grep 'Core'
Core(s) per socket: 16
메모리 용량
[root@ubuntu01 ~]# free -h
total used free shared buff/cache available
Mem: 943Mi 299Mi 498Mi 5.0Mi 287Mi 644Mi
Swap: 2.3Gi 128Mi 2.2Gi
디스크 용량
[root@ubuntu01 ~]# lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 893.8G 0 disk
├─sda1 8:1 0 1.1G 0 part /boot/efi
├─sda2 8:2 0 1G 0 part /boot
├─sda3 8:3 0 16G 0 part [SWAP]
└─sda4 8:4 0 875.7G 0 part /
sdb 8:16 0 14.6T 0 disk
└─sdb1 8:17 0 14.6T 0 part /data
Comments