Forum Discussion

allaboutunix's avatar
10 years ago

New filesystem creation in vxvm

We have a request of creation of new filesystem  /RMLS01/oradata5---> Add this new mount point  of 252GB   # vxassist -g RMTSTP01_ora_data_dg maxsize Maximum volume size: 999329792 (48795...
  • Gaurav_S's avatar
    10 years ago

    Hello,

    It should be pretty straight forward .

    step 1  -create volume of desired size

    # vxassist -g <diskgroup> make <volume_name>  <size>     (assuming vol is concat or stripe as other vols in the dg),

    step 2  - create a filesystem

    # mkfs -F vxfs /dev/vx/rdsk/<diskgroup>/<volume>

    step 3 - mount filesystem

    # mount -F vxfs /dev/vx/dsk/<diskgroup>/<volume>  <mount_point>

     

    G