문서의 이전 판입니다!
— 이강우 2016/01/25 12:59
VMWARE에서 scsi_id 값이 나오지 않는 경우 해결 방법
참조링크 : https://gruffdba.wordpress.com/2012/11/06/scsi_id-on-centos-6-on-vmware-returns-null/
CentOS6나 RHEL6를 VMWARE상에서 사용시 scsi_id 명령어를 쳐도 해당 디스크 장치의 scsi_id 값이 나오지 않는 경우가 있다.
[root@localhost ~]# scsi_id -g -u -d /dev/sdb [root@localhost ~]#
The problem here is that VMware Workstation does not provide unique SCSI identifiers to the virtual SCSI devices. We need to modify the VMX file to make this happen by adding the following directive:
이 문제는 VMWare Workstation 제품이 unique SCSI ID를 가상 SCSI장치에 할당해주지 않아서 생기는 문제이다.
이것을 해결하기 위해서는 아래처럼 .vmx파일을 직접 수정하여야 한다.
disk.EnableUUID = "TRUE"
위와같이 수정 후 VM 을 재기동 하면 정상적으로 나타날 것이다.
[root@localhost ~]# scsi_id -g -u -d /dev/sdb 36000c2980c56d98cc5150a0ac103058d
로그인하면 댓글을 남길 수 있습니다.