리눅스 콘솔 환경에서는 하드웨어 사양을 한 눈에 확인하기 불편하게 되어 있다.
#/etc/sysconfig/hw.conf 파일을 확인하던가
/proc/cpuinfo 나 /proc/pci 등의 정보를 보는 수 밖에는 달리 방법이 없었다.
특징 : 데비안,맨드레이크,젠투등 많은 OS와 대 부분의 CPU플랫폼 지원및 GUI툴 제공
redhat 계열의 경우 관련 rpm 다운로드
wget ftp://rpmfind.net/linux/dag/redhat/el4/en/i386/dag/RPMS/lshw-2.10-1.el4.rf.i386.rpm
실행
#lswh |more
확인
description: Rack Mount Chassis
product: PowerEdge 2950 # 서버 종류 확인
vendor: Dell Inc.
serial: CPVP6BX
width: 32 bits
capabilities: smbios-2.4 dmi-2.4
description: CPU
product: Intel(R) Xeon(R) CPU E5310 @ 1.60GHz # CPU정보 확인
vendor: Intel Corp.
physical id: 400
bus info: cpu@0
version: 6.15.7
serial: 0000-06F7-0000-0000-0000-0000
slot: CPU1
size: 1600MHz
capacity: 3600MHz
width: 64 bits
clock: 1066MHz
관련 사이트 http://ezix.org/project/wiki/HardwareLiSter
#/etc/sysconfig/hw.conf 파일을 확인하던가
/proc/cpuinfo 나 /proc/pci 등의 정보를 보는 수 밖에는 달리 방법이 없었다.
특징 : 데비안,맨드레이크,젠투등 많은 OS와 대 부분의 CPU플랫폼 지원및 GUI툴 제공
redhat 계열의 경우 관련 rpm 다운로드
wget ftp://rpmfind.net/linux/dag/redhat/el4/en/i386/dag/RPMS/lshw-2.10-1.el4.rf.i386.rpm
실행
#lswh |more
확인
description: Rack Mount Chassis
product: PowerEdge 2950 # 서버 종류 확인
vendor: Dell Inc.
serial: CPVP6BX
width: 32 bits
capabilities: smbios-2.4 dmi-2.4
description: CPU
product: Intel(R) Xeon(R) CPU E5310 @ 1.60GHz # CPU정보 확인
vendor: Intel Corp.
physical id: 400
bus info: cpu@0
version: 6.15.7
serial: 0000-06F7-0000-0000-0000-0000
slot: CPU1
size: 1600MHz
capacity: 3600MHz
width: 64 bits
clock: 1066MHz
관련 사이트 http://ezix.org/project/wiki/HardwareLiSter
트랙백 보낼 주소 : http://noartist.com/tc/trackback/415
-
리눅스에서 하드웨어 확인하기 (How to get the information of hardwares in Linux)
2009/03/06 10:26리눅스 컴퓨터에서는 하드웨어를 확인하기가 쉽지 않다. 윈도우처럼 GUI (Graphic User Interface) 방식의 장치 관리자(device manager) 같은 것이 있으면 좋을 텐데, 터미널에서 아래와 같이 일일이 명령어를 쳐야 하니 말이다. cat /proc/cpuinfo cat /proc/meminfo more /etc/sysconfig/hwconf | more df -lh 예를 들어 내 비디오 카드 사양을 확인하고 싶은데, 명령어를..



