Creating a new file system in hp-ux
Assuming you have finished creating a new logical volume and you now want to create a new file system and mount the file system on to the directory.
# newfs -F vxfs -o largefiles /dev/vgName/rlvName
Note :
1) you don’t have to define “-F vxfs”, by default the file sytem type will be automaticallty picked from /etc/default/* directory.
2) you will to define “-o largefiles” if the file system is used for largefiles, this is typically used for database related file systems, otherwise you can ignore this option.
Now mount the file system
# mount /dev/vgName/lvName /mount_point
People who looked at this item also looked at…
Related items
Categories: LVM
