Xref: utzoo comp.unix.ultrix:6980 comp.windows.x:35651 Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!zaphod.mps.ohio-state.edu!think.com!spool.mu.edu!snorkelwacker.mit.edu!bloom-beacon!eru!hagbard!sunic!mcsun!corton!ircam!fingerhu From: fingerhu@ircam.fr (Michel Fingerhut) Newsgroups: comp.unix.ultrix,comp.windows.x Subject: Re: guidelines for installation of MIT X11R4 on DECstation 5000 Message-ID: <1991Apr24.070113.6130@ircam.fr> Date: 24 Apr 91 07:01:13 GMT Article-I.D.: ircam.1991Apr24.070113.6130 References: <1991Apr22.221828.2193@ice9.uucp> Organization: IRCAM, Paris (France) Lines: 21 We removed UWS altogether. As to the console mode, we have *two* potential /etc/ttys files, one called /etc/ttys.X11, with the line console "/etc/getty std.9600" vt100 off secure # console terminal and one called /etc/ttys.noX11 with: console "/etc/getty std.9600" vt100 on secure # console terminal while the startup code in /etc/rc.local looks like: if [ -f /usr/local/bin/X11/xdm -a -f /usr/local/lib/X11/xdm/xdm-config ] then cp /etc/ttys.X11 /etc/ttys /usr/local/bin/X11/xdm -config /usr/local/lib/X11/xdm/xdm-config; echo -n ' xdm' >/dev/console else cp /etc/ttys.noX11 /etc/ttys fi You can obviously refine this to allow for recovery if launching xdm fails, etc.