Search Results

Search: Posts Made By: DogDay
Forum: AIX 05-10-2006
2,030
Posted By DogDay
What does "sysdumpdev -l" show?
What does "sysdumpdev -l" show?
6,308
Posted By DogDay
Install a signal handler that looks for SIGINT,...
Install a signal handler that looks for SIGINT, or whatever, and delete the file there. I don't program for a living so I can't give you expert advice there.
6,308
Posted By DogDay
just have your perl script check to see if it is...
just have your perl script check to see if it is already running. if so then don't run.
6,660
Posted By DogDay
create a file in the /tmp directory and have your...
create a file in the /tmp directory and have your script check for it. If it is there then dont start. If it is not there then start and delete the file when you're done.
Forum: AIX 04-21-2006
30,262
Posted By DogDay
well, AIX *is* UNIX so why wouldn't they work? ...
well, AIX *is* UNIX so why wouldn't they work?


example...

---begin---

#!/bin/sh

echo Hello World!

---end---
Forum: AIX 04-21-2006
11,052
Posted By DogDay
sysdumpdev -L this will show you information...
sysdumpdev -L

this will show you information on the previous dump.

-----
sysdumpdev [-P] [-p Device | -s Device]
sysdumpdev [-l | -q | -e | -z | -r Host:Path | -p Device | -s Device | -L]...
11,421
Posted By DogDay
start vi without any parameters. then enter ...
start vi without any parameters.

then enter


:set directory=/some/new/dir


and then open your file


:e /my.big.file
7,152
Posted By DogDay
Do you have a domain set on that workstation?
Do you have a domain set on that workstation?
41,189
Posted By DogDay
I don't need the redirect. Tar gets its input...
I don't need the redirect. Tar gets its input from find's STDOUT. The redirection you add generates an error. But your system may be different. I'm working on AIX using KSH.
Forum: AIX 03-05-2006
47,619
Posted By DogDay
You can download Bash for AIX here: ...
You can download Bash for AIX here:
http://www-03.ibm.com/servers/aix/products/aixos/linux/download.html

However, you are wrong in saying that history doesn't exist in AIX.

In the Korn shell...
Forum: AIX 03-04-2006
3,781
Posted By DogDay
Check this link and read about the...
Check this link and read about the /etc/ftpaccess.ctl file.

http://publib.boulder.ibm.com/infocenter/pseries/v5r3/index.jsp?topic=/com.ibm.aix.doc/cmds/aixcmds2/ftpd.htm
Forum: AIX 03-03-2006
9,980
Posted By DogDay
did you try chvg -t 4?
did you try chvg -t 4?
5,480
Posted By DogDay
try this. ...
try this.

https://www.unix.com/showthread.php?p=99821#post99821
Forum: AIX 03-02-2006
9,980
Posted By DogDay
try chvg -t 3 This will change...
try


chvg -t 3


This will change the number of PP/PV by a factor of 3.

See the following.
http://publibn.boulder.ibm.com/doc_link/en_US/a_doc_lib/cmds/aixcmds1/chvg.htm
41,189
Posted By DogDay
perhaps all you need to do is change the order of...
perhaps all you need to do is change the order of the commands.

Try:


tar -cf archive.tar `find . -name somefile`
3,749
Posted By DogDay
And I'm kicking myself because I ${KNEW} that!
And I'm kicking myself because I ${KNEW} that!
41,189
Posted By DogDay
Well perhaps your shell makes the difference. It...
Well perhaps your shell makes the difference. It works fine for me but I think the parenthesis appears more proper.
Forum: AIX 02-24-2006
3,091
Posted By DogDay
check out the sort command. maybe : ...
check out the sort command.

maybe :


sort +1
3,865
Posted By DogDay
There are a couple of ways to address this. ...
There are a couple of ways to address this.

One is by truncating the wtmp/failedlogin files with fwtmp.

From the fwtmp man page:
1. To convert a binary record in wtmp format to an ASCII...
41,189
Posted By DogDay
find . -name "*.sql" -o -name "*.ksh" -o -name...
find . -name "*.sql" -o -name "*.ksh" -o -name "*.ini"

use '-o' to create an OR and then pipe to tar like you had above.
Forum: AIX 02-22-2006
13,846
Posted By DogDay
Take a look at the 'who' command. Also...
Take a look at the 'who' command.

Also consider auditing.

http://publib16.boulder.ibm.com/doc_link/en_US/a_doc_lib/aixbman/security/auditing_overview.htm
3,749
Posted By DogDay
Very roundabout but it works. #...
Very roundabout but it works.

# AFIRST="CJKA|2005-12-10 08.01.30.000000|1111111111|ECI|1112221111|1113331111|1114441111"
# BTHREE="CJKA|2005-12-10...
3,749
Posted By DogDay
And I get to disagree too! #...
And I get to disagree too!

# AFIRST="CJKA|2005-12-10 08.01.30.000000|1111111111|ECI|1112221111|1113331111|1114441111"
# BTHREE="CJKA|2005-12-10...
5
5,084
Posted By DogDay
from gnu grep man page: -A NUM,...
from gnu grep man page:

-A NUM, --after-context=NUM
Print NUM lines of trailing context after matching lines.
Places a line containing -- between contiguous ...
19,003
Posted By DogDay
Too many quotes. grep "$var1 $var2"...
Too many quotes.

grep "$var1 $var2" filename
Showing results 1 to 25 of 83

 
All times are GMT -4. The time now is 12:14 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy