Account lockouts in Solaris 10 can be configured per user in the /etc/user_attr file. Each user listed in the /etc/user_attr file can...
Below are some useful RPM commands: Syntax Description rpm -ivh {rpm-file} Install the package rpm -Uvh {rpm-file} Upgrade package rpm -ev {package}...
To create a file with dd,m you can use the syntax below: dd if=/dev/zero of=my_1GB_file bs=1m count=1024 The command above will create...
To list the retention levels in NetBackup, you can use the bpretlevel command. /usr/openv/netbackup/bin/admincmd/bpretlevel -U The output looks like the example below:...
There are several plugins available for FireFox that allow you to monitor instances of Nagios and notify you using colors and sounds...
The prstat command is used on Solaris systems to monitor processes. # prstat [ -acJLmRtTv ] [ -C psrsetlist ] [ -j...
To only allow specific users to ssh to our server, you can add the following line to your sshd_config file: AllowUsers usera...
To prevent users from ssh’ing to your server, you can use the sshd_config file to restrict access. One approach is to deny...
All vi commands are entered in command mode. To enter command mode, press the ESC key. Some vi commands cause vi to...
To display line numbers in the vi editor, you can type this from within vi: :set number You can abbreviate it :...