RE: PPP connection problem

1997-07-13 Thread wb2oyc

On 02:07:28 Lazar Fleysher wrote:
>
>send (ATDT)
>Serial Connection established
>Using interface ppp0
>Connect:ppp0<-->/dev/ttyS2
>LCP: timeout sending Config-Requests
>Connection terminated
>Receive serial link is not 8-bit clean
>Problem: all had bit 7 set to 0
>
>Does anyone know what the problem is?
>
One thing that can cause this is Xon/Xoff flow control 
interfering with the setup of the low level link (the LCP
process itself).  However, it looks like your serial port 
may not be init'd correctly (not 8N1) by setserial.

Paul

>e-mail to [EMAIL PROTECTED] .


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


adding ipfwadm rules

1997-07-13 Thread Randy Edwards
   I've been playing around with masquerading (which has been going
surprisingly smoothly -- great!:-).  Well, I've got enough confidence in
this that I want to have it come up whenever the machine is up.

   Being the Linux newbie that I am, I was wondering there the most
appropriate place to add the ipfwadm lines would be.

   I'm thinking they'd be a "natural" for adding to /etc/init.d/network, but
I was wondering if this is a good place for such commands or whether there's
a standard place for such things.

 Regards, | Debian GNU/ __  o
 .|/ / _  _  _  _  _ __  __
 Randy|   / /__  / / / \// //_// \ \/ /
 (FidoNet 1:325/805)  |  // /_/ /_/\/ /___/  /_/\_\
 ([EMAIL PROTECTED])  |  ...because lockups are for convicts...



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


Re: Problems with xauth & PAM

1997-07-13 Thread Karl M. Hegbloom
> Juan Jose Quintela writes:

Juan> And when I try to launch a window in a remote machine I
Juan> obtain the following message:

Juan>   ~$ xterm & [1] 5939 ~$ Xlib: connection to "krilin:0.0"
Juan> refused by server Xlib: Client is not authorized to connect
Juan> to Server Error: Can't open display: krilin:0.0

 You have to make an `xauth' entry for the machine running the program
that wants to use the display, on the machine running that program.

 Read the man for xauth, of course, then do:

Here:

`xauth list unix:0.0'

... and highlight everything from `MIT' through the end of the line
with the near button.  Then, in an xterm where you're logged into the
other machine, do: 

`xauth add here:0.0 [PASTE with middle button]'

... and hit enter.  That will make an `xauth' entry on the remote
machine, so it can authenticate itself for display authorization.

 The reason it needs authorization is that X Windows programs have the
ability to send synthetic events to other programs through the display
server.  (I'm not an expert, yet; I've got the XBooks pack, but have
read only one or two of the documents.)  Programs running on separate
computers can rendevous through a third machine's Xserver, where you
sit, controlling programs on several computers whos displays are in
front of you.  This means drag-and-drop operations across machines and
architectures can be done, and that a subwindow inside an application
can be run by a program on the mainframe, while the app runs on your
workstation, and things like that.

 It wouldn't be safe if just anyone could put a window up on your
display and watch what you type, or send events to your programs, from
anyplace on the global internet, without proper authorization.

 I think that's all there is wrong.  I don't think anything from X
uses PAM yet.


-- 
mailto:[EMAIL PROTECTED] (Karl M. Hegbloom)
http://www.inetarena.com/~karlheg
Portland, OR  USA
Debian GNU 1.3  Linux 2.1.36 AMD K5 PR-133


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


Re: Off-topic: Making ALT be the META key

1997-07-13 Thread Karl M. Hegbloom
> "David" == David R Kohel <[EMAIL PROTECTED]> writes:

David> Did anyone come up with a solution to this one?  Is this
David> controlled by emacs of X keymapping (or both)?

I've found `xkeycaps' to be invaluable for setting X Windows keysyms.


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


Re: Non-interactive HTTP retrival *with* POST verb ?

1997-07-13 Thread Mark Boyns
12 Jul 1997 [EMAIL PROTECTED] writes:

>   I posted a few days back asking about a non-intercative way to fetch
>   stuff using HTTP. Some kind soul pointed me to wget. Neat stuff, but it
>   only took a couple of dys to reach it's limits :-( I am trying to fetch
>   a daily weather forecats which apparently needs the POST verb
>   (whatever that is). wget does not support this. 
> 
>   Next suggestion ?

`lynx -post_data' or the POST command that comes with the perl LWP
module.





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


Re: adding ipfwadm rules

1997-07-13 Thread Eloy A. Paris
Randy Edwards ([EMAIL PROTECTED]) wrote:

:I've been playing around with masquerading (which has been going
: surprisingly smoothly -- great!:-).  Well, I've got enough confidence in
: this that I want to have it come up whenever the machine is up.
: 
:Being the Linux newbie that I am, I was wondering there the most
: appropriate place to add the ipfwadm lines would be.
: 
:I'm thinking they'd be a "natural" for adding to /etc/init.d/network, but
: I was wondering if this is a good place for such commands or whether there's
: a standard place for such things.

Well, you should not modify or touch something that already exists, like 
/etc/init.d/network. You should definitely create your own script under
/etc/init.d (call it ipfwadm, for example) and the run update-rc.d 
(see man update-rc.d) to update the links to /etc/init.d/ipfwadm in the
/etc/rc?.d directories.

A good start point is this script that [EMAIL PROTECTED]
(Jaldhar H. Vyas) posted to Debian-user a couple of weeks ago:

 -- BEGIN --
case "$1" in
  start)
 /sbin/ipfwadm -F -a m -S 192.168.2.0/24 -D 0.0.0.0/0
 /sbin/ipfwadm -F -p deny
 /sbin/ipfwadm -I -p accept
 /sbin/ipfwadm -O -p accept
 echo "Firewall and masquerading rules set"
;;
  stop)
 /sbin/ipfwadm -F -f
 /sbin/ipfwadm -I -f
 /sbin/ipfwadm -O -f
;;
  *)
echo "Usage: /etc/init.d/ipfw {start|stop}"
exit 1
esac

exit 0

 -- END --

Modify the above script acording to your needs and put it in 
/etc/init.d/ipfwadm, then run update-rc.d.

Regards,

E.-

-- 

Eloy A. Paris
Information Technology Department
Rockwell Automation de Venezuela
Telephone: +58-2-9432311 Fax: +58-2-9430323


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


Re: adding ipfwadm rules

1997-07-13 Thread A. M. Varon
On Sat, 12 Jul 1997, Randy Edwards wrote:

>Being the Linux newbie that I am, I was wondering there the most
> appropriate place to add the ipfwadm lines would be.
> 
>I'm thinking they'd be a "natural" for adding to /etc/init.d/network, but
> I was wondering if this is a good place for such commands or whether there's
> a standard place for such things.

Strongly suggest that you make an init script for it in /etc/init.d. And
running update-rc.d afterwards. 

You never know, /etc/init.d/network might be changed by debian or
something and your config. might be wiped out.

regards,


 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 Andre M. Varon Lasaltech, Incorported
 Technical Head Fax-Tel: (034)433-3520
 e-mail  : [EMAIL PROTECTED]
 web page: http://www.lasaltech.com/andre.html
 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=






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


Re: Netconfig isnt available

1997-07-13 Thread A. M. Varon
On Fri, 11 Jul 1997, K.Y.Lo wrote:

> Hi
> 
> I cant find 'netconfig' on Debian Linux 1.3. I am going to set up
> my ethernet TCP/IP but I need 'netconfig' to install so much easier.
> 
> do you know where is 'netconfig'?

netconfig is a script file used in slackware. It's not compatible
with debian, but if you hacked it a bit, it can be compatible.  edit
/etc/init.d/network file if you want to change your settings in the
ethernet or something. 

regards,

 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 Andre M. Varon Lasaltech, Incorported
 Technical Head Fax-Tel: (034)433-3520
 e-mail  : [EMAIL PROTECTED]
 web page: http://www.lasaltech.com/andre.html
 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=






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


Enlightment packaging

1997-07-13 Thread Amos Shapira
Hi,

I though I saw that someone was packaging the Enlightment window manager
(http://www.cse.unsw.edu.au/~s2154962/enlightenment, US mirror at
http://www.kickit.org/enlightenment/), but I can't find it in
hamm's Packages list.

Does anyone know anything about this?

Thanks,

--Amos

--Amos Shapira| "Of course Australia was marked for
133 Shlomo Ben-Yosef st.  |  glory, for its people had been chosen
Jerusalem 93 805  |  by the finest judges in England."
ISRAEL   [EMAIL PROTECTED]  | -- Anonymous


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


probem going bash 1.14.7-2 to 2.0-3

1997-07-13 Thread Douglas Stewart
> Preparing to replace bash 1.14.7-2 (using .../base/bash_2.0-3.deb) ...
> Unpacking replacement bash ...
> Setting up bash (2.0-3) ...
> sh: can't resolve symbol 'rl_filename_quoting_function'
> dpkg: error processing bash (--install):
>  subprocess post-installation script killed by signal (Segmentation fault), 
> core
>  dumped
> Errors were encountered while processing:
>  bash
> dpkg install failed.
> What now [?,d,r,q,fd,fc,p] (defer):

Anyone have an idea what caused this?  I was upgrading to debian 1.3
and I got this.  It was quite a nightmare as you can probably
imagine. :/

I had to find the rex bash and then i couldn't install it because
sh was broken.  I ended up having to ftp the package to another
machine (binutils wasn't completely set up yet, and was missing
libbfd), use ar to extra the files, and gunziip and untar the data
file and copy the binary over.  Whew, at least I survived this.

-douglas


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


syslogd / hostname -> mismatch?

1997-07-13 Thread Remco van de Meent
Hey


When syslogd starts up (/etc/init.d/sysklogd), it uses in de logfiles
'cal052204'. But I want it to use 'oloon'.

[EMAIL PROTECTED]:~]$ hostname
oloon

[EMAIL PROTECTED]:~]$ hostname --fqdn
cal052204.student.utwente.nl

[EMAIL PROTECTED]:~]$ cat /etc/hosts
127.0.0.1   localhost
130.89.230.134  cal052204.student.utwente.nl oloon

[EMAIL PROTECTED]:~]$ cat /etc/hostname
oloon


I think everything should be all right in this case, looking at this output.
What makes it even stranger: when I stop,start syslogd (using the sysklogd
file), it uses 'oloon'..

Any idea how I should fix this? I'm using Debian 1.3.

Thanks,


Remco.

-- 
// Remco van de Meent   
//   email: [EMAIL PROTECTED]
//   www: http://oloon.student.utwente.nl
//   " Never make any mistaeks. "


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


Re: probem going bash 1.14.7-2 to 2.0-3

1997-07-13 Thread Lindsay Allen
I had the same experience, but on a headless machine.  Once I shut it down
I could not log in again.  The installation was just a test bed so I
reinstalled from scratch. 

Lindsay
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Lindsay Allen   <[EMAIL PROTECTED]>  Perth, Western Australia
voice +61 8 9316 2486modem +61 8 9364-9832  32S, 116E
http:  http://rolf.ece.curtin.edu.au/~lindsay   debian linux
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

On Sat, 12 Jul 1997, Douglas Stewart wrote:

> > Preparing to replace bash 1.14.7-2 (using .../base/bash_2.0-3.deb) ...
> > Unpacking replacement bash ...
> > Setting up bash (2.0-3) ...
> > sh: can't resolve symbol 'rl_filename_quoting_function'
> > dpkg: error processing bash (--install):
> >  subprocess post-installation script killed by signal (Segmentation fault), 
> > core
> >  dumped
> > Errors were encountered while processing:
> >  bash
> > dpkg install failed.
> > What now [?,d,r,q,fd,fc,p] (defer):
> 
> Anyone have an idea what caused this?  I was upgrading to debian 1.3
> and I got this.  It was quite a nightmare as you can probably
> imagine. :/
> 
> I had to find the rex bash and then i couldn't install it because
> sh was broken.  I ended up having to ftp the package to another
> machine (binutils wasn't completely set up yet, and was missing
> libbfd), use ar to extra the files, and gunziip and untar the data
> file and copy the binary over.  Whew, at least I survived this.
> 
> -douglas
> 
> 
> --
> TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
> [EMAIL PROTECTED] . 
> Trouble?  e-mail to [EMAIL PROTECTED] .
> 
> 


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


Re: probem going bash 1.14.7-2 to 2.0-3

1997-07-13 Thread Lindsay Allen

I must correct my earlier message on this subject. 

I certainly did get that error message, but I was not upgrading bash.
I was working through  .../disks-i386/1997-05-30/Upgrading except that I
did it slightly out of order, like this.

dpkg -i dpkg.deb
dpkg --clear-avail
dpkg -i ldso.deb
dpkg -i libc5.deb
dpkg --purge --force-depends texbin
dselect

I am a little uncertain now as to exactly when it bombed.  The upgrade of
dpkg may or may not have been successful.  The upgrades of ldso and lib5c
definitely failed and I never did get to texbin.

Lindsay


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


Dual Pentium Machines

1997-07-13 Thread Greg Vence
Hello,

Its time to upgrade...  What dual Pentium machines do people like and
what have known problems?  I looked in LDP and didn't see anything
regarding this topic.

Thanx -- Greg.


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


fte

1997-07-13 Thread Remco van de Meent
Hey

Is it true that /usr/bin/fte is missing in the fte-package? I have
/usr/X11R6/bin/xfte and /usr/bin/{c,v}fte, but no /usr/bin/fte.
Is that correct?

Remco

-- 
// Remco van de Meent   
//   email: [EMAIL PROTECTED]
//   www: http://oloon.student.utwente.nl
//   " Never make any mistaeks. "


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


[no subject]

1997-07-13 Thread jmgray
Hi, I'm trying to install a patch for my D-Link D600 ethernet adapter, but
am getting the following error.  Has anyone run into these types of errors
when doing this install?   Thanks in advance!


Error msg:

 "loading device 'eht1'...
 eth1: D-Link DE-600 pocket adapter: not at I/O 0x378
 /lib/modules/2.0.29/net/de600.o: init_module: Device or resource busy

 Installation failed."



__
Jim Gray
[EMAIL PROTECTED]



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


Questions from a future user

1997-07-13 Thread Shaleh
What are Debian's pro's and con's?  How hard is its PPP setup and how
stable are its PPP connections.  I will be using my box to dial an ISP
and do school work.


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


Re: Problems with Debian 1.3 new installation and ThinkPad 365XD.

1997-07-13 Thread Noel Yap
On Fri Jul 11 17:03:41 -0500 1997, Timothy J. Miller <[EMAIL PROTECTED]> wrote:
>   I'm attempting a new install on the ThinkPad 365XD w/800x600
> display, 40Mb RAM, CDROM and external floppy; at boot, the system reports
> root.bin loaded, then linux, then it simply halts.

I have a similar system.  Bootup from the install disks for me was
always *extremely* flaky.  I've found that if you wait until the
system hangs, turn off the machine, then turn it back on again (and
mutter the right incantation :-), it will boot up normally.  Lilo will
also hang the machine, but LOADLIN works well.  So you'll have to keep
some portion of your W*n95 partition and boot up from an appropriate
batch file.

>   I've created 3 rescue disks on three different diskettes from two
> different downloads, and all have exhibited the same problem.  Booting
> "linux floppy=thinkpad" has no observable effect.  All were built from
> this machine, a ThinkPad 760LD running Debian 1.3 (that I'm *trying* to
> replace).

NOTE: you don't need to use this switch for the 365XD (at least on
mine).  I think this problem has been fixed on later ThinkPads. YMMV.

>   The ThinkPad 760LD is running an upgrade from Debian 1.2.  I
> didn't have any boot problems with the initial Debian 1.1 installation on
> the 760LD, *or* with the complete reinstall I did with Debian 1.2.  The
> linux-2.0.30 without modifications; in the past it has also booted the
> 2.0.27, 28, and 29.
> 
>   I've not ever had any significant base install problems on
> various ThinkPads until this one (365XD).  Anyone have any ideas?
> 
> -- 
> Cerebus <[EMAIL PROTECTED]>
> PGP Fingerprint: 
>  BC AB 28 19 A6 A4 FF 5B  CA 4D B4 03 3A A7 F4 5C

X is also a pain to install if you have a DSTN display.  There's
something funky with the Xfree86 3.3 SVGA server and the 365XD DSTN
display, so you might want to install Xfree86 3.2 instead.  I hear
that things are easier with a TFT.

Noel
-- 
Immanuel V. Yap e-mail: [EMAIL PROTECTED]
Graduate Student[EMAIL PROTECTED]
Plant Breeding  office: (607) 255-3103
320 Bradfield Hall  home:   (607) 256-7034
Cornell Univeristy
Ithaca, NY 14853


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


Re: 1.3.1 font problem in X

1997-07-13 Thread Noel Yap
On Fri Jul 11 19:29:26 -0400 1997, digger vermont <[EMAIL PROTECTED]> wrote:
> Hello,
>   I upgraded from 1.3.0 to 1.3.1 which was mostly an X upgrade to 3.3-3.
> Now, none of the upgraded and important (misc, 75dp1, and 100dpi I believe) 
> font paths are recognized. I tried running mkfontdir in the individual 
> direcories but it didn't help.   I tried both the stock X servers and 
> AcceleratedX.  Fortunately Xaccel has a few fonts so I can get X up and 
> running.  Help please!
> -- 
> digger

I lost a whole day trying to figure this out myself.  Xfree86 3.3
comes with gzip'd fonts, which are not recognized by the old 3.2 X
servers.  Either upgrade your server or gunzip your fonts.  I did the
latter myself, since the 3.3 SVGA server doesn't like my ThinkPad
display. :-(

Noel
-- 
Immanuel V. Yap e-mail: [EMAIL PROTECTED]
Graduate Student[EMAIL PROTECTED]
Plant Breeding  office: (607) 255-3103
320 Bradfield Hall  home:   (607) 256-7034
Cornell Univeristy
Ithaca, NY 14853


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


Re: Questions from a future user

1997-07-13 Thread Michael B. Taylor


On Sun, 13 July 1997, Shaleh wrote:

> What are Debian's pro's and con's?  How hard is its PPP setup and how
> stable are its PPP connections.  I will be using my box to dial an ISP
> and do school work.

Well, here is my 2 cents :

Pros:
Large, competent volunteer development staff
Automated installation and upgrade over ftp using dpkg and dselect
Timely, friendly, competent help with problems via this list
There is a Debian package for almost anything you could want

Cons:   None not shared by any other Linux distribution, or any other
large software project of any type, for that matter.


PPP stability:  I lose link maybe once every two months.  I know for sure
that some of that is attributable to my isp (university).  Other times
might be phone lines.

PPP setup:  Pretty easy.  If you have a working ppp options file and
chatscript, just stick them in.  No kernel recompiles, ect like in the old
days.  For a new setup, just edit the /etc/ppp.options_out and the
/etc/ppp.chatscript files.  Bring the link up and down by running the pon
and poff commands (shell scripts) as root.  Debug your chatscript by
looking in /usr/adm/syslog.  If you have a PnP modem, you may need to set
up your modem using the isapnptools package.

Mike



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


Re: Off-topic: Making ALT be the META key

1997-07-13 Thread Joachim Trinkwitz
"David R. Kohel" <[EMAIL PROTECTED]> writes:

> Did anyone come up with a solution to this one?
> 
> Is this controlled by emacs of X keymapping (or both)?
> 
> I had the same problem (with emacs) until it spontaneously corrected
> itself.
> 
> David
> 
> >   I recently installed XEmacs, and would like to have it recognize my ALT
> > key as the META key (which I thought was supposed to be the default, but
> > isn't on my machine). I played around with xmodmap some, but didn't
> > accomplish anything useful. This is an i386 platform, so the HP fixes for
> > it won't help :) Thanks.
> 
I think it's configurable in the XF86Config file. In mine there are this
lines:
# To set the LeftAlt to Meta, RightAlt key to ModeShift, 
# RightCtl key to Compose, and ScrollLock key to ModeLock:

LeftAlt Meta
RightAltModeShift
#RightCtlCompose
#ScrollLock  ModeLock
By default, all lines were commented out. Uncomment the first one (the second
is for german keyboards, I think) and try out, if it works.

Hope it helpsJoachim

-- 
Joachim Trinkwitzemail: [EMAIL PROTECTED]
CIP-Pool Anglistik, Germanistik, phone: 0228-737565
  Romanistik, Skandinavistik fax:   0228-737479
Rheinische Friedrich-Wilhelms-Universitaet   Am Hof 1d,  D-53113 Bonn,  Germany


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


Re: PPP dial-up script working at last.

1997-07-13 Thread Joachim Trinkwitz
David Densmore <[EMAIL PROTECTED]> writes:

> I finally got my PPP dial-up script working.  Thanks to everyone who
> responded to my request for help.
> 
> My real problem was simple ignorance - I thought all of the ppp files were
> in /etc/ppp, which is why I didn't know about /etc/ppp.chatscript and
> /etc/ppp.options_out - can you believe it?
> 
I _can_ believe it and I don't think it's your fault -- after there is a
directory /etc/ppp all the files _should_ be there, IMO. As it is now, the
configuration of ppp is not easy to understand.
By the way, there is no solution for redialing of several phone numbers, as I
can see (not even with the dunc-package).

Greetings,Joachim

-- 
Joachim Trinkwitzemail: [EMAIL PROTECTED]
CIP-Pool Anglistik, Germanistik, phone: 0228-737565
  Romanistik, Skandinavistik fax:   0228-737479
Rheinische Friedrich-Wilhelms-Universitaet   Am Hof 1d,  D-53113 Bonn,  Germany


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


Slow PLIP

1997-07-13 Thread Lazar Fleysher
HI

I am trying to connect my linux computer with dos one using plip
On dos machine I use plip packet driver form 
ftp://ftp.crynwr.com/drivers/plip.zip

The connection can be established but it is very very slow.
If I use dos on both and connect them using interlnk, intersrv,
I get about 60Kb/sec transfer rate, whereas via the plip packet 
driver and ftp: only 3Kb.

On linux machine I get error messages:
plip0: transmit timeout(1,c7)
plip0: transmit timeout(1,87)
plip0: transmit timeout(1,d7)
in different order.

Could somebody suggest something?

Thank you,

ZORO


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


md5sum failure

1997-07-13 Thread Chris Smith
Recently downloaded the Debion Official CD 1.3.1. When I ran the md5sum 
program against it, I received a failure in all 85 files. Since I haven't 
experienced any other corruption problems I am at a loss to explain this.
Newbie at Linux, used NT4 to download and ran the posted DOS md5sum 
(md5sum.exe -cv md5sums) against the download.
Thanks.


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


Re: PPP dial-up script working at last.

1997-07-13 Thread mark powers

[EMAIL PROTECTED] said:

> -- after there is a directory /etc/ppp all the files _should_ 
> be there, IMO. As it is now, the configuration of ppp is not easy to 
> understand.

Agreed, though a simple question-and-answer PPP configuration script ought not 
to be too difficult. I have one from Sunsite that does the trick, although 
under the hood all it does is write your chatscript and leave a script that 
does naught but invoke pppd with the proper arguments ;) but I had to go 
through two or three for the scrap heap before finding it. Smail configuration 
for Debian was impressive in its simplicity - any thoughts on a "Debian PPP 
setup script" along the same lines?

 - Mark Powers - "living inside the system is like riding
through the countryside in a bus driven
by a maniac bent on suicide." - Thomas Pynchon
 -- sudweste @ mint dot net -- mpower31 @ maine dot maine dot edu --



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


Re: nobody is running find at too high a priority

1997-07-13 Thread W Paul Mills
On 10 Jul 1997 [EMAIL PROTECTED] wrote:

> I wrote:
> > I guess the Debian developers are all nightowls.  7AM is *not* early enough
> > to be scheduling this sort of thing.
> 
> Kevin Dalley writes:
> > Since this is an entirely individual item which cannot please everybody,
> > I suggest that you change /etc/crontab to meet your needs.
> 
> I already have, but it is clear from the questions being posted that not
> everyone knows to do this.  Looks like a documentation problem.  I also see
> no reason why these chores should be run at normal priority.

I am not so sure this is a documentation problem. More of a failure
to read.

   http://www.sound.net/~wpmills/  -
: W. Paul Mills  : Bill, I was there several years ago. :
: Topeka, Kansas, U.S.A. : Why would I want to go back tomorrow?:
: [EMAIL PROTECTED] : Where were you!  :
: [EMAIL PROTECTED]  :  :
: [EMAIL PROTECTED]  : Linux: Tomorrow's operating system,  :
: [EMAIL PROTECTED]  :here, today.  :
: [EMAIL PROTECTED]   :  :
: compuserve 70023,1750  : #define MY_TRUE_LOVE computer:
 --  http://homepage.midusa.net/~wpmills/  -


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


XTerm on XFree86 3.3-3 trouble

1997-07-13 Thread Martin . Bialasinski
Hi,

I have a strange XTerm behaviour after upgrading to XFree 3.3-3.

When I start mc in a xterm I have trouble with the F-Keys:

F1 gives P
F2 gives Q 
F3 gives R 
F4 gives S

F5 - F10 work just fine.

When I start mc in a rxvt, all F-Keys work just fine.

Has someone else encountered this problem ?

Here my keyboard config:

# File generated by xf86config.

Section "Keyboard"

Protocol"Standard"

AutoRepeat  500 5

Xleds  3

Xkbkeycodes "xfree86"
XkbTypes"default"
XkbCompat   "default"
XkbSymbols  "en_US(pc102)+de"
XkbGeometry "pc"

EndSection

Ciao,
Martin


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


Re: md5sum failure

1997-07-13 Thread Dale Scheetz
On Sun, 13 Jul 1997, Chris Smith wrote:

> Recently downloaded the Debion Official CD 1.3.1. When I ran the md5sum 
> program against it, I received a failure in all 85 files. Since I haven't 
> experienced any other corruption problems I am at a loss to explain this.
> Newbie at Linux, used NT4 to download and ran the posted DOS md5sum 
> (md5sum.exe -cv md5sums) against the download.
> Thanks.
Sounds like you may not have set the download for binary transfer. On a
typical ftp session I type "binary", to set the tranfer mode to binary,
then type "hash", to give a visual indication of the transfer. If I am
going to do multiple file transfers with mget, then I also type "prompt"
so I don't have to say "y" for each file.
If you don't set binary mode for transfers, ascii transfer mode is usually
the default, resulting in only 7/8ths of the data getting sent to the
target file.

Luck,

Dwarf
-- 
_-_-_-_-_-_-  _-_-_-_-_-_-_-

aka   Dale Scheetz   Phone:   1 (904) 656-9769
  Flexible Software  11000 McCrackin Road
  e-mail:  [EMAIL PROTECTED] Tallahassee, FL  32308

_-_-_-_-_-_- If you don't see what you want, just ask _-_-_-_-_-_-_-


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


Re: Questions from a future user

1997-07-13 Thread Karlheinz Nolte
Shaleh wrote:
> 
> What are Debian's pro's and con's?  How hard is its PPP setup and how
> stable are its PPP connections.  I will be using my box to dial an ISP
> and do school work.
> 

Hi,

I think Debian biggest advantage is the intelligent package handling.

PPP is very good pre-configured. I use it here without any problems.
Normaly you have to edit two files (/etc/ppp.chatscript and
/etc/ppp.options_out) and perhaps /etc/ppp/pap-secrets (if your provider
uses the PAP authentification method) - and you should get a connection.
In /usr/doc/ppp you will find more information.

-CU
-- 
Karlheinz Nolte
mailto:[EMAIL PROTECTED]
http://home.t-online.de/home/Karlheinz.Nolte


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


Re: Toshiba laptop resume mode

1997-07-13 Thread Mike Orr
On Mon, 7 Jul 1997, Bill Moran wrote:

> I am trying to install debian on a Toshiba laptop 410 CS and am having
> trouble making resume mode work. When I try to resume the computer
> hangs.

I have a Toshiba Satellite T2130CT; I don't know how much that differs
internally from yours.

Suspend/resume works wonderfully.  I just close the cover and it suspends. 
I had to go back to the Dos partition and enable it with the Windows
Control Panel.  Mine also has that function on the keyboard, but I forget
which of the function-key icons is for suspend (could it be the lock? or
the water faucet? or the suitcase?). 

Does the screen show where you left off and then it hangs, or what does it
show on the screen when you restart?  If I leave my computer suspended and
unplugged for three days or so, I get a blank screen saying "RESUME
FAILURE".  I then press a key and it reboots.  Naturally the filesystems
don't get unmounted cleanly when it dies, so fsck complains, but I have
not had any major problems with it.

** MICHAEL SCOTT ORR <[EMAIL PROTECTED]> *
**  1405 NE 56th Street, Seattle, WA 98105 USA *   English *
**  Tel: +1 (206) 522-9627, fax: 328-6209  *Russki * 
**  Work: [EMAIL PROTECTED] * Esperanto *
* (Insert silly quote here) 


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


Re: PPP setup (was: Questions from a future user)

1997-07-13 Thread Brandon Mitchell
> On Sun, 13 July 1997, Shaleh wrote:
> 
> > What are Debian's pro's and con's?  How hard is its PPP setup and how
> > stable are its PPP connections.  I will be using my box to dial an ISP
> > and do school work.

I just did a test install using the 1.3 official disk (from lsl).  I took
some notes of exactly what was needed for me to set ppp up:
1) edit /etc/ppp.chatscript and /etc/ppp.options_out, pretty straight
  forward using the comments in chatscript, never had to change the
  options.
2) chgrp and chmod ppp.chatscript and ppp.options_out so it is readable by
  members of group dip.
3) add appropriate users to the dip group (/etc/group)
4) set up the dns in /etc/resolv.conf (or say you are connected to a
  network during the installation process, it will prompt for this).
5) make a link from /dev/modem to the appropriate /dev/ttyS?

All done, use pon / poff to start and stop the ppp connection (or you
could use diald I guess, never used it myself).  Is there a step by step
in the install notes like this?

HTH,
Brandon

-
Brandon Mitchell E-mail: [EMAIL PROTECTED]
  Homepage: http://www.geocities.com/SiliconValley/7877/home.html

"We all know Linux is great...it does infinite loops in 5 seconds."
--Linus Torvalds


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


Re: PPP dial-up script working at last.

1997-07-13 Thread Martin . Bialasinski
On 11 Jul, Joachim Trinkwitz wrote:

> By the way, there is no solution for redialing of several phone numbers, as I
> can see (not even with the dunc-package).
> 
If you can use X, there is the xisp package. It can try several
numbers, redail, handle multiple ISPs, multiple ip-up/down, easy to set
up.

It is really cool. For multiple ip-up/down support, you have to use
version 2.0 from hamm.

Ciao,
Martin




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


dpkg not installing modules

1997-07-13 Thread Barry King

Upgraded to 1.3 from 1.2 -- noticed the lack of appletalk and netware
modules in the base distribution.  dpkg would also have trouble getting the
module .o files into the appropriate library directories.  After a little
work with dpkg, depmod and modconf, I got appletalk and ipx modules up and
running, but I still can't get ncpfs to generate ncpfs.o anywhere for
modconf to detect install into the kernel.  Without them, modprobe (at
startup and manually) generates a "can't find module ncpfs".

I am probably forgetting something really basic (like don't run your
machine through a mangle), but I can't for the life of me figure out what.

Rgds,

BK



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


Re: PPP dial-up script working at last.

1997-07-13 Thread bash
On Sun, 13 Jul 1997, mark powers wrote:

> 
> [EMAIL PROTECTED] said:
> 
> > -- after there is a directory /etc/ppp all the files _should_ 
> > be there, IMO. As it is now, the configuration of ppp is not easy to 
> > understand.
> 
> Agreed, though a simple question-and-answer PPP configuration script ought 
> not 
> to be too difficult. I have one from Sunsite that does the trick, although 
> under the hood all it does is write your chatscript and leave a script that 
> does naught but invoke pppd with the proper arguments ;) but I had to go 
> through two or three for the scrap heap before finding it. Smail 
> configuration 
> for Debian was impressive in its simplicity - any thoughts on a "Debian PPP 
> setup script" along the same lines?


Concerning PPP:

I picked up a script from a friend that makes setting up ppp
extremely easy.  A few Q&A's and it's done.  I slightly modified it to
write to /etc/ppp.chatscript and /etc/ppp/ppp-on-dialer, and when
summoning the ppp daemon I added the options: persist crtscts 
ipcp-accept-remote ipcp-accept-local modem. It takes care of resolv.conf 
as well by prompting the user for their ISP's domain name and name 
server's ip.  However, it doesn't address ppp.options_out.  Under most
configs this should not be a huge problem.  

~bash

#!/bin/sh
###
#
#   PPPSETUP  --  Script to set up pppd
#   History:
# 7/21/95 RSL Script created (v1.0)
# 9/15/96 RSL Added code to get the ISP's domainname (v1.1)
# 9/19/96 RSL Revamped interface to use the 'dialog' 
# program. (v1.2)
###

VERSION="1.2"

echo > /tmp/txtTEMP$$
echo "PPPSETUP v$VERSION" >> /tmp/txtTEMP$$
echo >> /tmp/txtTEMP$$
echo "Written by Robert S. Liesenfeld <[EMAIL PROTECTED]> " >> 
/tmp/txtTEMP$$
echo >> /tmp/txtTEMP$$ 
echo >> /tmp/txtTEMP$$
echo >> /tmp/txtTEMP$$ 
echo "  press [enter]" >> /tmp/txtTEMP$$

clear

dialog --title "PPPSETUP v$VERSION" --msgbox "`cat /tmp/txtTEMP$$`" 10 80

if [ -f README.pppsetup ]; then
dialog --title README --textbox README.pppsetup 20 80
fi

if [ ! `whoami` = "root" ]; then
dialog --title "Must Be Root" --msgbox "You must be root to run this 
script." 10 80
exit 1
fi

while [ -z "$PHONENUM" ]
do
echo > /tmp/txtTEMP$$
echo "To begin setting up your PPP connection, I need to know a"  >> 
/tmp/txtTEMP$$
echo "few things.  For starters, what is the phone number of your"  >> 
/tmp/txtTEMP$$ 
echo "Internet service provider?"  >> /tmp/txtTEMP$$ 
echo  >> /tmp/txtTEMP$$ 
echo "(Note: in the USA, use *70, [comma required!] to turn off call"  
>> /tmp/txtTEMP$$ 
echo " waiting.)"  >> /tmp/txtTEMP$$ 
echo  >> /tmp/txtTEMP$$ 

dialog --title "Phone Number" --inputbox "`cat /tmp/txtTEMP$$`" 20 80 
2> /tmp/rspTEMP$$
PHONENUM="`head -1 /tmp/rspTEMP$$`"
if [ -z "$PHONENUM" ]; then
clear
echo "PPP configuration cancelled."
exit 0
fi
done

if [ -e "/dev/modem" ]; then
echo > /tmp/txtTEMP$$ 
echo -n "Found your modem...(" >> /tmp/txtTEMP$$ 
echo -n `ls -l /dev/modem | cut -b56-80` >> /tmp/txtTEMP$$ 
echo ")" >> /tmp/txtTEMP$$ 
echo >> /tmp/txtTEMP$$ 

dialog --title "Modem Found" --msgbox "`cat /tmp/txtTEMP$$`" 10 80
DEVICE="/dev/modem"
else
while [ -z "$DEVICE" ]
do
echo > /tmp/txtTEMP$$ 
echo "Secondly, what is the name of your modem device?" >> 
/tmp/txtTEMP$$ 
echo >> /tmp/txtTEMP$$  

dialog --title "Modem Device" --menu "`cat /tmp/txtTEMP$$`" 20 
80 12 \
cua0 "/dev/cua0 (COM1: under DOS)" \
cua1 "/dev/cua1 (COM2: under DOS)" \
cua2 "/dev/cua2 (COM3: under DOS)" \
cua3 "/dev/cua3 (COM4: under DOS)" \
2> /tmp/rspTEMP$$
DEVICE="`cat /tmp/rspTEMP$$`"
if [ -z $DEVICE ]; then
clear
echo "PPP configuration cancelled."
exit 0
fi

DEVICE="/dev/$DEVICE"
done
fi

echo > /tmp/txtTEMP$$
echo "What baud rate is your modem?" >> /tmp/txtTEMP$$
echo >> /tmp/txtTEMP$$
dialog --title "Baud Rate" --menu "`cat /tmp/txtTEMP$$`" 20 80 12 \
115200 "115KBps  - Nirvana!" \
38400  "38.4KBps - Hangin' ten on the 'net!" \
19200  "19.2KBps - Better known as 14.4" \
9600   "9600bps  - Kinda pokey, aren'tcha?" \
2400   "2400bps  - God help you.  :>" 2> /tmp/rspTEMP$$

BAUDRATE="`cat /tmp/rspTEMP$$`"
if [ -z $BAUDRATE ]; then
c

Re: nobody is running find at too high a priority

1997-07-13 Thread jghasler
I wrote:
> ...it is clear from the questions being posted that not everyone knows to
> do this.  Looks like a documentation problem.

W. Paul Mills writes:
> I am not so sure this is a documentation problem. More of a failure to
> read.

Any time more than a very small minority of users are unable to get what
they need from the documentation it has failed.  The failure may be due to
an insoluble problem (such as documenting all possible ppp schemes) but it
is failure nonetheless.
-- 
John HaslerThis posting is in the public domain.
[EMAIL PROTECTED]Do with it what you will.
Dancing Horse Hill Make money from it if you can; I don't mind.
Elmwood, Wisconsin Do not send email advertisements to this address.


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


Re: nobody is running find at too high a priority

1997-07-13 Thread George Bonser

> Any time more than a very small minority of users are unable to get what
> they need from the documentation it has failed.  The failure may be due to
> an insoluble problem (such as documenting all possible ppp schemes) but it
> is failure nonetheless.

Ok, then why not adopt some default standard (Say PAP like windows does)
that you MAY CHANGE but for newbies, asks them what the phone number is,
what their password is and username and then sets the darned thing up to
act like Win95 does on a PPP login so that any ISP that supports Windows
DUN by default (this is about 100% of US providers and probably a very
large percentage of the rest of the world) also supports Debian in ITS
default configuration.

Just have the system ask "Would you like to set PPP up like Win95 DUN" or
something and if you say no, it just leaves things like they are.


George Bonser
If I was in charge of the world, things would be a lot better (for me).


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


Mouse not responding (gpm)

1997-07-13 Thread Ty
Has anyone had any problems with the mouse not responding?
The mouse was/is working fine, (MS serial mouse), however
when I attempt to load-up x-windows, the mouse does not 
respond at all.

I have checked the /etc/gpm.conf and tried other serial
ports such as ttyS0 through ttyS3, and still nothing works.

Any help to resolve this would be appreciated.

- Ty


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


uname -a on /etc/motd

1997-07-13 Thread Randy Edwards
   Could someone tell me what process is putting what appears to be the
output of a "uname -a" at the top of /etc/motd?

   I delete that regularly since IMHO it doesn't look very pretty, but try
as I might, Linux seems to have more patience at putting it there then I do
at removing it. :-)

 Regards, | Debian GNU/ __  o
 .|/ / _  _  _  _  _ __  __
 Randy|   / /__  / / / \// //_// \ \/ /
 (FidoNet 1:325/805)  |  // /_/ /_/\/ /___/  /_/\_\
 ([EMAIL PROTECTED])  |  ...because lockups are for convicts...



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


Re: uname -a on /etc/motd

1997-07-13 Thread Philippe Troin

On Sun, 13 Jul 1997 18:22:23 EDT Randy Edwards ([EMAIL PROTECTED])
 wrote:

>Could someone tell me what process is putting what appears to be the
> output of a "uname -a" at the top of /etc/motd?
> 
>I delete that regularly since IMHO it doesn't look very pretty, but try
> as I might, Linux seems to have more patience at putting it there then I do
> at removing it. :-)

Set EDITMOTD=false in /etc/init.d/boot

Phil.



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


Re: uname -a on /etc/motd

1997-07-13 Thread joost witteveen
> 
> On Sun, 13 Jul 1997 18:22:23 EDT Randy Edwards ([EMAIL PROTECTED])
>  wrote:
> 
> >Could someone tell me what process is putting what appears to be the
> > output of a "uname -a" at the top of /etc/motd?
> > 
> >I delete that regularly since IMHO it doesn't look very pretty, but try
> > as I might, Linux seems to have more patience at putting it there then I do
> > at removing it. :-)
> 
> Set EDITMOTD=false in /etc/init.d/boot

Better make that EDITMOTD=no


from /etc/init.d/boot:

if [ "$EDITMOTD" != no ]
then
uname -a > /tmp/motd
sed 1d /etc/motd >> /tmp/motd
mv /tmp/motd /etc/motd
fi

-- 
joost witteveen, [EMAIL PROTECTED]
#!/usr/bin/perl -sp0777ihttp://www.dcs.ex.ac.uk/~aba/rsa/


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


Re: Mouse not responding (gpm)

1997-07-13 Thread Igor Grobman
> Has anyone had any problems with the mouse not responding?
> The mouse was/is working fine, (MS serial mouse), however
> when I attempt to load-up x-windows, the mouse does not 
> respond at all.
> 
> I have checked the /etc/gpm.conf and tried other serial
> ports such as ttyS0 through ttyS3, and still nothing works.
> 
> Any help to resolve this would be appreciated.


the way X accesses your mouse is specified in /etc/X11/XF86Config.  To make 
sure
gpm and X don't conflict, specify /dev/gpmdata as the mouse device in the 
pointer section of XF86Config, and add append="-R"   in /etc/gpm.conf.  After 
restarting both X and gpm, everything should be working right.

 


-- 
Proudly running Debian Linux! Linux vs. Windows is a no-Win situation
Igor Grobman   [EMAIL PROTECTED] [EMAIL PROTECTED] 



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


Re: Toshiba laptop resume mode

1997-07-13 Thread Bruce Perens
The kernel we distribute doesn't have Advanced Power Management configured
in because it crashes some systems. Install the kernel-source package and
make a custom kernel, with APM enabled. That should handle resume just fine.

Bruce
-- 
Bruce Perens K6BP   [EMAIL PROTECTED]   510-215-3502
Finger [EMAIL PROTECTED] for PGP public key.
PGP fingerprint = 88 6A 15 D0 65 D4 A3 A6  1F 89 6A 76 95 24 87 B3 


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


Re: nobody is running find at too high a priority

1997-07-13 Thread jghasler
George Bonser writes:
> Ok, then why not adopt some default standard (Say PAP like windows does)
> that you MAY CHANGE but for newbies, asks them what the phone number is,
> what their password is and username and then sets the darned thing up to
> act like Win95 does on a PPP login so that any ISP that supports Windows
> DUN by default...

Good idea. I also still think that the install script should offer "Dial up
an ISP and use dynamic IP" as a separate menu item.  Selecting this would
bring up a menu in which "Would you like to set PPP up like Win95 DUN"
would be one of the choices.

> ...this is about 100% of US providers...

There are still plenty of ISP's out here using screwball arrangements.
-- 
John HaslerThis posting is in the public domain.
[EMAIL PROTECTED]Do with it what you will.
Dancing Horse Hill Make money from it if you can; I don't mind.
Elmwood, Wisconsin Do not send email advertisements to this address.


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