Hi I would like to limit number of logins for each user to once. I have a command that only allows me to see the number of logins, (finger -fq username), but i need to actually execute something, perhaps in etc/profile that prevents multiple login sessions by the same user (except for exempted...
Good afternoon
I have been given a task to increase the number of times before a password can be reused. For example, if a user uses "1234GK" as his password today, he cannot reuse that particular password the next time he changes his password. He should only be able to use it again after...
Hi
I figure I should probably start a new thread instead of continuing on the one by barnarasta.
As I was saying, I'm also running 5.0.7 and I need to install a USB printer. Problem is, I think I need step-by-step instruction on how to install from start to finish. Can anyone help me?
Hi I'm also running 5.0.7 and I need to install a USB printer. Problem is, I think I need step-by-step instruction on how to install from start to finish. Can anyone help me?
PHV, This is what I have now
cd /tcb/files/auth
awk -F: '
{for(i=1;i<=NF;++i)if($i~/unsuclog/){d=$i;sub(/.*#/,"",d);print substr(FILENAME,
3),d}}
' ?/* | while read user date
do echo "$user\t`perl -e 'use POSIX;print ctime($date)'`"
done
This is the result
dpalmer Wed Dec 31 19:00:00 1969...
Thanks PHV. I now have this
cd /tcb/files/auth
awk -F: '
{for(i=1;i<=NF;++i)if($i~/unsuclog/)d=$i;sub(/.*#/,"",d);print substr(FILENAME,3),d}
' ?/* | while read user date
do echo "$user\t`perl -e 'use POSIX;print ctime($date)'`"
done
The result however is still undesirable because now it...
Hello, I am trying to track failed login attempts in SCO. I have used a script that I got from a forum here and it has worked to a degree. Here is the script I used:
cd /tcb/files/auth
awk -F: '
{for(i=1;i<=NF;++i)if($i~/unsuclog/)print substr(FILENAME,3),$i}
' ?/* | while read user date
do...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.