Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 09 Jul 1996 18:04:17 +0900
From:      Toshihiro Kanda <candy@fct.kgc.co.jp>
To:        questions@freebsd.org
Subject:   getty(8) don't show `login:' prompt
Message-ID:  <199607090904.SAA01318@xxx.fct.kgc.co.jp>

next in thread | raw e-mail | index | archive | help
  I'm using FreeBSD 2.1R.  I wanted to login via modem, but got
difficulty...  Getty didn't show `login:' to remote terminal.

  After a short hacking /usr/src/libexec/getty/, I found a delay fixes
this problem.

-------8<---------------8<---------------8<--------
*** main.c.orig	Tue Jul  9 17:25:31 1996
--- main.c	Tue Jul  9 17:24:54 1996
***************
*** 176,181 ****
--- 176,184 ----
  			sleep(60);
  		}
  		login_tty(i);
+ #if 1 /* XXX Need delay to continue... I don't know why */
+ 		sleep(1);
+ #endif
  	    }
  	}
-------8<---------------8<---------------8<--------

  Anybody know better solution?

candy@fct.kgc.co.jp (Toshihiro Kanda)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199607090904.SAA01318>