일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 2013사진공모전
- 가로화면
- 구글캘린더
- outwit hub
- 윈도우 탐색기
- 여름
- 댓글스팸
- 아이콘크기
- 번역툴
- 통합도서회원증
- * 암호
- 일정관리
- 레노버
- Windows
- 구글메인화면
- 스케쥴
- Asterisk password reveal
- Firefox
- Edge E125
- web scrapping
- 파워셸
- rainlendar
- Google Calendar
- Shortcut Key
- 공유기 패스워드
- 패스워드
- 달력
- 단축키
- 가을
- 구글웹화면
- Today
- Total
Black&White
Linux(RedHat 계열) 에 systool 설치 및 사용 본문
리눅스 시스템에서 FC를 이용한 스토리지 볼륨을 사용할 경우 전반적인 SCSI 정보를 Gathering
할필요가 있다. WWPN 이라든지, HBA 카드 정보라든지, SCSI 연결 정보에 대한 전체적인
정보를 어떻게 가져오는지 다음과 같이 진행해 보자..
Method 1>
HBA(Host Bus Adapter) 인터페이스 찾는 방법
lspci -nn |grep -i hba
WWPN(World wide Port Name) 확인
ls -lrt /sys/class/fc_host/host[0-9]*/port_name
Method 2>
systool 명령을 이용하여 확인방법
systool 은 sysfsutils 패키지에 포함되어 있다.
설치
yum install sysfsutils
사용법
# systool -c fc_host -v
To look at verbose information regarding the SCSI adapters present on a system:
# systool -c scsi_host -v
To see what Fibre Channel devices are connected to the Fibre Channel HBA cards:
# systool -c fc_remote_ports -v -d
For Fibre Channel transport information:
# systool -c fc_transport -v
For information on SCSI disks connected to a system:
# systool -c scsi_disk -v
To examine more disk information including which hosts are connected to which disks:
# systool -b scsi -v
Furthermore, by installing the sg3_utils package it is possible to use the sg_map command to view more information about the SCSI map. After installing the package, run:
# modprobe sg
# sg_map -x
Finally, to obtain driver information, including version numbers and active parameters, the following commands can be used for the lpfc and qla2xxx drivers respectively:
'Linux' 카테고리의 다른 글
Linux service command not working (0) | 2019.07.23 |
---|---|
리눅스 History 에 명령어 시간 표시 (0) | 2017.05.11 |
[우분투] Grub2 부트로더 대신 Burg 부트로더로 변경하기 (0) | 2013.03.06 |
리눅스 디스크/스토리지 상태 확인 (0) | 2012.01.25 |
[Linux] 하드웨어 정보 확인하기 - dmidecode, lshw (0) | 2011.11.02 |