일시중단을 해제하지 않고 장치 매퍼 테이블을 INACTIVE에서 LIVE로 이동합니다.

일시중단을 해제하지 않고 장치 매퍼 테이블을 INACTIVE에서 LIVE로 이동합니다.

장치 매퍼 대상이 일시 중지된 동안 테이블이 변경되어 새 테이블이 INACTIVE 상태가 될 수 있습니다. 대상이 복원되면 INACTIVE 테이블이 LIVE로 변경됩니다.

# dmsetup info test | grep -E '^(State|Tables present): '
State:             ACTIVE
Tables present:    LIVE
# dmsetup suspend test
# dmsetup info test | grep -E '^(State|Tables present): '
State:             SUSPENDED
Tables present:    LIVE
# dmsetup reload --table "$newtable" test
# dmsetup info test | grep -E '^(State|Tables present): '
State:             SUSPENDED
Tables present:    LIVE & INACTIVE
# dmsetup resume test
# dmsetup info test | grep -E '^(State|Tables present): '
State:             ACTIVE
Tables present:    LIVE

INACTIVE 테이블을 LIVE로 전환하는 방법이 있습니까?아니요타겟 일시중지를 해제하시겠습니까?

관련 정보