Ubuntu는 ibmvfc를 지원합니까?

Ubuntu는 ibmvfc를 지원합니까?

14.04는 가상 파이버 채널이 있는 시스템에 로드하기 위해 ibmvfc 모듈을 지원합니까? 이전 버전에서는 ibmvscsi만 지원했습니다.

답변1

나는 ibmvfc를 사용한 적이 없기 때문에 그것이 작동하는지 여부를 명시적으로 말할 수 없습니다. 그러나 다음과 같이 14.04의 ppc64 빌드에는 ibmvfc 모듈이 활성화되어 있다고 말할 수 있습니다.

$ lsb_release -sc; uname -m; uname -r
trusty
ppc64
3.13.0-24-powerpc64-smp

$ dpkg-query -S /boot/vmlinu?-$(uname -r)
linux-image-3.13.0-24-powerpc64-smp: /boot/vmlinux-3.13.0-24-powerpc64-smp

$ sudo modprobe ibmvfc
$ lsmod | grep vfc
ibmvfc                 83360  0
scsi_transport_fc      80588  1 ibmvfc

$ dmesg | tail -n 1
[  110.720647] ibmvfc: IBM Virtual Fibre Channel Driver version: 1.0.11 (April 12, 2013)

이 모듈은 ppc64 리틀 엔디안에도 사용 가능하지만 linux-image가 아닌 'linux-image-extra' 패키지로 제공됩니다. 따라서 ppc64el에서는 다음을 수행해야 합니다.

sudo apt-get install linux-image-generic

그러면 올바른 linux-image-extra-KERNEL_VERSION 패키지를 얻을 수 있습니다.

거기에서 커널 모듈이 로드되지만 테스트해 본 경험이 없습니다. ibmvfc 드라이버에서 버그를 발견하면 ubuntu-bug linux-image-generic.

관련 정보