The command to list images in NetBackup is /usr/openv/netbackup/bin/admincmd/bpimagelist. The -L option will display the number of copies for each image. To...
To use a MySQL query in a script, you can do so like this: #!/bin/bash echo “use testdb; select Name, Address from...
To list all policies from the command line, you can use the bppllist command. /usr/openv/netbackup/bin/admincmd/bppllist -allpolicies -U To parse the output a...
A status code 129 in NetBackup means “Disk storage unit is full” (i.e. insufficient disk space). There are a few things that...
If you have wget installed, you can do the following: 1. wget http://distfiles.macports.org/MacPorts/MacPorts-1.9.2.tar.bz2 2. tar xzvf MacPorts-1.9.2.tar.gz 3. cd MacPorts-1.9.2 4. ./configure...
To run Software Update on your Mac from the command line, open Terminal.app and run the command below: sudo softwareupdate -i -a
To rsync files in a directory from server A to server B, perform the following steps: 1. ssh to server A 2....
To create a LVM file system on a Linux server, use the procedure listed below. 1. Login as root or run the...
To disable selinux on a RedHat server, you can run the following command: setenforce 0 To disable after reboot edit the file...
To encrypt your root password for use in a Kickstart config, you can use a command like this: perl -e ‘print crypt(“newpasswd”,...