Apr 19, 2007 #1 dellit IS-IT--Management Jan 21, 2007 65 IT Hi, slowness in the request password, about 30 second. Sco OpenServer 5.0.6 Thanks
Apr 19, 2007 #2 PHV MIS Nov 8, 2002 53,708 FR rm -f /etc/auth/system/ttys-t Hope This Helps, PH. FAQ219-2884 FAQ181-2886 Upvote 0 Downvote
Apr 20, 2007 #3 rdevill IS-IT--Management Apr 10, 2007 6 ZA Create a shell script called /bin/fixttys that contains the following: # fixttys sleep=$1 if [ -z "$sleep" ] ; then sleep=5 # default to 5 sec intervals fi while [ true ]; do if [ -f /etc/auth/system/ttys-t ]; then tcbck fi sleep $sleep done Create another script called /etc/rc2.d/S99fixttys that contains these lines: # S99fixttys /bin/fixttys 5 & Finally, run the following commands then reboot the system to start the fixttys script: chmod 711 /bin/fixttys chown bin:bin /bin/fixttys chmod 744 /etc/rc2.d/S99fixttys chown root:root /etc/rc2.d/S99fixttys Upvote 0 Downvote
Create a shell script called /bin/fixttys that contains the following: # fixttys sleep=$1 if [ -z "$sleep" ] ; then sleep=5 # default to 5 sec intervals fi while [ true ]; do if [ -f /etc/auth/system/ttys-t ]; then tcbck fi sleep $sleep done Create another script called /etc/rc2.d/S99fixttys that contains these lines: # S99fixttys /bin/fixttys 5 & Finally, run the following commands then reboot the system to start the fixttys script: chmod 711 /bin/fixttys chown bin:bin /bin/fixttys chmod 744 /etc/rc2.d/S99fixttys chown root:root /etc/rc2.d/S99fixttys