기계 하드웨어 이름과 프로세서 유형의 차이점은 무엇입니까

기계 하드웨어 이름과 프로세서 유형의 차이점은 무엇입니까

내 Linux 출력으로 인해 내 컴퓨터 하드웨어 이름이 i686이고 프로세서 유형이 i686이라는 것을 알고 있습니다. 하지만 왜 같은지 모르겠습니다. 기계 하드웨어 이름과 프로세서 유형의 차이점이 무엇인지 알고 싶습니다.

답변1

이에 대해서는 다음에서 더 명확하게 설명됩니다 info uname.

`-m'
`--machine'
     Print the machine hardware name (sometimes called the hardware
     class or hardware type).

`-p'
`--processor'
     Print the processor type (sometimes called the instruction set
     architecture or ISA).  Print `unknown' if the kernel does not make
     this information easily available, as is the case with Linux
     kernels.

그래서 하드웨어 이름은 CPU 입니다.건축학, 프로세서 유형은 프로세서의 이름입니다.명령어 세트사용된. Wikipedia에서 인용하자면:

명령어 세트 아키텍처는 명령어 세트를 구현하는 데 사용되는 프로세서 설계 기술 세트인 마이크로 아키텍처와 구별됩니다. 서로 다른 마이크로아키텍처를 가진 컴퓨터는 공통 명령어 세트를 공유할 수 있습니다. 예를 들어 Intel Pentium과 AMD Athlon은 x86 명령어 세트의 거의 동일한 버전을 구현하지만 내부 디자인은 근본적으로 다릅니다.

답변2

dmidecode또한 시스템 및 하드웨어에 대한 추가 정보를 얻는 데 사용할 수도 있습니다 .

sudo dmidecode -s STRING-KEYWORD

다음 키워드 목록을 사용합니다.

bios-vendor
bios-version
bios-release-date
system-manufacturer
system-product-name
system-version
system-serial-number
system-uuid
baseboard-manufacturer
baseboard-product-name
baseboard-version
baseboard-serial-number
baseboard-asset-tag
chassis-manufacturer
chassis-type
chassis-version
chassis-serial-number
chassis-asset-tag
processor-family
processor-manufacturer
processor-version
processor-frequency

관련 정보