Please enter search query.
Search <book_title>...
Veritas NetBackup™ Appliance Capacity Planning and Performance Tuning Guide
Last Published:
2019-06-24
Product(s):
Appliances (3.0)
Platform: NetBackup Appliance OS
- About this Guide
- Section I. Capacity planning
- Section II. Best Practices
- Section III. Performance tuning
- Section IV. Quick reference to Capacity planning and Performance tuning
Other Performance Monitoring commands
This section lists the other commands that can be used to monitor the performance of your NetBackup Appliance.
To check the VxFS (Veritas File System) fragmentation, use the following commands:
sudo /opt/VRTS/bin/fsadm - t vxfs - E <filesystem mount point>
sudo /opt/VRTS/bin/fsadm - t vxfs - D <filesystem mount point>
To test disk I/O capabilities of the specific appliance using dd command, use the following commands:
Write performance testing:
nb5220:/home/maintenance # for i in 1 2 ; do time (dd if=/dev/zero of=/cat/xyz$i bs=64k count=409600 oflag=direct); done
Read performance testing:
nb5220:/home/maintenance# for i in 1 2 ; do time (dd if=/cat/xyz$i of=/dev/null bs=64k iflag=direct); done