Search Results

Search: Posts Made By: subrkann
1,708
Posted By subrkann
Not that I am aware of. Please wait for others...
Not that I am aware of. Please wait for others to respond.
1,708
Posted By subrkann
The process must be running in order to know the...
The process must be running in order to know the process/command name through PID (process ID). If a process completes then the respective /proc/<PID> directory will be removed.

# ps -elf | grep...
Forum: AIX 05-20-2015
3,293
Posted By subrkann
Check the option configured on "Auto-on"...
Check the option configured on "Auto-on" parameter using "lsvg <vgname>" command. Here is the description of Auto-on parameter:

Auto-on Automatic activation at IPL (yes or no).

If the...
Forum: AIX 05-20-2015
4,341
Posted By subrkann
Good to know it is fixed.
Good to know it is fixed.
Forum: AIX 05-19-2015
4,341
Posted By subrkann
So your AD and DNS services are running in one...
So your AD and DNS services are running in one server. I can see you are able to ping your primary DNS IP without any problems. This is not the issue that I was suspecting, looks like this is...
Forum: AIX 05-19-2015
4,341
Posted By subrkann
Can you try to ping your DNS IP from your machine...
Can you try to ping your DNS IP from your machine and let us know.

# cat /etc/resolv.confThe output of above command will show primary and secondary (if configured) nameserver IP. Make sure you...
Forum: AIX 05-19-2015
5,605
Posted By subrkann
Do you want to know the equivalent option of...
Do you want to know the equivalent option of "grep -v <String> <Filename>" in AIX?

-v flag in grep command is common and standard on all UNIX operating systems. So it will work on AIX.
8,654
Posted By subrkann
To create or edit the cron file of any user from...
To create or edit the cron file of any user from root user. You can use this following command:

# crontab -u <user> -e
If the user wants to create or edit his on cron file by himself (without...
4,419
Posted By subrkann
@ agent.kgb - Which one was the wrong suggestion...
@ agent.kgb - Which one was the wrong suggestion ?

Could you please be specific.
4,419
Posted By subrkann
It is depends on from which directory you are...
It is depends on from which directory you are executing this find command and the number of files exists on your machine with the name of "star_st*".

if that . is / (root directory) and if your...
1,490
Posted By subrkann
Check this following code: # cat...
Check this following code:

# cat MergeInfo.sh
#!/bin/ksh

[[ $# -ne 2 ]] && {
echo "Usage: $0 <File1> <File2>" 1>&2
exit 1;
}

[ -e $1 ] || {
echo "$1 does not...
10,324
Posted By subrkann
You can continue your code/script followed by...
You can continue your code/script followed by this below if statement.

#!/bin/bash

if [ $# -lt "1" ]; then
echo "Usage: $0 <something>"
exit 1;
fi
3,591
Posted By subrkann
awk -F\; '{ if ( match($1,"XYZ")) print "echo...
awk -F\; '{ if ( match($1,"XYZ")) print "echo "$2,$3 " >> File_"$1;
if ( match($1,"ABC")) print "echo "$2,$3 " >> File_"$1;
if ( ( $1 != "XYZ" ) && ( $1 != "ABC" ) ) print...
Showing results 1 to 13 of 13

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