sylssgw 回复于:2004-11-01 14:24:18 |
这是sco unix5.04版本的一个bug,你使用5.06版本的话则不会有这个问题
解决方法: 建一个shell脚本,如命名为/bin/fixttys # fixttys sleep=$1 if [ -z "$sleep" ] ; then sleep=5 fi while [ true ]; do if [ -f /etc/auth/system/ttys-t ]; then tcbck fi sleep $sleep done 再建一个脚本 ,如命名为:/etc/rc2.d/S99fixttys # S99fixttys /bin/fixttys 5 & 更改权限: chmod 711 /bin/fixttys chown bin:bin /bin/fixttys chmod 744 /etc/rc2.d/S99fixttys chown root:root /etc/rc2.d/S99fixttys 重新启动pc机试试 |
zhyesno 回复于:2004-11-01 14:27:27 |
学习一下,Thx... |
klc7328 回复于:2004-11-11 16:16:20 |
盼知该故障产生的原因和解决方法中shell语句的具体含意(特别是[ -f /etc/auth/system/ttys-t ]中的书写格式和内容)和方法.好尽快试用. |
CNL 回复于:2004-11-11 17:45:56 |
-f 如果文件存在
建议到shell版看13问或看本shell入门手册 |