Setting up cronjobs in Unix and Solaris cron is a unix, solaris utility that allows tasks to be automatically run in the background at regular intervals by the cron daemon. These tasks are often termed as cron jobs in unix , solaris. Crontab (CRON TABle) is a file which contains the schedule of cron entries [...]
Archive for the ‘Utilities’ Category
26 Apr
SSH and SCP
Setting Up Passwordless Connection Secure Copy or SCP is a means of securely transferring computer files between a local and a remote host or between two remote hosts, using the Secure Shell (SSH) protocol. The term SCP can refer to one of two related things, the SCP protocol or the SCP program. *** use password [...]
14 Apr
FIND Command
To look across the /bin and /var/html directory trees for filenames that contain the pattern *.htm*, you can use the following command: find /usr /var/html -name “*.htm*” -print Finding udump directory starting from ORACLE_BASE find $ORACLE_BASE -name “udump” -print Finding Directories To find a list of the directories use can use the -type specifier. find [...]