Search Results

Search: Posts Made By: RecoveryOne
Forum: AIX 10-10-2019
15,283
Posted By zxmaus
well I would like to add that you need to make...
well I would like to add that you need to make sure that you always always need to have enough real free memory to support the IOs your system needs to do. If you dont, your system will stop ALL work...
Forum: AIX 10-10-2019
12,734
Posted By zxmaus
we are doing it on the root level without issues...
we are doing it on the root level without issues on vios 3.1.21 which essentially is AIX 7.2.3.3 including managing passwords. IBM does not care.
Forum: AIX 09-12-2019
15,574
Posted By topcat
AIX 7.1 install media has OpenSSH 5.4. Please...
AIX 7.1 install media has OpenSSH 5.4. Please install both the openssl and openssh upgrades from the site linked above.
Forum: AIX 09-08-2019
15,029
Posted By topcat
Ok, tmux is now installed and running! Let's make...
Ok, tmux is now installed and running! Let's make it beautiful :)

1. Set terminal to 256 colour mode by setting TERM in your shell:
export TERM=xterm-256color 2. The IBM supplied terminfo...
Forum: AIX 04-08-2019
11,843
Posted By MadeInGermany
maxuproc limits the number of processes per user....
maxuproc limits the number of processes per user. In other words, each user can run up to maxuproc processes in parallel.
And 10 users can run a total of 10*maxuproc processes.
The limit does not...
2,438
Posted By RudiC
for FN in *.out #...
for FN in *.out # cycle through ALL *.out files (you could narrow it down somewhat by using *account.out)
do H=${FN%%.*} # use...
2,438
Posted By Chubler_XL
Combining your original script with k_manimuthu's...
Combining your original script with k_manimuthu's solution you might end up with something like this:

#!/bin/ksh
set -A allHosts $(ls -1 *.out | awk -F\. '{print $1}' | sort -u | uniq)
echo...
2,438
Posted By RudiC
OK, multiple hostn files. Try for FN in *.out ...
OK, multiple hostn files. Try
for FN in *.out
do H=${FN%%.*}
if [ ! "$H" = "$OH" ]
then OH=$H
{
echo "host,accounts,max,pwd,standard"
...
2,438
Posted By RudiC
How about IFS=. read H REST <<EOF $(echo...
How about
IFS=. read H REST <<EOF
$(echo *.out)
EOF
echo "host,accounts,max,pwd,standard"; echo $H | paste -d, - *.out
host,accounts,max,pwd,standard
host1,root,9,abc pwd=,standard:
,user1,,, ...
2,438
Posted By k_manimuthu
Try the below codes and integrate into your...
Try the below codes and integrate into your script.
#!/bin/sh
#By default array string tokenizer considered as space, But we need entire line.
# So whitespace replaced as _SPACE_
F1=( `cat...
Showing results 1 to 10 of 10

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