VGA가 한 개만 있을 때 pass-through로 특정 VM에 할당할 경우 호스트의 터미널(로컬 콘솔)이 표시되지 않는다. 주의.
sudo lspci
...중략...
08:00.0 SATA controller: Advanced Micro Devices, Inc. [AMD] FCH SATA Controller [AHCI mode] (rev 51)
09:00.0 VGA compatible controller: NVIDIA Corporation Device 2230 (rev a1)
09:00.1 Audio device: NVIDIA Corporation Device 1aef (rev a1)
0a:00.0 Non-Essential Instrumentation [1300]: Advanced Micro Devices, Inc. [AMD] Device 148a
...생략...
# 상기 예시에서 VGA 장치 변수를 추가하는 경우
sudo /opt/xensource/libexec/xen-cmdline --set-dom0 "xen-pciback.hide=(0000:09:00.0)"
# 두 개 이상의 장치의 변수를 추가하는 경우
# 단, 아래 예시와 같이 추가할 경우 모든 디스크가 인식되지 않을 수 있다.
sudo /opt/xensource/libexec/xen-cmdline --set-dom0 "xen-pciback.hide=(0000:09:00.0)(0000:08:00.0)"
sudo /opt/xensource/libexec/xen-cmdline --delete-dom0 xen-pciback.hide
# 명령 이후 장치 정보가 표시되면 정상적으로 설정 된 것임
sudo xl pci-assignable-list
0000:09:00.0
# 한 개의 장치만 VM에 추가할 경우
sudo xe vm-param-set other-config:pci=0/0000:09:00.0 uuid=32f92f43-38f0-b395-3c31-404f57e5a811
# 두 개 이상의 장치를 VM에 추가하는 경우 ,(콤마)로 구분해서 나열
sudo xe vm-param-set other-config:pci=0/0000:08:00.0,0/0000:09:00.0 uuid=32f92f43-38f0-b395-3c31-404f57e5a811
sudo lspci
...중략...
00:01.3 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 01)
00:02.0 VGA compatible controller: Device 1234:1111
00:03.0 SCSI storage controller: XenSource, Inc. Xen Platform Device (rev 02)
00:05.0 VGA compatible controller: NVIDIA Corporation Device 2230 (rev a1)