Image

지식 기반 → Linux의 시스템 정보(하드웨어 및 OS)

[가상 서버]
출판 날짜: 14.10.2023

Linux 콘솔에서 시스템에 대한 정보를 찾으려면 몇 가지 명령이 있으며 그 작동 및 출력은 아래에 나와 있습니다.

#1. 커널 정보

uname -a

Linux hostname 5.10.0-26-amd64 #1 SMP Debian 5.10.197-1 (2023-09-29) x86_64 GNU/Linux

또는

cat /proc/version

Linux version 5.10.0-26-amd64 (debian-kernel@lists.debian.org) (gcc-10 (Debian 10.2.1-6) 10.2.1 20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #1 SMP Debian 5.10.197-1 (2023-09-29)

2. 운영 체제 및 버전

cat /etc/os-release

PRETTY_NAME="Debian GNU/Linux 11 (bullseye)"
NAME="Debian GNU/Linux"
VERSION_ID="11"
VERSION="11 (bullseye)"
VERSION_CODENAME=bullseye
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"

3. 장비정보

apt install dmidecode
dmidecode

System Information
	Manufacturer: Virtuozzo
	Product Name: KVM
	Version: Virtuozzo 7.12.0 PC (i440FX + PIIX, 1996)
	Serial Number: Not Specified
	UUID: 25f746a0-8677-459c-8e98-553169ef4cf1
	Wake-up Type: Power Switch
	SKU Number: Not Specified
	Family: Virtuozzo Linux
...

이 도구는 물리적 장비의 BIOS에 하드코딩된 정보를 표시하므로 가상 서버에서는 가상화 VPS로 출력할 수 없습니다. 아래 설명된 명령을 사용하십시오.

3.1 프로세서 및 메모리에 대한 정보

lscpu

Architecture:                       x86_64
CPU op-mode(s):                     32-bit, 64-bit
Byte Order:                         Little Endian
Address sizes:                      46 bits physical, 48 bits virtual
CPU(s):                             2
On-line CPU(s) list:                0,1
Thread(s) per core:                 1
Core(s) per socket:                 2
Socket(s):                          1
NUMA node(s):                       1
Vendor ID:                          GenuineIntel
CPU family:                         6
Model:                              61
Model name:                         Intel Core Processor (Broadwell, IBRS)
...

또는

apt install lshw
lshw

hostname
    description: Computer
    product: KVM
    vendor: Virtuozzo
    version: Virtuozzo 7.12.0 PC (i440FX + PIIX, 1996)
    width: 64 bits
    capabilities: smbios-2.8 dmi-2.8 smp vsyscall32
    configuration: boot=normal family=Virtuozzo Linux uuid=A046F725-7786-9C45-8E98-553169EF4CF1
  *-core
...

3.2 디스크 및 파티션 정보

fdisk -l

Device     Boot    Start      End  Sectors  Size Id Type
/dev/sda1  *        2048 18970623 18968576    9G 83 Linux
/dev/sda2       18972670 20969471  1996802  975M  5 Extended
/dev/sda5       18972672 20969471  1996800  975M 82 Linux swap / Solaris

또는

lsblk -a

NAME   MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT
sda      8:0    0   10G  0 disk 
|-sda1   8:1    0    9G  0 part /
|-sda2   8:2    0    1K  0 part 
`-sda5   8:5    0  975M  0 part [SWAP]
sr0     11:0    1  3.6G  0 rom  




No Comments Yet