How do I set zfs storage pool properties in solaris?



  • Check the current value of the "delegation" property in the test_pool pool:

    # zpool get delegation test_pool
    NAME       PROPERTY    VALUE       SOURCE
    test_pool  delegation  on          default
    

    Change the property from on to off:

    # zpool set delegation=off test_pool
    

    Check the new setting:

    # zpool get delegation test_pool
    NAME       PROPERTY    VALUE       SOURCE
    test_pool  delegation  off         local
    


© Lightnetics 2024