## Bus Address 확인 명령
lspci
lspci | grep -i hba
lspci | grep -i ethernet
lspci | grep -i raid
## PCI slot 번호와 연결된 Bus Address 확인
dmidecode -t slot
dmidecode -t slot | grep -e PCI-E -e Bus
## PCI Slot 에 해당하는 Bus Address 와, lspci 에서 찾은 device 의 Bus Address 를 매칭
lspci | grep -i hba
-----------------------------------------------------------------------------------------------
0a:00.0 Fibre Channel: QLogic Corp. ISP2532-based 8Gb Fibre Channel to PCI Express HBA (rev 02)
0a:00.1 Fibre Channel: QLogic Corp. ISP2532-based 8Gb Fibre Channel to PCI Express HBA (rev 02)
27:00.0 Fibre Channel: QLogic Corp. ISP2532-based 8Gb Fibre Channel to PCI Express HBA (rev 02)
27:00.1 Fibre Channel: QLogic Corp. ISP2532-based 8Gb Fibre Channel to PCI Express HBA (rev 02)
-----------------------------------------------------------------------------------------------
dmidecode -t slot | grep -e PCI-E -e Bus
----------------------------------------
Designation: PCI-E Slot 1
Bus Address: 0000:04:00.0
Designation: PCI-E Slot 2
Bus Address: 0000:07:00.0
Designation: PCI-E Slot 3
Bus Address: 0000:0a:00.0
Designation: PCI-E Slot 4
Bus Address: 0000:21:00.0
Designation: PCI-E Slot 5
Bus Address: 0000:24:00.0
Designation: PCI-E Slot 6
Bus Address: 0000:27:00.0
----------------------------------------
HBA 는 PCI Slot 3, Slot 6 을 사용함을 알 수 있다.
'Linux & Unix' 카테고리의 다른 글
Linux PAM (Pluggable Authentication Modules) in RHEL8/CentOS8 (0) | 2020.10.16 |
---|---|
CentOS 설치 미디어 부팅 구조 (0) | 2020.07.11 |
CentOS 6.10 - init.d 스크립트의 NETWORKING 변수 (0) | 2020.06.19 |
linux command - stat , statx (file timestamps) (0) | 2020.06.16 |
linux 로그 - Permanent journal (systemd-journald) (0) | 2020.06.16 |