Re: How to interrupt the boot process?

1996-10-13 Thread Vadik Vygonets
On Sun, 13 Oct 1996, Toni Mueller wrote:

 - How can I stop the boot process half-way to get a single-user root shell?

There was a key which I don't remember.  You may type linux single from
lilo prompt.

Vadik.

++_ 
Vadik V. (_`[EMAIL PROTECTED]  alias: [EMAIL PROTECTED]
Vygonets (_.lf  For PGP public key, email me with sibject get pgpkey
Behind every great computer sits a skinny little geek.

--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED]


Re: A couple of Problems

1996-09-09 Thread Vadik Vygonets
On Sun, 8 Sep 1996, Jim Worthington wrote:

 I tried echoing messages from the /etc/X11/Xsession file.  I found that
 this
 file only gets invoked from xdm.  It does not get invoked from xstart or
 xinit.

You meant startx, not xstart.

 Since /etc/X11/Xmodmap is called from /etc/X11/Xsession, it also would
 not be
 invoked from xinit.

Same here.  Just put the line xmodmap /etc/X11/Xmodmap in your
.xsession, that's all you can do :)

 I prefer using xinit over xdm since I use several different windows
 managers.

So what?  Do you want to execute X without any window manager?  Just make
your .xsession look like this:

xmodmap ~/.anything
xterm -geometry +0+0

That's all!

Vad.

++_ 
Vadik V. (_`[EMAIL PROTECTED]  http://www.nether.net/~legolas/
Vygonets (_.lf  PGP public key (ID 9FC1DED9) available from surfnet.nl
User Failure: Please Insert a Bootable Brain



Re: A couple of Problems

1996-09-08 Thread Vadik Vygonets
On Sat, 7 Sep 1996, Jim Worthington wrote:

 It looks as if my /etc/X11/Xsession file is not being read.  Where
 does this get called from?  I suspect that whatever is causing this
 problem is also responsible for my xdm problem. /etc/X11/config also
 looks OK.

Oh I forgot...  it must be called from xdm or xinit.  All the output of
this file must go to ~/.xsession-errors, so try to echo some debug info
from /etc/X11/Xsession and look wether it's in the file.  The permissions
and owner of this file are:
marvin:/etc/X11 ls -lFd /etc /etc/X11 /etc/X11/Xsession
drwxr-xr-x  28 root root 3072 Sep  7 04:14 /etc/
drwxr-xr-x   9 root root 1024 Jun 29 22:54 /etc/X11/
-rwxr-xr-x   1 root root 1534 May  7 18:00 /etc/X11/Xsession*

Good luck.
Vad.

++_ 
Vadik V. (_`[EMAIL PROTECTED]  http://www.nether.net/~legolas/
Vygonets (_.lf  PGP public key (ID 9FC1DED9) available from surfnet.nl
User Failure: Please Insert a Bootable Brain



Re: A couple of Problems

1996-09-07 Thread Vadik Vygonets
On Sat, 7 Sep 1996, Jim Worthington wrote:

 (1) Netscape 3.0B7 - non debian
 
 The backspace key doesn't work.  Is this a setup problem?

Put the following line in your /etc/X11/Xmodmap:
keycode 22 = BackSpace

Vad.

++_ 
Vadik V. (_`[EMAIL PROTECTED]  http://www.nether.net/~legolas/
Vygonets (_.lf  PGP public key (ID 9FC1DED9) available from surfnet.nl
User Failure: Please Insert a Bootable Brain



Re: A couple of Problems

1996-09-07 Thread Vadik Vygonets
On Sat, 7 Sep 1996, Jim Worthington wrote:

 It looks as if my /etc/X11/Xsession file is not being read.  Where
 does this get called from?  I suspect that whatever is causing this
 problem is also responsible for my xdm problem. /etc/X11/config also
 looks OK.

I'm sending you my /etc/X11/Xsession, install it with permissions 755,
owned by root.root, of course.  This is the standard debian Xsession
(maybe it's corrupted on your system).  Run xmodmap /etc/X11/Xmodmap or
re-login after installing this file...  But I can see you're not a newbie
:)

All the best,
Vad.

++_ 
Vadik V. (_`[EMAIL PROTECTED]  http://www.nether.net/~legolas/
Vygonets (_.lf  PGP public key (ID 9FC1DED9) available from surfnet.nl
User Failure: Please Insert a Bootable Brain
#! /bin/sh
#
# /etc/X11/Xsession
#
# This is the global Xsession file.  It is used by both xdm and xinit.

# If /etc/environment is present, source it. It's useful to put default
# environment settings in this file, and then source it both here and in
# /etc/profile.
if [ -f /etc/environment ] ; then
  . /etc/environment
fi

sysmodmap=/etc/X11/Xmodmap
usrmodmap=$HOME/.Xmodmap
sysresources=/etc/X11/Xresources
usrresources=$HOME/.Xresources

startup=$HOME/.xsession

for errfile in \
  $HOME/.xsession-errors ${TMPDIR-/tmp}/xses-$USER /tmp/xses-$USER
do
  if ( cp /dev/null $errfile 2 /dev/null )
  then
chmod 600 $errfile
exec  $errfile 21
break
  fi
done

case $# in
1)
  case $1 in
  failsafe)
if grep -q ^allow-failsafe /etc/X11/config
then
  exec xterm -geometry 80x24-0-0
fi
;;
  esac
esac

if [ -f $sysresources ]
then
  xrdb -merge $sysresources
fi

if [ -f $sysmodmap ]
then
  xmodmap $sysmodmap
fi

if grep -q ^allow-user-resources /etc/X11/config
then
  if [ -f $usrresources ]
  then
xrdb -merge $usrresources
  fi
fi

if grep -q ^allow-user-modmap /etc/X11/config
then
  if [ -f $usrmodmap ]
  then
xmodmap $usrmodmap
  fi
fi

if [ -x $startup ]  grep -q ^allow-user-xsession /etc/X11/config
then
  exec $startup
else
  xterm -ls 
  if [ -e /etc/X11/window-managers ]
  then
for i in `cat /etc/X11/window-managers`
do
  if [ -x $i ]
  then
exec $i
  fi
done
  fi
  if [ -x /usr/X11R6/bin/fvwm ]
  then
exec fvwm
  fi
  exec twm
fi


Re: A couple of Problems

1996-09-07 Thread Vadik Vygonets
On Sat, 7 Sep 1996, James A. Robinson wrote:

 .Xmodmap
 keycode 22  = BackSpace
 keycode 107 = Delete

107 is Delete by default.

 Jim

The .xresources and .emacs code is nice, thanks, I copied it to my
configs.

Vad.

++_ 
Vadik V. (_`[EMAIL PROTECTED]  http://www.nether.net/~legolas/
Vygonets (_.lf  PGP public key (ID 9FC1DED9) available from surfnet.nl
User Failure: Please Insert a Bootable Brain



Re: emacs troubles

1996-09-05 Thread Vadik Vygonets
-BEGIN PGP SIGNED MESSAGE-

On Wed, 4 Sep 1996, Me wrote:

 I'm trying to install emacs. Why, I don't know. I can't find the
 'elf-x11r6lib'. I shouldn't need Xwindows to run this do I?
 Just need pointing in the right direction.

Install the package 'xlib'.

- From Packages.gz:
Package: xlib
[...]
section: x11
depends: libc5, ldso (=1.7.14-1)
conflicts: elf-x11r6lib
provides: xR6shlib, xlibraries, elf-x11r6lib
[...]
description: XFree86 3.1.2 shared libraries
[...]
replaces: elf-x11r6lib
[...]

Vad.

++_ 
Vadik V. (_`[EMAIL PROTECTED]  http://www.nether.net/~legolas/
Vygonets (_.lf  PGP public key (ID 9FC1DED9) available from surfnet.nl
User Failure: Please Insert a Bootable Brain

-BEGIN PGP SIGNATURE-
Version: 2.6.3ia+
Charset: latin1

iQCVAwUBMi3/35YtG3yfwd7ZAQF9YQP+IYhsBMuljv/aW+ooD9qU6I7Df/ma4e87
ZCu6kC979UGDvsCPXMixUnLCrDDbhRHyD0M7kENHOQ4HZMEw5BRyMk0KoDbNVuoN
7rfh2fIjKZ92jMLD4ZMHVtotM0/yhBkT82Dqw9SCuSR48Y8h1ixWgH3XOK1n7rA+
MmbjNFzZt0o=
=Rdsf
-END PGP SIGNATURE-