10 More Discussions You Might Find Interesting
1. Shell Programming and Scripting
I AM ON SOLARIS
I have a script it.sh which is running fine when i execute it from shell command.
But when i schedule it in crontab it is throwing error.
Why and how can i resolve it ?i am clueless
IT.SH
#!/bin/sh
ORACLE_HOME=/var/opt/oracle/product/10g; export ORACLE_HOME... (1 Reply)
Discussion started by: rafa_fed2
1 Replies
2. HP-UX
I am trying to build a software on HP-UX (HP-UX 11.00). It links against Xerces and Xalan libraries (amongst others).
I am getting the following errors during the final linking phase.
Can somebody help me understand the problem?
I compiled Xerces and Xalan using aCC (
as recommended) while... (1 Reply)
Discussion started by: slash_blog
1 Replies
3. Shell Programming and Scripting
I am having the worst time trying to figure out this simple little script and I'm about to go nuts.
I have to use csh to create this script for a class and the problem I run into is checking my number range, just validating that the number is between 1 and 9 inclusive. I tried:
if
... (4 Replies)
Discussion started by: Vyrlissa
4 Replies
4. Shell Programming and Scripting
I am using cat to collect data from hundreds of files with the following code:
cat *.dis > intree2
All my files have the extension .dis and are numbered:
Block1
Block2
Block3,
etc
I came to realize that my code is not adding the files in consecutive order. I need to make sure the content... (6 Replies)
Discussion started by: Xterra
6 Replies
5. Emergency UNIX and Linux Support
We are using the solaris server and if i am using rm -rf to delete the directories its asking the confirmation for each and every file inside the directory.Is there any way to disable ( should not ask the confirmation) only for a particular session? (12 Replies)
Discussion started by: sureshbabuc
12 Replies
6. UNIX for Dummies Questions & Answers
Hello,
I ran aureport on my server and I got the following result:
Summary Report
======================
Range of time: 12/31/1969 19:00:00.000 - 12/31/1969 19:00:00.000
Number of changes in configuration: 0
Number of changes to accounts or groups: 0
Number of logins: 0
Number of failed... (0 Replies)
Discussion started by: mojoman
0 Replies
7. Solaris
1.I wish to perform a Jumpstart installation, the client being Ultra 5 Sparc
and jumpstart Server being ultra 20 AMD system.
2.I think i have done all the procedures right, like putting the mac address of Sparc 1 to /etc/ethers, creating sysidcfg file, and profile file:
3.When I issued the boot... (7 Replies)
Discussion started by: saagar
7 Replies
8. Shell Programming and Scripting
Hey guys,
I have just started getting into shell scripting, ive been self educating myself with it and have run into a snag.
I am trying to make a very simple addition script. The script would be passed a number of parameters (numbers) and it would add them all together. I can do this fine... (2 Replies)
Discussion started by: bert682
2 Replies
9. Shell Programming and Scripting
Hi,
I have automated a build process that does the following activities.
1. check out code from cvs to a specific directory
2. build the revision checked out with 'ANT'
3. integrate the compiled code with the QA/UAT or new environment
(/apps/QA or /apps/UAT or /apps/new directory)
I... (1 Reply)
Discussion started by: yoi2hot4ya
1 Replies
10. UNIX for Advanced & Expert Users
Hi,
I am trying to install FLEX in HP-UX 11 and I am having issues in getting it up. After installing the FLEX I got from the HP-UX site for 11.11, it complained as missing libiconv.sl. Then I got the libiconv installed from the DEPOT got from HP-UX site and now its complaining as... (2 Replies)
Discussion started by: tobsinte
2 Replies
AUTRACE:(8) System Administration Utilities AUTRACE:(8)
NAME
autrace - a program similar to strace
SYNOPSIS
autrace program [-r] [program-args]...
DESCRIPTION
autrace is a program that will add the audit rules to trace a process similar to strace. It will then execute the program passing arguments
to it. The resulting audit information will be in the audit logs if the audit daemon is running or syslog. This command deletes all audit
rules prior to executing the target program and after executing it. As a safety precaution, it will not run unless all rules are deleted
with auditctl prior to use.
OPTIONS
-r Limit syscalls collected to ones needed for analyzing resource usage. This could help people doing threat modeling. This saves space
in logs.
EXAMPLES
The following illustrates a typical session:
autrace /bin/ls /tmp
ausearch --start recent -p 2442 -i
and for resource usage mode:
autrace -r /bin/ls
ausearch --start recent -p 2450 --raw | aureport --file --summary
ausearch --start recent -p 2450 --raw | aureport --host --summary
SEE ALSO
ausearch(8), auditctl(8).
AUTHOR
Steve Grubb
Red Hat Jan 2007 AUTRACE:(8)