OS Categories

Where almost everything resides.

VAS is a QUEST (formerly DELL) software that allows validating GAD account in Unix environments. If running vastool status you receive an error of no srvinfo, then first check DNS entries in resolv.conf to assure the servers are correct and that also resolve hosts   root@server1:/root# /opt/quest/bin/vastool status Host: <server1, SunOS 5.10 sparc> Date: <Tuesday, 22 November 2016 15:58:18 CET> QAS: <4.x.x.x> Domain: <your.domain.com> INFO: 232 No srvinfo Read more...

If trying to start a resource you receive an error about STOP_FAILED state,

root@server1:/root# clrs enable lsnr-res-chzpoip1
clrs: (C928797) Skipping resource lsnr-res-database1 because its resource group SG_oracle_GROUP1 is in ERROR_STOP_FAILED state.

We have to clear the resource state and offline the Service Group.

# clresource clear -f STOP_FAILED lsnr-res-database1

# clrg offline SG_oracle_GROUP1
This article applies to: Platform(s): Macintosh OS X Java version(s): 7.0, 8.0 Uninstall Oracle Java using the Terminal Note: To uninstall Java, you must have Administrator privileges and execute the remove command either as root or by using the sudo tool. Remove one directory and one file (a symlink), as follows: Click on the Finder icon located in your dock Click on the Utilities folder Double-click on the Terminal icon In the Terminal window Copy and Read more...
By default, anytime you take a screen capture in Mac OS X, the resulting screenshot file will save to the current users desktop. This makes retrieval very easy and is very appropriate for the average Mac user, but for those who take a lot of screen shots in OS X, they may find their desktop to be cluttered with the screenshot files rather quickly. An excellent solution is to adjust the default location of where Mac OS X saves captured screen shot files to another location in the file system Read more...
#!/bin/bash /usr/bin/kstat -m cpu_info | egrep "chip_id|core_id|module: cpu_info" > /var/tmp/cpu_info.log nproc=`(grep chip_id /var/tmp/cpu_info.log | awk '{ print $2 }' | sort -u | wc -l | tr -d ' ')` ncore=`(grep core_id /var/tmp/cpu_info.log | awk '{ print $2 }' | sort -u | wc -l | tr -d ' ')` vproc=`(grep 'module: cpu_info' /var/tmp/cpu_info.log | awk '{ print $4 }' | sort -u | wc -l | tr -d ' ')` nstrandspercore=$(($vproc/$ncore)) ncoresperproc=$(($ncore/$nproc)) speedinmhz=`(/usr/bin/kstat Read more...