| 1. |
Can You Explain Step By Step Procedure To Implement Virtual/thin Provisioning? |
|
Answer» Creating Data Devices: SYMCONFIGURE -sid "SymID" -cmd "create DEV count=16, config=2-Way-Mir, attribute=datadev, emulation=FBA, size=4602;" COMMIT -v -nop Creating Thin Pool: symconfigure -sid "SymID" -cmd "create pool PoolName type=thin;" commit -nop Adding Data Devices to thin pool: Symconfigure -sid "SymID" -cmd "add dev 10E4:10E5 to pool PoolName type=thin, member_state=ENABLE;" commit -nop Creating Thin Devices: symconfigure -sid "SymID" -cmd "create dev count=16, size=4602, emulation=fba, config=TDEV;" commit -nop BINDING Thin devices to Thin Pool: symconfigure -sid "SymID" -cmd "bind tdev 10F4:10F7 to pool PoolName;" commit -nop Creating Data Devices: Symconfigure -sid "SymID" -cmd "create dev count=16, config=2-Way-Mir, attribute=datadev, emulation=FBA, size=4602;" commit -v -nop Creating Thin Pool: symconfigure -sid "SymID" -cmd "create pool PoolName type=thin;" commit -nop Adding Data Devices to thin pool: Symconfigure -sid "SymID" -cmd "add dev 10E4:10E5 to pool PoolName type=thin, member_state=ENABLE;" commit -nop Creating Thin Devices: symconfigure -sid "SymID" -cmd "create dev count=16, size=4602, emulation=fba, config=TDEV;" commit -nop Binding Thin devices to Thin Pool: symconfigure -sid "SymID" -cmd "bind tdev 10F4:10F7 to pool PoolName;" commit -nop |
|