Re: I'm an idiot and sed proves it...

1997-11-28 Thread Rick Hawkins

Dale wrote,

>It seems that none of the solutions presented allowed sed to find and
>replace the - character pair.

Now that it's phrased that way, a memory arises.

I was trying to make filters to make articles posted to a mailing list 
readable a while back (my ISN hardware  would freeze on a ^S with bit 8 high, 
which is a quote in one of the character sets).

Anyway, there were a couple of filterings that I couldn't do, as sed seemed to 
ignore certain combinations that it generated.  The solution was two filters:

cat rawfile | sed -f filter1 | sed -f filter2

which solved my problems.

rick



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


Re: make-kpkg ??

1997-11-28 Thread tony mollica
thanks!


tony mollica
[EMAIL PROTECTED]



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


Re: Mounting a FAT32 filesystem under Linux?

1997-11-28 Thread Will Lowe
On Fri, 28 Nov 1997, debian mail recipient wrote:

> Hello all.  Does anyone know if there is a kernel module that allows Linux to 
> mount
> a FAT32 filesystem?
I think the code for this is currently in beta or pre-stable release
stage,  so it's not included in the standard debian kernel sets.  Check
out www.linuxhq.com;  they seem to have a lot of kernel patches.

>  What exactly is FAT32.  I'm assuming its a dos filesystem that
This is a filesystem used by the newer (OSR2) Win95 systems.  Essentially,
it does a better job of allocating disk clusters to files on big drives (>
1 gig),  thereby cutting back on wasted space if you have lots of small
files (most of us do).  The older system was called FAT16,  and the FAT16
with Win95 long filenames is called VFAT.

Will


--
| [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED]   |
|   http://www.cis.udel.edu/~lowe/   |
--
|   You say "Love is a temple.  Love the higher law."|
|   You ask me to enter,  but then you make me crawl.| 
| And I can't be holding on to what you got  |
|  When all you got is hurt. |
--




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


Why does bash follow symlinks only sometimes?

1997-11-28 Thread Ben Pfaff
My root partition is just 100 MB or so, just enough to host my 13 GB
RAID-0 array of 3 UW SCSI disks, which is mounted at /raid.  /usr,
/home, and so on are symlinks into /raid, like this:

drwxr-xr-x bin
drwxrwsr-x boot
drwxrwsr-x cdrom
lrwxrwxrwx debian -> mirror/debian/hamm/hamm/binary
drwxr-xr-x dev
drwxr-xr-x etc
drwxrwsr-x floppy
lrwxrwxrwx home -> raid/home
drwxr-xr-x initrd
drwxr-xr-x lib
drwxr-xr-x lost+found
lrwxrwxrwx mirror -> raid/mirror
drwxr-xr-x mnt
dr-xr-xr-x proc
drwxr-xr-x raid
lrwxrwxrwx root -> raid/root
drwxr-xr-x sbin
drwxr-xr-x syjet
lrwxrwxrwx tmp -> raid/tmp
lrwxrwxrwx usr -> raid/usr
lrwxrwxrwx var -> raid/var
lrwxrwxrwx vmlinuz -> boot/vmlinuz-2.0.32
lrwxrwxrwx vmlinuz.old -> boot/vmlinuz-2.0.31

(Some columns omitted for legibility on 80-column displays.)

My question is, why does bash always show this prompt when I initially
log in:
blp:/raid/home/blp$ 
But when I type `cd', it does this:
blp:/raid/home/blp$ cd
blp:~$
Correspondingly, `cd /home/blp' displays the prompt correctly as well:
blp:~$ cd /home/blp
blp:~$
But `cd /raid/home/blp' goes back to the full directory name again:
blp:~$ cd /raid/home/blp
blp:/raid/home/blp$
Is there a way to make bash act a little more consistently in this
situation?
-- 
Ben Pfaff <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EMAIL PROTECTED]>


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


ICQ -- Multi-User Installation

1997-11-28 Thread Paul Serice
With some trial and error, I've been able to setup ICQ for multiple
users under Debian.  The idea was to give each user an ~/.icq
directory where she can keep her personal configuration.  In my
experience, if you use the installation directions which come with
the program, things will not work like you might expect.

What I did to get it working properly:

1) Install the Debian JDK.

2) Download the ICQ tar ball (http://www.icq.com/)

AS ROOT DO THE FOLLOWING:

3) cd /usr/local

4) tar -xzvf icqtarball.tgz

5) chown -R root.root ICQJava

6) cd /usr/local/ICQJava

7) Edit "install" and change the following:
1) uncomment JAVA_HOME
2) JAVA_HOME = /usr/lib/jdk1.1
3) ICQ_HOME = /usr/local/ICQJava

8) ./install
Note: This will create the file /usr/local/ICQJava/ICQ which
  is the script you will want to run after making a few
  more modifications.

9) Edit the "ICQ" file in (8) above by replacing the "-path"
   parameter with "-path $HOME/.icq" .  This will tell ICQ to use the
   ~/.icq directory for all of its needs -- including the user's
   personal configuration.  This is and step 10 are the critical
   changes.

AS THE USER DO THE FOLLOWING:

10) Now, you need to create the ~/.icq directory for each user:

1) mkdir ~/.icq
2) cd ~/.icq
3) mkdir conf
4) chmod 700 conf
5) ln -s /usr/local/ICQJava/Images
6) ln -s /usr/local/ICQJava/Sounds

AS ROOT DO THE FOLLOWING:

11) cd /usr/local/bin

12) ln -s ../ICQJava/ICQ icq

AS THE USER DO THE FOLLOWING:

13) run using "icq"


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


Re: how do I kill samba?

1997-11-28 Thread Eloy A. Paris
Paul Miller <[EMAIL PROTECTED]> wrote:

: how do I kill samba when it is loaded from inetd? .. smbd doesn't even
: appear on ps -aux unless a service is being used.

As a couple of Debian fellows already said, if ps -ax does not show
any nmbd or smbd processes then Samba is not running. However, since
it is running from inetd, traffic in UDP ports 137-139 is being
listened to (by inetd) and any traffic in these ports will trigger
nmbd or smbd (depending on the port).

If there are any process running, you can kill them as usual with
kill. However, my experience tells me that as soon as you kill nmbd
another nmbd process will be initiated by inetd because traffic will
trigger that. So, you will always have a nmbd running, unless you
unplug your Samba server from the network or shutdown all machines
(other Samba servers or any Windows box) that broadcast NetBIOS stuff.

If you don't want to have any nmbd or smbd processes at all, disable
the corresponding lines in /etc/inetd.conf and kill -HUP the inetd
process.

New releases of the Samba package (that I started to maintain) will
have as an option to run Samba from inetd or as daemons. When run as
daemons it is easier to shut down Samba, just do "/etc/init.d/samba
stop".

See ya!

E.-

-- 

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


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


Mounting a FAT32 filesystem under Linux?

1997-11-28 Thread debian mail recipient

Hello all.  Does anyone know if there is a kernel module that allows Linux to 
mount
a FAT32 filesystem?  What exactly is FAT32.  I'm assuming its a dos filesystem 
that
allows bigger partitions ... ?

TIA

-- Harmon


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


smartware from angoss

1997-11-28 Thread butch
hi,

i used to use a dos office automation package called smartware and it was so
far in advance of anything else at the time. the spread sheet was the best
of its time.
now i see that it is availabel as an impaired free download at:
www.angoss.com. so have any of you out there used the package?

allan bart


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


Re: how do I kill samba?

1997-11-28 Thread Wintermute
Paul Miller wrote:
> 
> how do I kill samba when it is loaded from inetd? .. smbd doesn't even
> appear on ps -aux unless a service is being used.
> 
> Thanks
> 
> ---
> Paul Miller <[EMAIL PROTECTED]>, finger for public PGP key
> 100 MB web space for $10/month, http://www.3dillusion.com
> 
> --
> TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
> [EMAIL PROTECTED] .
> Trouble?  e-mail to [EMAIL PROTECTED] .

You've kind of answered your own question.  smbd doesn't show up on a ps
listing because it is only run when needed, and not all the time as a
daemon.

The best way to "kill" it if you don't like this behavior is to edit
your inetd.conf and comment out the service.


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


Re: Linux, a MicroSoft product? (fwd)

1997-11-28 Thread bruce
It's pretty transparent. "Attorney Lou Zurr" should have set off your
B.S. filter if nothing else did.

Bruce


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


Re: Mustek Paragon 1200SP scanner

1997-11-28 Thread Olivier THARAN
On Thu, Nov 27, 1997 at 11:55:20PM +0100, Mike Neuhaus wrote:
> I search a driver (and additional software) for the Scanner Mustek
> Paragon 1200SP with use of the shipped SCSI-card. Where i find it?

You should check SANE, a scanner interface for Linux:
http://www.mostang.com/sane/

olive
-- 
Olivier Tharan, <[EMAIL PROTECTED]>

Lisp Users: Due to the holiday, there will be no garbage collection on 
Monday.


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


Re: AWE 64 Troubles despite following FAQ

1997-11-28 Thread Nick Busigin
On Fri, 28 Nov 1997, Marcus Brinkmann wrote:

> On Fri, Nov 28, 1997 at 11:08:31AM -0500, Nick Busigin wrote:
> > I recently purchased an AWE 64 Value and have been pulling my hair out
> > trying to get it to work properly on my Debian system.  I have read
> 
> I hope you can get your hairs back, because I can only try to get your
> soundcard working ;)

Thanks for replying to my request for help!

> > through Sound-HOWTO as well as the fine "Soundblaster AWE 32/64 HOWTO" by
> > Marcus Brinkman.  However, despite all my efforts I am still not able to
> > get the WaveTable portion of the card to be recognized by the sound
> > driver.
> 
> [...]
> 
> [...]
> > #  Note that when I ran 'pnpdump > /etc/isapnp.conf' only the 0x0620 entry
> > #  showed up, unlike what was shown in the AWE 32/64 HOWTO.  I added the
> > #  two other entries to try and make it work, but it doesn't either as shown
> > #  or with the two additional entries uncommented.
> > (IO 0 (BASE 0x0620))
> > #(IO 0 (BASE 0x0a20))
> > #(IO 0 (BASE 0x0e20))
> 
> Ouch, this is bad :(
> 
> However, the lines have not to be commented, so please remake the changes.
> But it is still not working?

I made a mistake in calling all these IO ports the same, ie. IO 0, instead
of IO 0, IO 1 and IO 2 .  Once I uncommented the two lines you show as bad
and one I corrected the naming of the ports I got the driver to recognize
my card.  Thank you very much for you help!! 

> I hope that this additional information will help. Let's get this beast.

We just did.  

Thanks again,
Nick

--
Nick Busigin [EMAIL PROTECTED]

To obtain my pgp public key, email me with the subject: "get pgp-key"
--



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


xfs question

1997-11-28 Thread Tommy Lakofski
Hi,

If I put `start-xfs' in /etc/X11/config, the font server runs (can see it
with ps).  I can't tell, though, if X is using the server...  Are there
any additional steps apart from the one change in /etc/X11/config?

TIA,

TL


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


Re: K6 and Debian, and fans

1997-11-28 Thread Rick Hawkins
Hammish wrote,
> On Wed, Nov 26, 1997 at 02:15:49PM +0600, Rick Hawkins wrote:
> > They work wonderfully.  I have a k6-166 running at 210/83 quite happilly.  
> > However, it needs some cooling at this speed; until i get something more 
> > than 
> > this cheesy $2 fan, I need to keep the side off to compile (but not at 
> > 166/66).
> 
> What, it runs fine at 166 without a fan at all?
> I run mine at 180/60 (best this board can do) but not without
> a fan thanks ...

For all intents and purposes, yes.  It's ina full tower case, so the silly 
little fand that cames with ti slides down about 1/5 the chip before catching 
on the socket.

With just that fan (which is close to "without"), it ran fine at 2.5x66=166, 
including compiling the kernel.  And it would run at 2x83 without a problem.

Adding heat sink compound and a fan in the lower case, along with a cassette 
case to prop the fan to cover the whole chip, and it's happy at 2.5x83 = 210.  
However, if i close the case, it sig11's a while into kernel compiles (and 
when I remove that side of the case, i can feel the extra heat.)

I have another fan waiting to install in the upper case, though i'm toying 
with mouting it between the upper & lower, or using cardboard to force the 
airpat teo the bottom. (or a 3d fan when i get a chance to pick one up, to do 
both).  IO'm also toyin with reversing the flow on the lower fan to blow out 
instead of in, as the heat buildup is noticable.

And I'm planning on getting a hard-core fan for the cpu, but before i figured 
that out, one morning ULN was offering the 166 for $99, and i snapped it up 
before they changed their mind (the next day, i think).

 
> Mind you I think my Quantum HD runs hotter than the CPU.

Gee, I haven't picked one of those yet :)  I'm thinking of the 7.0 or 8.4 
maxtor.  Currently, it's running with 4 wold western digital drives from the 
attempt to make a linux server (the hardware guy who was supporting this has 
left :(  ).  410 mb on /, 500 on /usr, 200b on /usr/src, and another 200 
waiting . . .
rick



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


Re: how do I kill samba?

1997-11-28 Thread Adam Shand

> how do I kill samba when it is loaded from inetd? .. smbd doesn't even
> appear on ps -aux unless a service is being used.

If there are no processes running then samba isn't running.  If you would
like to stop it from running on demand then you need to comment the line
containing smbd and nmbd from /etc/inetd.conf and restart (or send a SIG
HUP) to inetd.

Adam.

 Internet Alaska --
 4050 Lake Otis Adam  Shand(v) +1 907 562 4638
 Anchorage, Alaska Systems Administrator   (f) +1 907 562 1677
- http://larry.earthlight.co.nz ---



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


Re: Linux, a MicroSoft product? (fwd)

1997-11-28 Thread David Wright
On Fri, 28 Nov 1997, Kevin Traas wrote:

> >Where is the original article??
> 
> Someone posted to a NewsGroup about 2 weeks ago.  Not sure which one

The headers here were:

X Subject: Linux now a Microsoft Product?
X Newsgroups: comp.os.linux.misc,alt.os.linux,comp.os.linux.advocacy
X Date: Sat, 22 Nov 1997 03:04:20 GMT
X Organization: RainbowHolt
X From: [EMAIL PROTECTED]

--
David Wright, Open University, Earth Science Department, Milton Keynes MK7 6AA
U.K.  email: [EMAIL PROTECTED]  tel: +44 1908 653 739  fax: +44 1908 655 151


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


Re: AWE64 Setup Solution... THANKYOU!!!

1997-11-28 Thread Nick Busigin
On 28 Nov 1997, Erv Walter wrote:

THANKYOU!

I've been banging my head against the wall trying to get my AWE64
recognized by the sound driver.  Number 2 in your note below got my AWE64
working.   I did try adding two lines similar to what you had, but 
mistakenly called them IO 0 instead of IO 1 and IO 2.  Your example showed
me my error.

Best regards,
Nick

> To those trying to get their AWE64 working:
> 
> 1) Since the 64 is pnp, the card must be initiallized before the
> kernel tries to initialize the driver.  This means you must use
> something like isapnp to initialize the card and you must build the
> sound driver as a _module_ so that you can initialize the card BEFORE
> loading the driver
> 
> 2) The dump from isapnp does not fully detect everything you need in
> you isapnp.conf file.  Try modifying my config file.  Most important
> is the IO 1 and IO 2 lines at the end.  They are not detected by
> pnpdump.  This will allow the kernel to detect the AWE
> 
> --
> # $Id: pnpdump.c,v 1.1.1.1 1997/09/14 15:27:30 fred Exp $
> # This is free software, see the sources for details.
> # This software has NO WARRANTY, use at your OWN RISK
> #
> # For details of this file format, see isapnp.conf(5)
> #
> # For latest information on isapnp and pnpdump see:
> # http://www.roestock.demon.co.uk/isapnptools/
> #
> # Compiler flags:
> #
> # Trying port address 0203
> # Board 1 has serial identifier 62 11 36 59 a4 c3 00 8c 0e
> 
> #(DEBUG)
> (VERIFYLD N)
> (READPORT 0x0203)
> (ISOLATE)
> #(IDENTIFY *)
> 
> # Card 1: (serial identifier 62 11 36 59 a4 c3 00 8c 0e)
> # CTL00c3 Serial No 288774564 [checksum 62]
> # Version 1.0, Vendor version 1.0
> # ANSI string -->Creative SB AWE64 PnP<--
> # Vendor defined tag:  73 02 45 00
> #
> 
> (CONFIGURE CTL00c3/288774564 (LD 0
> # ANSI string -->Audio<--
> (INT 0 (IRQ 9 (MODE +E)))
> (DMA 0 (CHANNEL 1))
> (DMA 1 (CHANNEL 5))
> (IO 0 (BASE 0x0220))
> (IO 1 (BASE 0x0330))
> (IO 2 (BASE 0x0388))
> (ACT Y)
> ))
> 
> (CONFIGURE CTL00c3/288774564 (LD 1
> # Compatible device id PNPb02f
> # ANSI string -->Game<--
> (IO 0 (BASE 0x0200))
> (ACT Y)
> ))
> 
> (CONFIGURE CTL00c3/288774564 (LD 2
> # ANSI string -->WaveTable<--
> (IO 0 (BASE 0x0620))
> (IO 1 (BASE 0x0A20))
> (IO 2 (BASE 0x0E20))
> (ACT Y)
> ))
> 
> (WAITFORKEY)
> 
> --

--
Nick Busigin [EMAIL PROTECTED]

To obtain my pgp public key, email me with the subject: "get pgp-key"
--


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


Re: Linux, a MicroSoft product? (fwd)

1997-11-28 Thread Kevin Traas
>Where is the original article??


Someone posted to a NewsGroup about 2 weeks ago.  Not sure which one

Later,
Kevin Traas


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


Re: AWE 64 Troubles despite following FAQ

1997-11-28 Thread Marcus Brinkmann

Hello!

On Fri, Nov 28, 1997 at 11:08:31AM -0500, Nick Busigin wrote:
> I recently purchased an AWE 64 Value and have been pulling my hair out
> trying to get it to work properly on my Debian system.  I have read

I hope you can get your hairs back, because I can only try to get your
soundcard working ;)

> through Sound-HOWTO as well as the fine "Soundblaster AWE 32/64 HOWTO" by
> Marcus Brinkman.  However, despite all my efforts I am still not able to
> get the WaveTable portion of the card to be recognized by the sound
> driver.

[...]

> For some reason, the driver cannot detect the AWE32 portion of the card,
> which I'm assuming is the WaveTable portion.  If anyone could shed some
> light on how to fix this, I would greatly appreciate it.
> 
> Thanks in advance,
>   Nick
> 
> Here's a copy of my /etc/isapnp.conf file:

[...]
> #  Note that when I ran 'pnpdump > /etc/isapnp.conf' only the 0x0620 entry
> #  showed up, unlike what was shown in the AWE 32/64 HOWTO.  I added the
> #  two other entries to try and make it work, but it doesn't either as shown
> #  or with the two additional entries uncommented.
> (IO 0 (BASE 0x0620))
> #(IO 0 (BASE 0x0a20))
> #(IO 0 (BASE 0x0e20))

Ouch, this is bad :(

However, the lines have not to be commented, so please remake the changes.
But it is still not working?

Please, can you mail me privately:

* Your changed isapnp.conf one more time
* Your /etc/modules, /etc/conf.modules
* The (relevant) output of dmesg ?

* The version number of isapnputils

I hope that this additional information will help. Let's get this beast.

Marcus


-- 
"Rhubarb is no Egyptian god." Debian GNU/Linux
Marcus Brinkmann  http://www.debian.org
[EMAIL PROTECTED]
http://homepage.ruhr-uni-bochum.de/Marcus.Brinkmann/


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


Re: Linux, a MicroSoft product? (fwd)

1997-11-28 Thread Shaleh
Where is the original article??


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


Linux, a MicroSoft product? (fwd)

1997-11-28 Thread Orn E. Hansen
Pancho Horrillo writes:
 > 
 > AAP Worldwide Wire Service11/21/97 06:00 GMT
 > (Hirchsrgig, MS)-The computer world has been shaken to its core by a
 > legal decision that has immense implications worldwide.  In a ruling
 > that is certain to become a hotbed of controversy, a US Federal Judge
 > in Hirchsrgig Mississippi ruled that Microsoft legally holds all
 > rights to the "Linux" operating system.
 > 
 > Judge Richard Shortner, in an opinion handed down today, ruled that
 > the Linux operating system is not "free software," and that the "GNU
 > Public License" is not legally binding, thus giving final legal
 > approval to the US Patent Office's conditional approval of Microsoft's
 > patent application.
 > 

 Now, *this* would be a really neat trick... Linux, which is an
operating system, that strives to be compatible with Unix, and is
derived from Minix, is now 'Patentable' by Micro$oft as an operating
system.

 Well, look out Kernigan & Richie, next week we'll hear that you
really didn't make the C language, M$ did :-) and AT/T, be very
carefult, next month M$ is going to sue you for making an imitation of 
their operating system, selling it for billions without paying them
honorary.

 Now, _that_ Bill Gates is a magician :-)


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


[avi318k1@pn.nettuno.it: Xephem-smotif problems]

1997-11-28 Thread James A. Abercromby II
--- Start of forwarded message ---
Date: Fri, 28 Nov 1997 17:29:27 +0100
From: "James A. Abercromby II" <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: Xephem-smotif problems

I have quite recently upgraded the following pkgs to my Debian 1.3.1 Linux Box
xtet42, xtris, xfig, xcontrib, emacs, xlib6g, xpostitplus, lincity etc.
and all the associated/appropriate libs etc. from Hamm.

Everything went smoothly and no problems, (once I figured out what I was doing)

However,  xephem-smotif from bo, would load with the following error msg
"Can not open edb/YBS.edb: No such file or directory"
Also, before I upgraded to these Hamm pkgs above, xephem would load no problem 
and the app had been a brown color, and when you quit, an red colored prompt 
would appear confirming that you wanted to exit the program.

BTW the file and directory that error message is complaining about is still 
there, and exists.  So, is this a link problem?

I don't know why the program cannot find it?


Well I figured no problem, I will just ftp the new hamm ver from 
/hamm/contrib/math/xephem-smotif_3.0-1.deb dated 2 nov 97 and it will be fine.

No, I still get the same error message after I installed the new version from 
unstable

Any resolutions, insights, or assistance to this problem would be greatly 
appreciated

Thank you very much
James A. Abercromby II
--- End of forwarded message ---


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


Using Netscape's mail functions

1997-11-28 Thread Randy Edwards
   I'm running Netscape 4.04 with bo and have been having some trouble
getting Netscape's internal mail to work.  I've set Netscape's preferences
to use its internal movemail function and have chmod'ed my
/var/spool/mail/redwards subdirectory to 01777 like Netscape recommends. 
However, I still get permission denied errors.

   Could someone give me a walkthrough on how to get Communicator's mail 
functions working?  Thanks in advance.

 Regards, | Debian GNU/ __  o
 .|/ / _  _  _  _  _ __  __
 Randy|   / /__  / / / \// //_// \ \/ /
 ([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] .


Q: SVGA X Server Fails w/16bpp

1997-11-28 Thread Orn E. Hansen
Dean C. Sullinger writes:
 > I just installed debian on my home PC.  I mirrored
 > almost everything from debian on my Laptop.  I
 > couldn't mirror the X Server Config because of diff
 > graphic cards.  The SVGA X Server works for 8bpp,
 > but fails for 16bpp.  My cirrus logic card will support
 > 16bpp colors.
 > 
 > Here's the scoop.  The PC is a Compaq 486/50 with
 > 32MB RAM, Cirrus Logic GD-CL5428 w/1MB DRAM.
 > I used XF86Config and selected all the standard inputs.
 > I think the card uses a intergrated RAMDAK, so I selected
 > a "normal" RAMDAK.  I selected the following options:
 > linear, fast_dram and no_bitblt.  I tried setting the MemBase
 > as recommended in the cirrus docs, but it caused my PC
 > to lockup and I couldn't reboot it.  I had to turn it off and
 > it hosed the file system.  I have to run fsck everytime and
 > I've gotten scared to continue trying to get it to work.
 > 

  I have the same GD-CL5428 graphics card.  In the directory tree
/usr/X11R6/lib/X11/doc there is a README file for cirrus cards.  It
tells you to look at the card, and see if pins 25-27 are blank on
upper side of the card.  If these pins are blank (which they are on my 
card), you can't use 'linear' mode.  The point is, the card only knows 
about 16MByte adressing space, so you are unable to tell the card to
map the graphics ram outside the computers memory.  So, the card will
map it's memory inside the 16MByte range, which conflicts with the
other memory... bummer.

  To be able to use 16bpp, you must therefore use maximum 800x600
resolution and disable linear mode... here is a copy of the "Device"
for the cirrus card in my XF86Config file

Section "Device"
   Identifier  "Cirrus Alpaline"
   VendorName  "Cirrus Logic"
   BoardName   "VLB CL-5428"
   Chipset "clgd5428"
   VideoRam1024
   #MemBase0x0200
   Clocks  25.23 28.32 41.16 36.08 31.50 39.99 45.08 49.87
   Clocks  64.98 72.16 75.00 80.01 85.23
EndSection

Hope that helps...


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


AWE64 Setup Solution...

1997-11-28 Thread Erv Walter
To those trying to get their AWE64 working:

1) Since the 64 is pnp, the card must be initiallized before the
kernel tries to initialize the driver.  This means you must use
something like isapnp to initialize the card and you must build the
sound driver as a _module_ so that you can initialize the card BEFORE
loading the driver

2) The dump from isapnp does not fully detect everything you need in
you isapnp.conf file.  Try modifying my config file.  Most important
is the IO 1 and IO 2 lines at the end.  They are not detected by
pnpdump.  This will allow the kernel to detect the AWE

--
# $Id: pnpdump.c,v 1.1.1.1 1997/09/14 15:27:30 fred Exp $
# This is free software, see the sources for details.
# This software has NO WARRANTY, use at your OWN RISK
#
# For details of this file format, see isapnp.conf(5)
#
# For latest information on isapnp and pnpdump see:
# http://www.roestock.demon.co.uk/isapnptools/
#
# Compiler flags:
#
# Trying port address 0203
# Board 1 has serial identifier 62 11 36 59 a4 c3 00 8c 0e

#(DEBUG)
(VERIFYLD N)
(READPORT 0x0203)
(ISOLATE)
#(IDENTIFY *)

# Card 1: (serial identifier 62 11 36 59 a4 c3 00 8c 0e)
# CTL00c3 Serial No 288774564 [checksum 62]
# Version 1.0, Vendor version 1.0
# ANSI string -->Creative SB AWE64 PnP<--
# Vendor defined tag:  73 02 45 00
#

(CONFIGURE CTL00c3/288774564 (LD 0
# ANSI string -->Audio<--
(INT 0 (IRQ 9 (MODE +E)))
(DMA 0 (CHANNEL 1))
(DMA 1 (CHANNEL 5))
(IO 0 (BASE 0x0220))
(IO 1 (BASE 0x0330))
(IO 2 (BASE 0x0388))
(ACT Y)
))

(CONFIGURE CTL00c3/288774564 (LD 1
# Compatible device id PNPb02f
# ANSI string -->Game<--
(IO 0 (BASE 0x0200))
(ACT Y)
))

(CONFIGURE CTL00c3/288774564 (LD 2
# ANSI string -->WaveTable<--
(IO 0 (BASE 0x0620))
(IO 1 (BASE 0x0A20))
(IO 2 (BASE 0x0E20))
(ACT Y)
))

(WAITFORKEY)

--

-- 
Graduate Student[EMAIL PROTECTED]
Department of Chemistry   [EMAIL PROTECTED]
Univ of Wisconsin-Madison   [EMAIL PROTECTED]
   

New Opcode #8: IPX - Increase Power and eXplode
 -- tagline 1.00 by xopy


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


RAID (was re: Ultra SCSI)

1997-11-28 Thread Geof Goodrum

On Thu, 27 Nov 1997, Mika Marjamaki wrote:

> On Thu, 27 Nov 1997, Kevin Traas wrote:
> > I should also ask about the Mylex DAC960PD.  Or, are there any other
> > Ultra-SCSI RAID controllers supported in Linux?
> 
> Hi!
> 
> We are getting a new Linux-server really soon - I heard it might come
> tomorrow or maybe next monday or so. Anyway, it will have some kind of
> Hardware-RAID - don't know yet what kind of, but it is checked to work
> with Linux. If it is Ultra-SCSI, I can tell you the model etc... 
> 

This is off-topic for the Linux-net list, but just to reduce further
postings I've left it on this reply.

The RAID Solutions for Linux page is at URL 
http://linas.org/linux/raid.html

Both software and hardware RAID products are covered.  The RAID drivers
for Linux now support levels 4 and 5 in beta.

DISCLAIMER:  The comments above are my own and may not represent the views
 of my employer.
+---+---+
: Geoffrey P. Goodrum   : US Department of Commerce :
:   +1-301-457-5100 : NOAA/NESDIS National Climatic Data Center :
: [EMAIL PROTECTED]: Satellite Services Branch :
+---+---+


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


how do I kill samba?

1997-11-28 Thread Paul Miller
how do I kill samba when it is loaded from inetd? .. smbd doesn't even
appear on ps -aux unless a service is being used.

Thanks

---
Paul Miller <[EMAIL PROTECTED]>, finger for public PGP key
100 MB web space for $10/month, http://www.3dillusion.com


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


Bogomips halved!

1997-11-28 Thread Francesco Potorti`
Hi, 

I am using a 200MHz K6, which I now overclocked at 233 MHz.  After
having done that, I checked the bogomips number, and I discovered in
/var/log/messages that, after having been at 400 since ever (as
expected, for a K6), it had dropped at 200 in the latest reboot and,
after having overclocked it, went at 233.  If I run the bogomips
program, it gives 466, but /proc/cpuinfo still contains 233.

How can it be?  Could that be a source of problems for timings inside
the kernel?

Thanks for any info
Francesco


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


Re: I need help setting up X

1997-11-28 Thread Shaleh
The problem is that X believes that all the mode defs are bogus, so it
throws them out.  There is no entry left that supports anything other
than 640x480 8bpp, when it is thru.


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


Re: mtools

1997-11-28 Thread Gertjan Klein
<[EMAIL PROTECTED]> wrote:

 >> A much bigger problem of mtools is that when copying *to* an MS-DOS
 >> file system, it writes long filename entries to the directory.

 >  It does that only when the file is not acceptable to normal FAT. So if you
 > don't like the so called `VFAT' don't use those names, that would fail in
 > normal FAT anyway.

  If I copy a (e.g. too long) filename to a DOS partition with the
normal Linux cp command, it just truncates it - which is exactly what
should happen if the partition is not mounted as vfat.  This also should
be possible with mtools.  Even if I copy the file "pietje", with mtools
I still get a long filename directory entry, because it is not in
uppercase. This is annoying - I don't want to have to type all filenames
that should go on a DOS partition in uppercase, and truncate them by
hand, and I also don't feel like creating wrapper scripts around all
mtools commands.  I just don't use it anymore.

  Gertjan.

-- 
Gertjan Klein <[EMAIL PROTECTED]>
The Boot Control home page: http://www.xs4all.nl/~gklein/bcpage.html


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


Re: Making Debian bootable from hard disk

1997-11-28 Thread Gertjan Klein
 >   boot=/dev/hda1

  This line tells LILO to install itself to the bootsector of the first
harddisk partition.  In order for LILO to actually run, the MBR software
must boot this partition (i.e., the active flag must be set to it).
Alternatively, you may choose to install LILO to the MBR:

  boot=/dev/hda

 >   root=/dev/hdc1

 > The error message I am getting from liloconfig:

 > Warning: BIOS drive 0x82 may not be accessible
 > 

  The 0x82 is the BIOS drive number, and has nothing to do with the
partition type.  As most older PC BIOSes only support two harddisks,
LILO is trying to warn you here that you may not be able to access this
disk at boot time.  If you are sure you can, you can safely ignore this
message.  BTW, are you certain it is /dev/hdc, not /dev/hdb?

  Gertjan.

-- 
Gertjan Klein <[EMAIL PROTECTED]>
The Boot Control home page: http://www.xs4all.nl/~gklein/bcpage.html


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


AWE 64 Troubles despite following FAQ

1997-11-28 Thread Nick Busigin
I recently purchased an AWE 64 Value and have been pulling my hair out
trying to get it to work properly on my Debian system.  I have read
through Sound-HOWTO as well as the fine "Soundblaster AWE 32/64 HOWTO" by
Marcus Brinkman.  However, despite all my efforts I am still not able to
get the WaveTable portion of the card to be recognized by the sound
driver.  Here's what I get when I try installing the sound module:

xwing# isapnp /etc/isapnp.conf
Board 1 has Identity 3f 1f 5e 91 4e e4 00 8c 0e:  CTL00e4 Serial No
526291278 [checksum 3f]

xwing# modprobe -a sound trace_init=1
Sound initialization started
 at 0x220 irq 5 dma 1,5
 at 0x330 irq 5 dma 0
 at 0x388
Sound initialization complete
AWE32 not found
AWE32: not detected

For some reason, the driver cannot detect the AWE32 portion of the card,
which I'm assuming is the WaveTable portion.  If anyone could shed some
light on how to fix this, I would greatly appreciate it.

Thanks in advance,
Nick

Here's a copy of my /etc/isapnp.conf file:

# $Id: pnpdump.c,v 1.8 1997/01/14 21:05:35 fox Exp $
# This is free software, see the sources for details.
# This software has NO WARRANTY, use at your OWN RISK
# 
# For details of this file format, see isapnp.conf(5)
#
# Compiler flags: -DREALTIME -DNEEDSETSCHEDULER
#
# Trying port address 0203
# Board 1 has serial identifier 3f 1f 5e 91 4e e4 00 8c 0e

#(DEBUG)
(READPORT 0x0203)
(ISOLATE)
(IDENTIFY *)

# Card 1: (serial identifier 3f 1f 5e 91 4e e4 00 8c 0e)
# CTL00e4 Serial No 526291278 [checksum 3f]
# Version 1.0, Vendor version 1.0
# ANSI string -->Creative SB AWE64  PnP<--
# Vendor defined tag:  73 02 45 20
#
# Logical device id CTL0045
#
# Edit the entries below to uncomment out the configuration required.
# Note that only the first value of any range is given, this may be changed if 
required
# Don't forget to uncomment the activate (ACT Y) when happy

(CONFIGURE CTL00e4/526291278 (LD 0
# ANSI string -->Audio<--

# Multiple choice time, choose one only !

# Start dependent functions: priority preferred
#   IRQ 5.
# High true, edge sensitive interrupt (by default)
(INT 0 (IRQ 5 (MODE +E)))
#   First DMA channel 1.
# 8 bit DMA only
# Logical device is not a bus master
# DMA may execute in count by byte mode
# DMA may not execute in count by word mode
# DMA channel speed in compatible mode
(DMA 0 (CHANNEL 1))
#   Next DMA channel 5.
# 16 bit DMA only
# Logical device is not a bus master
# DMA may not execute in count by byte mode
# DMA may execute in count by word mode
# DMA channel speed in compatible mode
(DMA 1 (CHANNEL 5))
#   Logical device decodes 16 bit IO address lines
# Minimum IO base address 0x0220
# Maximum IO base address 0x0220
# IO base alignment 1 bytes
# Number of IO addresses required: 16
(IO 0 (BASE 0x0220))
#   Logical device decodes 16 bit IO address lines
# Minimum IO base address 0x0330
# Maximum IO base address 0x0330
# IO base alignment 1 bytes
# Number of IO addresses required: 2
(IO 1 (BASE 0x0330))
#   Logical device decodes 16 bit IO address lines
# Minimum IO base address 0x0388
# Maximum IO base address 0x0388
# IO base alignment 1 bytes
# Number of IO addresses required: 4
(IO 2 (BASE 0x0388))

# End dependent functions
(ACT Y)
))


#
# Logical device id CTL7002
#
# Edit the entries below to uncomment out the configuration required.
# Note that only the first value of any range is given, this may be changed if 
required
# Don't forget to uncomment the activate (ACT Y) when happy

(CONFIGURE CTL00e4/526291278 (LD 1
# Compatible device id PNPb02f
# ANSI string -->Game<--

#   Start dependent functions: priority acceptable
#   Logical device decodes 16 bit IO address lines
# Minimum IO base address 0x0200
# Maximum IO base address 0x0208
# IO base alignment 8 bytes
# Number of IO addresses required: 8
# (IO 0 (BASE 0x0200))

# End dependent functions
(ACT Y)
))
#
# Logical device id CTL0022
#
# Edit the entries below to uncomment out the configuration required.
# Note that only the first value of any range is given, this may be changed if 
required
# Don't forget to uncomment the activate (ACT Y) when happy

(CONFIGURE CTL00e4/526291278 (LD 2
# ANSI string -->WaveTable<--

# Start dependent functions: priority preferred
#   Logical device decodes 16 bit IO address lines
# Minimum IO base address 0x0620
# Maximum IO base address 0x0620
# IO base alignment 1 bytes
# Number of IO addresses required: 4
#
#  Note that when I ran 'pnpdump > /etc/isapnp.conf' only the 0x0620 entry
#  showed up, unlike what was shown in the AWE 3

Re: damn identity crisis

1997-11-28 Thread Bob Nielsen
On Fri, 28 Nov 1997, Paul Miller wrote:

> A few weeks ago about three nice people from the Debian-user list helped
> me out with setting up & fixing my DNS server, which I am very thankful.
> Unfortunately I am now having problems with IRC which may or may not be
> related. 
> 
> When I try to connect to an IRC server, I get 'no authorization' errors
> because my system sends my IP instead of the hostname...  It does the same
> for all the machines that IP Masquerade through me.
> 
> On my system, I use ircii, epic, and kirc which all give the same results.
> On the machines using masquerading, I use mirc (win95).. same results.
> 

Are you loading the ip_masq_irc.o module? 

Bob


Bob Nielsen Internet: [EMAIL PROTECTED]
Tucson, AZ  AMPRnet:  [EMAIL PROTECTED]
http://www.primenet.com/~nielsen


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


Re: squid

1997-11-28 Thread Behan Webster
Miquel van Smoorenburg wrote:
> 
> Hey, that means you're still using an old /etc/init.d/squid, since the
> new one prints totally different messages.

See for yourself...

giant:~# dpkg -l squid
Desired=Unknown/Install/Remove/Purge
|
Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err:
uppercase=bad)
||/ NameVersionDescription
+++-===-==-
ii  squid   1.1.17-1   Internet Object Cache (WWW proxy
cache)
giant:~# 

> See if there's a /etc/init.d/squid.dpkg-dist file and copy that over
> /etc/init.d/squid to see if it helps.

I'm afraid there isn't a /etc/init.d/squid.dpkg-dist. 8(

> If it doesn't, do the following:
> 
> 1. copy /etc/squid.conf somewhere safe
> 2. Rename /var/spool/squid to something else
> 3. dpkg --purge squid
> 4. dpkg -i squid_1.1.17-1.deb
> 5. /etc/init.d/squid stop
> 6. Copy your old squid.conf back and put back /var/spool/squid
> 7. /etc/init.d/squid start
> 
> That should give you a fresh installation

Done. (Done precisely as you specified above)

Reboot.


Fri Nov 28 10:48:20 EST 1997: Running: squid -D -s -f /etc/squid.conf >>
/var/log/squid/squid.out 2>&1
   /usr/lib/squid/RunCache: line 59:  
289 IOT trap/Abort  squid -D -s $conf >>$L 2>&1
Fri Nov 28 10:48:31 EST 1997: Running: squid -D -s -f /etc/squid.conf >>
/var/log/squid/squid.out 2>&1
  /usr/lib/squid/RunCache: line 59:   310 IOT
trap/Abort
  squid -D -s $conf >>$L 2>&1
Fri Nov 28 10:48:42 EST 1997: Running: squid -D -s -f /etc/squid.conf >>
/var/log/squid/squid.out 2>&1
  /usr/lib/squid/RunCache: line 59:   331 IOT
trap/Abort
  squid -D -s $conf >>$L 2>&1
Fri Nov 28 10:48:53 EST 1997: Running: squid -D -s -f /etc/squid.conf >>
/var/log/squid/squid.out 2>&1
  /usr/lib/squid/RunCache: line 59:   352 IOT
trap/Abort
  squid -D -s $conf >>$L 2>&1
Fri Nov 28 10:49:04 EST 1997: Running: squid -D -s -f /etc/squid.conf >>
/var/log/squid/squid.out 2>&1
  /usr/lib/squid/RunCache: line 59:   373 IOT
trap/Abort
  squid -D -s $conf >>$L 2>&1
Fri Nov 28 10:49:04 EST 1997: RunCache: EXITING DUE TO REPEATED FREQUENT
FAILURES


Sorry.

I've included the /usr/lib/squid/RunCache program currently installed
below if that helps.

Thanks,

Behan

-- 
Behan Webster mailto:[EMAIL PROTECTED]
+1-613-224-7547   http://www.verisim.com/


#!/bin/sh
#
#  $Id: RunCache.in,v 1.3.2.4 1996/05/24 06:40:39 wessels Exp $

prefix=/usr/lib/squid
exec_prefix=${prefix}
[ "$logdir" = "" ] && logdir=$prefix
PIDFILE=/var/run/runcache.pid
PATH=${exec_prefix}:/bin:/sbin:/usr/sbin:/usr/bin
export PATH

#
#   Just to be sure, check if squid is not already running.
#
if [ -f /var/run/squid.pid ]
then
spid=`cat /var/run/squid.pid`
kill -CONT $spid 2>/dev/null
if [ $? = 0 ]
then
#echo "RunCache: squid is already running." >&2
exit 0
fi
fi

rm -f $PIDFILE
echo $$ > $PIDFILE

L=$logdir/squid.out

conf=""
if test "$1" ; then
conf="-f $1"
shift
fi

failcount=0
while : ; do
echo "`date`: Running: squid -D -s $conf >> $L 2>&1" >>$L
if [ $failcount -gt 0 ]
then
  echo "`date`: Running: squid -D -s $conf >> $L 2>&1"
fi
start=`date '+%d%H%M%S'`
squid -D -s $conf >> $L 2>&1
stop=`date '+%d%H%M%S'`
t=`expr $stop - $start`
if test 0 -le $t -a $t -lt 5 ; then
failcount=`expr $failcount + 1`
else
failcount=0
fi
if test $failcount -gt 5 ; then
  echo "`date`: RunCache: EXITING DUE TO REPEATED FREQUENT
FAILURES" >&2
  echo "`date`: RunCache: EXITING DUE TO REPEATED FREQUENT
FAILURES" >$L
  exit 1
fi
sleep 10
done


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


Re: Making Debian bootable from hard disk

1997-11-28 Thread Orn E. Hansen
Steve Kostecke writes:
 > > Here is my /etc/lilo.conf:
 > > 
 > > boot=/dev/hda1
 > > root=/dev/hdc1
 > 
 > /dev/hda1 = first partition on master disk on 1st IDE controller
 > /dev/hdc1 = first partition on master disk on 2nd IDE controller
 > 
 > If both of your disks are running off the 1st IDE controller  and linux is 
 > on 
 > the slave (2nd) disk then your root would be /dev/hdb1.  If linux is on the 
 > master disk then your root is /dev/hda1.  Change the root= line in your 
 > lilo.conf to what ever is appropriate and run lilo to complete the 
 > installation.
 > 

  I want to thank those who answered and gave me tips concerning this, 
as it has helped me solve the problem.

  I had three harddisks, and one CD-ROM... then I added one harddisk,
and removed one of the olders to fit it in.  The new hard disk was
thus the third in the line /dev/hdc1.  Originally, I had my root
partition on hda1, then I moved over to hdb2 :-) and finally over to
hdc1.  LILO was able to boot on other partitions, out of the original
configuration.  However, after recalibrating the drive, it no longer
was able to.

  Since, I just took out /dev/hda1 and put the disk on /dev/hdc onto
the first controller, as the first harddisk.  And made the entries in
/etc/fstab point to the new destination of the disk.  Now LILO is able 
to boot from that disk, without any difficulties.  The message I wrote 
on here about what LILO said:

lilo: disk device 0x82 may not be accessible
  
  This is not the disk type, as I thought.  But the disk drive number, 
which means that hda is 0x80, hdb is 0x81 and hdc is 0x82.  Lilo was
thus unable to boot hdc1, even though it had been able to before.  I
can't quite see why not, at the moment.


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


Re: damn identity crisis

1997-11-28 Thread Tommy Lakofski
This might be your problem:

Script started on Fri Nov 28 10:43:03 1997
[EMAIL PROTECTED]:~$ host 3dillusion.com
3dillusion.com  A   198.109.162.43
[EMAIL PROTECTED]:~$ host 198.109.162.43
198.109.162.43 does not exist (Authoritative answer)
[EMAIL PROTECTED]:~$ exit
exit

Script done on Fri Nov 28 10:43:15 1997

ie, you have no reverse namelookup for your host. Talk to your provider
about adding a PTR record for your host to their 162.109.198.in-addr.arpa
zone, so that a 'host [your ip]' spits out '3dillusion.com'.

Thomas

On Fri, 28 Nov 1997, Paul Miller wrote:

> From: Paul Miller <[EMAIL PROTECTED]>
> To: Debian User ,
> Linux Net 
> Date: Fri, 28 Nov 1997 10:34:07 -0500 (EST)
> Subject: damn identity crisis
> 
> A few weeks ago about three nice people from the Debian-user list helped
> me out with setting up & fixing my DNS server, which I am very thankful.
> Unfortunately I am now having problems with IRC which may or may not be
> related. 
> 
> When I try to connect to an IRC server, I get 'no authorization' errors
> because my system sends my IP instead of the hostname...  It does the same
> for all the machines that IP Masquerade through me.
> 
> On my system, I use ircii, epic, and kirc which all give the same results.
> On the machines using masquerading, I use mirc (win95).. same results.
> 
> How can I fix this?
> 
> Thanks
> -Paul
> 
> BTW- I finally fixed my problem w/ the mail domain defaulting to
> 3dillusion.3dillusion.com .. in the /etc/hosts I had '198.109.162.43
> 3dillusion.3dillusion.com 3dillusion' which I changed the full host name
> to 3dillusion.com. 
> 
> 
> 
> --
> TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
> [EMAIL PROTECTED] . 
> Trouble?  e-mail to [EMAIL PROTECTED] .
> 


--(fortune.sig)--
A committee is a group that keeps the minutes and loses hours.
-- Milton Berle


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


damn identity crisis

1997-11-28 Thread Paul Miller
A few weeks ago about three nice people from the Debian-user list helped
me out with setting up & fixing my DNS server, which I am very thankful.
Unfortunately I am now having problems with IRC which may or may not be
related. 

When I try to connect to an IRC server, I get 'no authorization' errors
because my system sends my IP instead of the hostname...  It does the same
for all the machines that IP Masquerade through me.

On my system, I use ircii, epic, and kirc which all give the same results.
On the machines using masquerading, I use mirc (win95).. same results.

How can I fix this?

Thanks
-Paul

BTW- I finally fixed my problem w/ the mail domain defaulting to
3dillusion.3dillusion.com .. in the /etc/hosts I had '198.109.162.43
3dillusion.3dillusion.com 3dillusion' which I changed the full host name
to 3dillusion.com. 



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


Re: Compiling land.c

1997-11-28 Thread Adam Shand
> The publichsed land.c doesn't compile cleanly with libc6 under linux.
> It's just a trivial job patching it to work right; here's the fixed
> source code:

Thanks kindly, I figured that's what it was (eventually) but my C skills
are not that good unfortunately.

Thanks for the code.

Adam.

 Internet Alaska --
 4050 Lake Otis Adam  Shand(v) +1 907 562 4638
 Anchorage, Alaska Systems Administrator   (f) +1 907 562 1677
- http://larry.earthlight.co.nz ---



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


Re: Compiling land.c

1997-11-28 Thread Adam Shand
> Why you need to compile this program?

Because I have a bunch of FreeBSD boxes that I need to make sure are no
longer vulnerable, and because I want a way of taking down boxes which
insist on aggressivly strobing our network and setting off my pager :)

> If you want to find out whether your linux is vulnerable, just upgrade
> you linux to 2.0.32.

That's Teardrop and the Pentium f00f bug... linux isn't vulnerable to this
attack.

Adam.

 Internet Alaska --
 4050 Lake Otis Adam  Shand(v) +1 907 562 4638
 Anchorage, Alaska Systems Administrator   (f) +1 907 562 1677
- http://larry.earthlight.co.nz ---



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


Re: 10/100Base-T Questiones

1997-11-28 Thread dpk
I have an SMC ethernet card with this chipset.  Mine autosenses, with a
catch:
   The linux driver settings defaults to 10baseT.  So when I load the
driver on a 100mb line, it will only change (autosense) once I send out
some type of network traffic.  So in my /etc/init.d/network I have it ping
the gateway once, just so it will switch... because one time I
rebooted my machine remotely from home, and then could not connect
to my machine at work!  (hate when that happens)

Adding the ping fixes this problem, and have had no problems with it.

Thanks,
Dennis
--
dpk <[EMAIL PROTECTED]>, Systems/Network |  work: 353.4844
Division of Engineering Computing Services |  page: 222.5875

On Thu, 27 Nov 1997, Kevin Traas wrote:

> I'm in the process of putting together a system for demo purposes and I
> would like to include a 10/100Base-T PCI network card that will
> automatically sense and switch to 10 or 100 Mbps at boot time.  (Depending
> on the network at a client's location.)
> 
> Will cards based on the DEC 21140 chipset do this or does the speed have to
> be set manually in a config file somewhere?
> 
> If this chipset/driver can't do it, do you know of one that can?
> 
> Regards,
> Kevin Traas
> 
> 
> --
> 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: Adaptec AHA-2940 (aic7xxx mailing list)

1997-11-28 Thread Peter S Galbraith

I think the aic7xxx driver in 2.0.32 is very recent.  There's is, however,
a patch for it on ftp.dialnet.net in /pub/linux/aic7xxx/2.0.32.  I haven't
used it yet, as I don't seem to have problems with the stock 2.0.32 driver.

> There is a mailing list but I can't find the address.  If you don't find
> it drop me a line and I'll look around.

Here goes:

  AIC7xxx   Adaptec Device Drivers
  This list is dedicated to the discussion of the Adaptec aic7xxx
  family of disk controllers and the driver support for them in
  FreeBSD and Linux.  This includes the AHA-274X, AHA-284X,
  AHA-2940, AHA-3940, and AHA-398X adapters.

To subscribe, send email to [EMAIL PROTECTED] with the body
of the message:

subscribe aic7xxx

-- 
Peter Galbraith, research scientist <[EMAIL PROTECTED]>
Maurice-Lamontagne Institute, Department of Fisheries and Oceans Canada
P.O. Box 1000, Mont-Joli Qc, G5H 3Z4 Canada  418-775-0852 - FAX 418-775-0546


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


Re: Pentium II supported?

1997-11-28 Thread Tommy Lakofski
On Fri, 28 Nov 1997, Hamish Moffatt wrote:

> On Thu, Nov 27, 1997 at 07:41:25PM -0500, Tommy Lakofski wrote:
> > The Pentium II is just a Pro with a different (anticompetitive ;) mounting
> > and different (cheaper) L2 caching (AFAIK). Choose 'Pentium Pro' in the
> > kernel compile configuration. 
> 
> Surely their are architectural improvements too. Also, the PII is running
> 233MHz with talk of 266 or 300 (or maybe they are already here); PPro
> doesn't go that fast?

I don't think there was anything all that major as far as architecture
goes, except for the addition of MMX extensions.  The 1/2 processor speed
cache allowed them to go faster than 200MHz -- the sychronous on-chip
cache of the Pro was stopping it going any faster because of the expense
of 233+MHz SRAM.


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


Re: Linux, a MicroSoft product? (fwd)

1997-11-28 Thread Ralph Winslow
On 28-Nov-97 Wintermute wrote:
>Pancho Horrillo wrote:
>> 
>> IS THIS TRUE?
>> I really NEED to know
>> I hope is simply a joke
>
>It's totally bogus.  I almost detect a bit of the recently passed
>controversy over the Linux patent dispute.
>
>Linux is an will remain a free operating system with ultimate power

>'Sides.. the boys at Microsoft wouldn't know where to begin even if they
>WERE interested in controlling Linux... ;D

Yeah, they have enough trouble trying to control their toy operating systems,
W95 & NT, they could NEVER manage control of anything as useful and elegant
as Linux!
>
>
>--
>TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
>[EMAIL PROTECTED] . 
>Trouble?  e-mail to [EMAIL PROTECTED] .

-
Ralph Winslow [EMAIL PROTECTED]
The IQ of the group is that of the member
whose IQ is lowest  divided by the number
of members.


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


time/date timezone problem

1997-11-28 Thread Paul Miller
How do I fix this:

# date
Fri Nov 28 08:40:27 Local time zone must be set--see zic manual page 1997

... I don't have a 'zic' manual page and my timezone is set to US/Michigan
according to tzconfig.

Thanks

---
Paul Miller <[EMAIL PROTECTED]>, finger for public PGP key
100 MB web space for $10/month, http://www.3dillusion.com


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


Re: screen snapshot

1997-11-28 Thread David Wright
On Thu, 27 Nov 1997, tko wrote:

> Wintermute writes:
> > 
> > [EMAIL PROTECTED] wrote:
> > 
> > > How does one get a snapshot/logfile of the bootup process? I know about 
> > > dmesg
> > > but the part which interest me is the processing which occurs _after_ 
> > > dmesg
> > > stops. I've seen various debug messages, but they scroll off the screen 
> > > before
> > > the login prompt comes up. I'd like to investigate and fix them if I could
> > > find out what they are. 8-)
> > 
> > As for taking a snapshot I'm not sure .but you can access things that 
> > roll off
> > of the screen by holding down shift and pressing the page up key to browse 
> > through
> > the buffer.
> 
> I already tried that. It doesn't work. I beleive that the buffer hasn't been
> set up yet until the login prompt. The stuff that I need to see appears
> _before_ the login prompt shows.
> 

I have no idea how linux implements said scrolling, but I can scroll back 
to the messages that are printed before the operating system loads (on a 
system that doesn't wipe the screen before and after scanning the SCSI), 
thusly:

--8<

AMIBIOS (C)1992 American Megatrends, Inc.
BIOS Version 1.00.05.CV2

0032768 KB

Please Wait...

Keyboard.Detected
MouseDetected

ATAPI Device Installed MATSHITA CR-583

Floppy A: Installed


NCR SDMS (TM) V3.0 PCI SCSI BIOS, PCI Rev. 2.0
Copyright 1993 NCR Corporation.
NCRPCI-3.07.00
ID 00   HP  C3325A
ID 04   iomega  jaz 1GB   j

Enter Password (1): 


LILO Loading Linux
Uncompressing Linux...done.
Now booting the kernel
Console: 16 point font, 400 scans
Console: colour VGA+ 80x25, 1 virtual console (max 63)
pcibios_init : BIOS32 Service Directory structure at 0x000fd2e0
pcibios_init : BIOS32 Service Directory entry at 0xfd2f0
pcibios_init : PCI BIOS revision 2.10 entry at 0xfd311
Probing PCI hardware.
Warning : Unknown PCI device (1002:5654).  Please read include/linux/pci.h
Calibrating delay loop.. ok - 53.04 BogoMIPS
Memory: 30880k/32768k available (732k kernel code, 384k reserved, 772k data)
Swansea University Computer Society NET3.035 for Linux 2.0

--8<

etc. etc.

But I'm glad vga=6 helped you.

--
David Wright, Open University, Earth Science Department, Milton Keynes MK7 6AA
U.K.  email: [EMAIL PROTECTED]  tel: +44 1908 653 739  fax: +44 1908 655 151


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


g77 command line options (sorry)

1997-11-28 Thread Karsten Bolding
Hi

I am in the process of porting and Fortran library to Linux. A script 
exists to do the entire compilation and testing based on input provide 
concerning
the hardware. Now my problem is that this install script uses a feature for 
compiling debug lines. Can I give g77 any command line options ala 
-d_lines.

Karsten


Karsten Bolding E-mail: [EMAIL PROTECTED]
Danish Hydraulic Institute  Switchboard:+45 45769555
Marine Impacts Department   Fax:+45 45762567
Agern Alle 5Direct: +45 45179351
DK 2970 HorsholmWWW:http://www.dhi.dk/



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


kernel-source-2.0.32...?

1997-11-28 Thread Martin Stromberg
Hi.


I haven't seen the kernel-source-2.0.32... package yet. Does anybody know
where it is?


Thanks,

MartinS


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


Re: squid

1997-11-28 Thread Miquel van Smoorenburg
According to Behan Webster:
> A thought.  We run amd here which we use to remotely mount /usr/share
> (amongst others that probably don't make any difference to squid).
> 
> Could that have anything to do with the problem we're experiencing with
> squid?  (i.e. it fails to start at boottime but works fine if restarted
> by root from the commandline once the coputer is up)

Depends, but it doesn't seem probable. You could try moving the symlink
around in /etc/rc2.d though, so that squid gets started after amd

Mike.
-- 
 Miquel van Smoorenburg |  Studying to be a technomage   <*>
[EMAIL PROTECTED]  | "May you live in interesting times"


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


Re: squid

1997-11-28 Thread Miquel van Smoorenburg
According to Behan Webster:
> Miquel van Smoorenburg wrote:
> > 
> > Neither can I, that's why I'd like you to try the latest version so that
> > _if_ something is wrong I can base the fix also on that latest version..
> 
> Drat.  Same problem using squid version 1.1.17-1.  This is what I found
> on the console after rebooting.
> 
> Running: squid -D -s -f /etc/squid.conf >> /var/log/squid/squid.out 2>&1
>/usr/lib/squid/RunCache: line 59:  
> 291 IOT trap/Abort  squid -D -s $conf >>$L 2>&1

Hey, that means you're still using an old /etc/init.d/squid, since the
new one prints totally different messages.

See if there's a /etc/init.d/squid.dpkg-dist file and copy that over
/etc/init.d/squid to see if it helps.

If it doesn't, do the following:

1. copy /etc/squid.conf somewhere safe
2. Rename /var/spool/squid to something else
3. dpkg --purge squid
4. dpkg -i squid_1.1.17-1.deb
5. /etc/init.d/squid stop
6. Copy your old squid.conf back and put back /var/spool/squid
7. /etc/init.d/squid start

That should give you a fresh installation

Mike.
-- 
 Miquel van Smoorenburg |  Studying to be a technomage   <*>
[EMAIL PROTECTED]  | "May you live in interesting times"


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


Re: Linux, a MicroSoft product? (fwd)

1997-11-28 Thread richard
Pancho Horrillo <[EMAIL PROTECTED]> writes:

>IS THIS TRUE?

No...

>Judge Richard Shortner, in an opinion handed down today, ruled that
   
>win this one on appeal" said attorney Lou Zurr.  "Well, anyway, I'm
   

etc etc etc

-- 
http://staff.elmail.co.uk/~richard/


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


Re: I need help setting up X

1997-11-28 Thread tko
Shaleh writes:
> 
> HELP!!!  I am stuck in 8 bit mode.  X insists that all of my modes are

Easy to fix. Edit /etc/X11/XF86Config... Go to "Section Screen" portion of the
file and find the description matching your equipment. Add the following line:

DefaultColorDepth 16

The new line will force a startup in 16 bit (65536 colors). You may want to
re-arrange the "Modes" line to put the most used resolution up front. Like
this...   Modes  "1024x768" "800x600" "640x480" instead of
  Modes  "640x480" "800x600" "1024x768"

-- 
-= Sent by Debian 1.3 Linux =-
Thomas Kocourek  KD4CIK - member of ARRL
@[EMAIL PROTECTED]@westgac3.dragon.com Remove @_@ for correct Email address
--... ...-- ...  -.. .  -.- -.. - -.-. .. -.-


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


Debian with non-free packages?

1997-11-28 Thread Volker Jahns
I wonder:
is there anybody who sells Debian with the non-free packages?

Volker
-- 
---
Dr. Volker Jahns Tel 089/356 386 14
science+computingFAX 089/356 386 37
Taunusstraße 36
D-80807 München  Email [EMAIL PROTECTED]
---


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


Re: ftp question

1997-11-28 Thread Nathan E Norman
On Fri, 28 Nov 1997, Paul Tanner wrote:

: Since my ISP upgraded to x2 56K I have been unable to ftp several sites
: (including ftp.debian.org)  However I can ftp , for example, prep.ai.mit.edu .
: 
: The ISP's old 33.6 system is available, as before, using the old phone
: number. (x2 was installed on a new phone number) After a failed attempt at
: ftp, I can log out of my 52k connection, then log on using the old phone
: number, and ftp the same site and, only a couple minutes later ---it works!
: (but at 31.2 or slower) I have repeated this enough times to be convinced it
: is not a random failure.

If I were a betting man, I'd guess that the problem lies in this
paragraph ... modems have IP addresses, so new modems are going to be
assigned new IP addresses.  Many FTP sites try to resolve the IP address
they find within an incoming packet back to a name, for some added sense
of security.  ftp.debian.org is a site that does this.  If you do not
have a PTR record defined, you won't be able to ftp!!  Likely as not,
your provider has not gotten around to reverse name-serving their new
modem pool, so many FTP sites are convinced you're a charlatan.

You can test this if you know what your IP address is - simply do an
nslookup on the IP address.  You'll find out soon enough if it's reverse
name-served or not.

If the new modems aren't reverse name-served, feel free to complain to
your provider. :)

: 
: The x2 system requires a different login procedure which, with the help of
: reading a recent discussion on this list, I was able to get connected.  The
: changes necessary were: changeing /etc/ppp.chatscript to end at CONNECT ,
: the new phone number, and writing my user name & password in
: /etc/ppp/pap-secrets.
: 
: I've been reading HOWTOs & man's, but haven't found the right clue.  BTW
: http's work OK using Mosaic, netscape, or lynx. (I've also tried ftp using
: these -- with no sucess). 
: 
: Here's a typical failure:
: ~$ftp ftp.debian.org
: Connected to santanni.cc.gatech.edu.
: 421 Service not available, remote server has closed connection
: 
: I'm using Debian 1.3.1 which I upgraded from 1.2 using the cheapbytes CD.
: All hints will be appreciated. Is this something I screwed up, (probably) or
: the provider's problem, or - - -?
: 
: Paul Tanner
: 
: 
: --
: TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
: [EMAIL PROTECTED] . 
: Trouble?  e-mail to [EMAIL PROTECTED] .
: 
: 

--
Nathan Norman
MidcoNet - 410 South Phillips Avenue - Sioux Falls, SD  57104
phone: (605) 334-4454 fax: (605) 335-1173
mailto://[EMAIL PROTECTED] http://www.midco.net
PGP Key ID: 0xA33B86E9 - Public key available at keyservers
PGP Key fingerprint: CE03 10AF 3281 1858  9D32 C2AB 936D C472



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


Re: FileSystem Sizes

1997-11-28 Thread E.L. Meijer \(Eric\)
> 
> > If I remember (off the top) correctly, lseek() is/was the limiting factor on
> > filesystem sizes...  At one time, this was 32bit, so max addressable
> > filesystem size was 2GB.
> > 
> > Has this changed?  i.e. what is the max ext2 filesystem size?
> 
>  It changed a long time ago. I used a 9 Gb partition without problems more
> than a year ago.

I think it is the file size that was limited to 2GB, not the partition
size.  I suppose this is still the case.

Eric Meijer

-- 
 E.L. Meijer ([EMAIL PROTECTED])  | tel. office +31 40 2472189
 Eindhoven Univ. of Technology | tel. lab.   +31 40 2475032
 Lab. for Catalysis and Inorg. Chem. (TAK) | tel. fax+31 40 2455054


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


Re: A few questions

1997-11-28 Thread jdassen
On Fri, Nov 28, 1997 at 03:22:50AM -0600, Cheng Tang wrote:
> 1. I have upgrade from libc5 to libc6 (in hamm/unstable).
> There are similar error messages when using dselect to
> install packages. (I have slang0.99.38 installed.)
> 
> ldconfig: warning: can't open /usr/lib/libc5-compat/libslang.so.0 (No such
> file or directory), skipping

This is a leftover from slang0.99.34 (i.e. S-lang for libc5); you can safely
remove this dangling link.

> 2. What is elf-x11r6lib? I can not find it, either on package list or
> search in debian homepage.

It used to be a virtual package provided by xlib6; if a package in
"unstable" still depends on it, that's a bug (probably already reported).

HTH,
Ray
-- 
Cyberspace, a final frontier. These are the voyages of my messages, 
on a lightspeed mission to explore strange new systems and to boldly go
where no data has gone before. 


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


A few questions

1997-11-28 Thread Cheng Tang
hi,

Thanks all for all the kind help for my last question. Since
I am new to debian system, I still have some question in
having it work properly. Hope you all are not bothered by 
my repetitive effort. :)

1. I have upgrade from libc5 to libc6 (in hamm/unstable).
There are similar error messages when using dselect to
install packages. (I have slang0.99.38 installed.)

ldconfig: warning: can't open /usr/lib/libc5-compat/libslang.so.0 
(No such file or directory), skipping

2. What is elf-x11r6lib? I can not find it, either on package
list or search in debian homepage.

 dpkg: dependency problems prevent configuration of fvwm:
 fvwm depends on elf-x11r6lib; however:
  Package elf-x11r6lib is not installed.

3. Some problem in update-menu, but I can not fix it.

In file "/usr/lib/menu/majordomo" at line 1:
command="/usr/doc/majordomo/majordomo-faq.html" description="Frequently asked
+questions about the Majordomo mailing  list manager" needs="dwww" section=""
+title="Majordomo FAQ"

+^
Missing (or empty) tag: section
 (This tag needs to defined for the menuentry to make sense)
/etc/menu-methods//fvwm2: Aborting
In file "/etc/menu-methods//menu.h" at line 0:
!include menu.h
^
Unable to open file
/etc/menu-methods//kde: Aborting
find: /var/catman: No such file or directory
find: /var/catman: No such file or directory

4. here are setting in /etc/login.defs, which yields an error.

# If set to "yes" /etc/issue will be output before each login prompt
ISSUE_FILE_ENAB no

configuration error - unknown item 'ISSUE_FILE_ENAB' (notify administrator)


Well, maybe too long and too many. Can anyone help me out? Thanx a lot!!

-cheng


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


Re: bash syntax

1997-11-28 Thread tibor simko
> "rick" == Rick Macdonald <[EMAIL PROTECTED]> writes:

rick> Can anybody confirm if this is fixed in bash-2.01?

$ bash -version
GNU bash, version 2.01.0(1)-release (i486-debian-linux-gnu)
Copyright 1996 Free Software Foundation, Inc.
$ ls -l
total 0
-rw---   1 simkosimko   0 Nov 28 10:10 a
-rw---   1 simkosimko   0 Nov 28 10:10 b
-rw---   1 simkosimko   0 Nov 28 10:10 c
$ ((ls);(ls))
a  b  c
a  b  c
$ ( (ls);(ls))
a  b  c
a  b  c 

cheers
-- 
[EMAIL PROTECTED]



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


Re: pci problem

1997-11-28 Thread Allen Burns
At 11:12 PM 11/27/97 -0600, you wrote: 

Debian won't let me partition my drive.   When I boot my machine with the rescue disk it loads root.bin  then it loads Linux. during the Linux load process it scrolls by and says that  it doesn't recognize my PCI card. When I try to partition my drive it say did  not find any drives on system, perhaps they are not connected  right.  I have a "Gateway 2000 UDMA" PCI Controller card.  Does Debian support this card, is there a driver for it? or am I  "SOL"  Thanks   Brian Turk 

This is the EXACT smae problem I am having except (don't you have it when ppl do that?) It will no give me an error, detecting my ZIP drive instead mabey? I think that anybody that could provide info on this card would be of great help to both of us. Also Brian have you called Gateway yet? I haven't because I figured that they wouldn't support any OS that they didn't ship? Let me know



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

Re: Pentium II supported?

1997-11-28 Thread Hamish Moffatt
On Thu, Nov 27, 1997 at 07:41:25PM -0500, Tommy Lakofski wrote:
> The Pentium II is just a Pro with a different (anticompetitive ;) mounting
> and different (cheaper) L2 caching (AFAIK). Choose 'Pentium Pro' in the
> kernel compile configuration. 

Surely their are architectural improvements too. Also, the PII is running
233MHz with talk of 266 or 300 (or maybe they are already here); PPro
doesn't go that fast?


hamish
-- 
Hamish Moffatt, StudIEAust  [EMAIL PROTECTED], [EMAIL PROTECTED]
Student, computer science & computer systems engineering.3rd year, RMIT.
http://hamish.home.ml.org/ (PGP key here) CPOM: [**] 60%
Your train has been cancelled due to defective government at Spring Street..


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


ftp question

1997-11-28 Thread Paul Tanner
Since my ISP upgraded to x2 56K I have been unable to ftp several sites
(including ftp.debian.org)  However I can ftp , for example, prep.ai.mit.edu .

The ISP's old 33.6 system is available, as before, using the old phone
number. (x2 was installed on a new phone number) After a failed attempt at
ftp, I can log out of my 52k connection, then log on using the old phone
number, and ftp the same site and, only a couple minutes later ---it works!
(but at 31.2 or slower) I have repeated this enough times to be convinced it
is not a random failure.

The x2 system requires a different login procedure which, with the help of
reading a recent discussion on this list, I was able to get connected.  The
changes necessary were: changeing /etc/ppp.chatscript to end at CONNECT ,
the new phone number, and writing my user name & password in
/etc/ppp/pap-secrets.

I've been reading HOWTOs & man's, but haven't found the right clue.  BTW
http's work OK using Mosaic, netscape, or lynx. (I've also tried ftp using
these -- with no sucess). 

Here's a typical failure:
~$ftp ftp.debian.org
Connected to santanni.cc.gatech.edu.
421 Service not available, remote server has closed connection

I'm using Debian 1.3.1 which I upgraded from 1.2 using the cheapbytes CD.
All hints will be appreciated. Is this something I screwed up, (probably) or
the provider's problem, or - - -?

Paul Tanner


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


Re: K6 and Debian (and heatsinks)

1997-11-28 Thread Nathan E Norman
On Thu, 27 Nov 1997, Frank Sergeant wrote:

[ snip ]
: 
:  Does anyone have any experience with this?  In
: the old days, voltage regulators and power transistors
: and such hot-running ICs usually were not just attached
: to their heatsinks bare, but were smeared with
: heatsink/thermal compound first in order to provide better
: heat transfer than a bare connection would provide.

A 300W RF amp built without using thermal compound will fail in a hurry
(and smell bad, too :)

: 
:  However, I have gathered that the typical CPU
: heatsink is just put on bare.  Is this just laziness
: on the part of assemblers or is there some legitimate
: reason to think the heatsink compound is not needed
: with CPUs?

Other than cost, no good reason whatsoever.  Most techs I've been around
have no idea that thermal compound exists, but I don't consider
ignorance a "legitimate excuse" in this case.

Personally, I've got a tube of compound at my desk; any PC I end up
fiddling with gets its heatsink checked.

--
Nathan Norman
MidcoNet - 410 South Phillips Avenue - Sioux Falls, SD  57104
phone: (605) 334-4454 fax: (605) 335-1173
mailto://[EMAIL PROTECTED] http://www.midco.net
PGP Key ID: 0xA33B86E9 - Public key available at keyservers
PGP Key fingerprint: CE03 10AF 3281 1858  9D32 C2AB 936D C472



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


syslog

1997-11-28 Thread Quake Master
Could someone help me understand this line i see from time to time in the
syslog?

 init: no more processes left in this runlevel




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


Re: Ultra SCSI

1997-11-28 Thread Nathan E Norman
On Thu, 27 Nov 1997, Kevin Traas wrote:

: I should also ask about the Mylex DAC960PD.  Or, are there any other
: Ultra-SCSI RAID controllers supported in Linux?
: 
: >Can anyone recommend an Ultra SCSI controller that works under Linux?
: >
: >I'm looking to hang several of the new 18GB Barracuda/Cheetah Seagate
: drives
: >off of one...
: >
: >I'm currently looking at the BusLogic Flashpoint BT-950.
: >
: >Is anyone using this card?  Any comments?
: 

The DPT 3334/UW works like a dream in Linux, although you do have to
configure it with the DOS config tools.  I've never tried running the
SCO tool under iBCS ... never was a big deal for me.  YMMV.

As far as UW SCSI controllers go, I've used two: the Adaptec 2940UW and
a NCR 53c875 (Symbios, this one is tainted by Compaq stuff).  I was
pleased with the 2940UW, but I've heard horror stories.  We ran two 4
gig Barracudas on that controller.  The NCR is in a brand new Compaq
Prosignia box.  It seems to be doing fine, no surprises or weirdness, 
except when compiling a new kernel; you have a choice for a driver
called NCR 52C7,8xx which seems like it would drive this card.  it
doesn't.  Worse, if you include that driver you don't get the choice to
include the NCR 53C8xx driver, which is the correct one.  Took me a
while to figure that out.

I've read a lot of good things about Buslogic SCSI cards, but I have no
first hand experience with them.

--
Nathan Norman
MidcoNet - 410 South Phillips Avenue - Sioux Falls, SD  57104
phone: (605) 334-4454 fax: (605) 335-1173
mailto://[EMAIL PROTECTED] http://www.midco.net
PGP Key ID: 0xA33B86E9 - Public key available at keyservers
PGP Key fingerprint: CE03 10AF 3281 1858  9D32 C2AB 936D C472



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


Re: Filling in the dialog boxes with Taper 6.8.2

1997-11-28 Thread Joey Hess
Frere Roy wrote:
> I'm beginning to think that the programme Taper is no longer being 
> supported by its author. 

I'm sure it still is. I've corresponded with the author only a few months
ago. Maybe he's busy or on vacation..
 
-- 
see shy jo


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


Re: Adaptec AHA-2940

1997-11-28 Thread Nathan E Norman
On Wed, 26 Nov 1997, Matthew Tebbens wrote:

: 
: I know Linux supports the 2940, but while re-compiling the
: kernel I don't see anything with '2940'.
: 
: Are there any web pages or mailing lists with help/support
: for th Adaptec AHA-2940 ??
: 
: Thanks
: Matthew
: 

Adaptec controllers are usually referenced by the chipset rather than
the model number, so you want to enable the aic7xxx driver.  Some have
good luck with this, some don't have any luck at all!! (Adaptec isn't
too keen on supporting free software :/ )

There is a mailing list but I can't find the address.  If you don't find
it drop me a line and I'll look around.

--
Nathan Norman
MidcoNet - 410 South Phillips Avenue - Sioux Falls, SD  57104
phone: (605) 334-4454 fax: (605) 335-1173
mailto://[EMAIL PROTECTED] http://www.midco.net
PGP Key ID: 0xA33B86E9 - Public key available at keyservers
PGP Key fingerprint: CE03 10AF 3281 1858  9D32 C2AB 936D C472



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


Re: System pauses with AHA 1522 running a Pentuim II 266MMX system

1997-11-28 Thread Lawrence
1522 is not a bus master card, it may be the bottleneck, though not
sure.

Lawrence

Michael Brown wrote:
> 
> When play and watching avi's and multimedia, the system pauses every 3
> seconds.  One time I opend up the case and looked at the SCSI card while
> watching an avi file, the LED located on the SCSI card flashed every 3
> seconds. So I came to the conclusion that that was causing the pausing
> motion within the multimedia playback.  If this is the problem, sould I get
> a faster SCSI card and what do you recommend?
> 
> P.S that LED located on the SCSI card only seems to flash as soon as i load
> Windows'95 up.
> 
> P.S.S I also have a one Internal device and One External Device.


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


pci problem

1997-11-28 Thread Brian turk




Debian won't let me partition my drive. 
 
When I boot my machine with the rescue disk it loads root.bin 
then it loads Linux. during the Linux load process it scrolls by and says that 
it doesn't recognize my PCI card. When I try to partition my drive it say did 
not find any drives on system, perhaps they are not connected 
right.
 
I have a "Gateway 2000 UDMA" PCI Controller card. 
Does Debian support this card, is there a driver for it? or am I 
"SOL"
 
Thanks 
 
Brian Turk


Re: yet another ppp problem

1997-11-28 Thread Dale Harrison
> Does anyone out on the list know which startup file it is that sets the
> initial network routes?  (Since I've never had anything but ppp, I never
> found out)  You might consider seeing if routes are being set up for your
> ethernet card at boottime, and disabling them, at least until such time as
> you are in an environment where you can use your card again.

/etc/init.d/network

D.


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


Re: K6 and Debian (and heatsinks)

1997-11-28 Thread Dale Harrison
> 
> Most CPU fans I've seen come with a pad of conductive [something] which
> goes between the processor and the heatsink.  I would think that something
> like this would be essential, given that the surfaces are probably not
> perfectly flat (on a nano scale).

I think it's more a case of sheer laziness. The thermal grease doesn't
come with the heatsink/fan combo, so has to be purchased seperately, and
applied.

At work, if we happen to see a tube of thermal grease, we'll apply some,
but we don't break our necks looking for it or anything.

D.


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


Re: Linux, a MicroSoft product? (fwd)

1997-11-28 Thread Wintermute
Pancho Horrillo wrote:
> 
> IS THIS TRUE?
> I really NEED to know
> I hope is simply a joke
> 
> thx
>

It's totally bogus.  I almost detect a bit of the recently passed
controversy over the Linux patent dispute.

Linux is an will remain a free operating system with ultimate power
resting in the hands of its users and no one person alone.  This post is
hooey.  It's also not that humourous, so I imagine someone created it
just to get a rise out of Linux users.

Legal authority over Linux resides presently with Linus Torvalds, and I
don't see that changing any time in the near or distant future.

'Sides.. the boys at Microsoft wouldn't know where to begin even if they
WERE interested in controlling Linux... ;D


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


Linux, a MicroSoft product? (fwd)

1997-11-28 Thread Pancho Horrillo
IS THIS TRUE?
I really NEED to know
I hope is simply a joke

thx
--
Pancho Horrillo
[EMAIL PROTECTED]

-- Forwarded message --
Date: Thu, 27 Nov 1997 23:33:23 +
From: Miguel Angel Alvarez <[EMAIL PROTECTED]>
Newsgroups: es.comp.os.linux
Subject: Linux producto de M$?

Joder, mirad lo que he encontrado por ahi. Anda que como sea verdad, ya
les vale a esos hijosputa



>From - Thu Nov 27 23:23:27 1997
Path:
news.mad.ibernet.es!newsfeed.mad.ibernet.es!news.rediris.es!news-ge.switch.ch!news-fra1.dfn.de!Cabal.CESspool!bofh.vszbr.cz!news.maxwell.syr.edu!news-peer.sprintlink.net!news.sprintlink.net!Sprint!newsfeed.internetmci.com!206.112.192.109!newsfeed.one.net!news.one.net!not-for-mail
From: [EMAIL PROTECTED]
Newsgroups: comp.os.linux.misc,alt.os.linux,comp.os.linux.advocacy
Subject: Linux now a Microsoft Product?
Date: Sat, 22 Nov 1997 03:04:20 GMT
Organization: RainbowHolt
Lines: 61
Message-ID: <[EMAIL PROTECTED]>
NNTP-Posting-Host: 206.112.195.222
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Summary: And that's the Truth
X-Newsreader: Forte Agent .99g/32.339
X-No-Archive: yes
Xref: news.mad.ibernet.es comp.os.linux.misc:1032098
alt.os.linux:1007766 comp.os.linux.advocacy:1036681

I received the by email from my linux guru. I didn't think it was
true.  I went to the MS site to register, and when entering the type
of shell I use, zsh was not listed. Was I correct in registering it as
a bash?  Somehow my Win95 machine just feels... closer to me now.

--

AAP Worldwide Wire Service11/21/97 06:00 GMT
(Hirchsrgig, MS)-The computer world has been shaken to its core by a
legal decision that has immense implications worldwide.  In a ruling
that is certain to become a hotbed of controversy, a US Federal Judge
in Hirchsrgig Mississippi ruled that Microsoft legally holds all
rights to the "Linux" operating system.

Judge Richard Shortner, in an opinion handed down today, ruled that
the Linux operating system is not "free software," and that the "GNU
Public License" is not legally binding, thus giving final legal
approval to the US Patent Office's conditional approval of Microsoft's
patent application.

Attorneys for the Free Software Foundation, Inc., a Boston-based
foundation, were outraged.

"This is a travesty of justice.  I absolutely guarantee that we will
win this one on appeal" said attorney Lou Zurr.  "Well, anyway, I'm
pretty sure of it."

The appeal, however, may take some time to construct.  Before an
appeal will be considered by the court, most copies of Linux currently
in use must be properly registered through Microsoft.  Industry
analysts expect that many Linux users will simply disregard this
ruling, a move which will delay the appeal process. 

"This court order allows law enforcement to take the necessary actions
to ensure compliance.  If we don't have 800,000 license applications
within 90 days, the story is over" said Microsoft attorney Michael
Aronoff.  Microsoft's legal team consisted of some sixteen attorneys,
who presented the case in about 90 minutes.

Legal experts were surprised by the ruling, though most say it's
technically a correct ruling.  

"Some of the language used in the GNU Public License is clearly
without legal standing" advises Harvard Law School Professor Solemon
Hann.  "The foundation just never expected to go up against the big
legal guns of Microsoft.  This is going to be interesting..."

Bill Gates, cult-hero, cultural icon, President and CEO of Microsoft,
held a news conference from his vacation ski-lodge Winter home near
Vail, Colorado.  His tone was one of reassurance to the many users of
Linux.

"Look, I'm not out to take away anyone's hard work.  But it's ours
legally.  And we're keeping the license fee to a very reasonable $30
per machine. The registration process will be easy, but we do require
a credit card" advised Mr. Gates, who asked reporters to call him
Bill.

"We're going to build the registration into a free Linux version of
Internet Explorer 4.0 for everyone's convenience."



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


Re: screen snapshot

1997-11-28 Thread tko
Jason Gunthorpe writes:
> 
> 
> On Wed, 26 Nov 1997 [EMAIL PROTECTED] wrote:
> 
> > This question has probably been asked before ... anyhow;
> > 
> > How does one get a snapshot/logfile of the bootup process? I know about 
> > dmesg
> > but the part which interest me is the processing which occurs _after_ dmesg
> > stops. I've seen various debug messages, but they scroll off the screen 
> > before
> > the login prompt comes up. I'd like to investigate and fix them if I could
> > find out what they are. 8-)
> 
> Sometimes interesting errors and warnings will end up in /var/log/*. What
> I did though is add 'vga=6' to /etc/lilo.conf to boot into 80x50 line
> mode, then nothing scrolls off in the first place ;>

Hurray! the 'vga=6' did the trick! Thanks You, Thank You!

-- 
-= Sent by Debian 1.3 Linux =-
Thomas Kocourek  KD4CIK - member of ARRL
@[EMAIL PROTECTED]@westgac3.dragon.com Remove @_@ for correct Email address
--... ...-- ...  -.. .  -.- -.. - -.-. .. -.-


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


Re: screen snapshot

1997-11-28 Thread tko
Wintermute writes:
> 
> 
> 
> [EMAIL PROTECTED] wrote:
> 
> > This question has probably been asked before ... anyhow;
> >
> > How does one get a snapshot/logfile of the bootup process? I know about 
> > dmesg
> > but the part which interest me is the processing which occurs _after_ dmesg
> > stops. I've seen various debug messages, but they scroll off the screen 
> > before
> > the login prompt comes up. I'd like to investigate and fix them if I could
> > find out what they are. 8-)
> >
> 
> As for taking a snapshot I'm not sure .but you can access things that 
> roll off
> of the screen by holding down shift and pressing the page up key to browse 
> through
> the buffer.

I already tried that. It doesn't work. I beleive that the buffer hasn't been
set up yet until the login prompt. The stuff that I need to see appears
_before_ the login prompt shows.

-- 
-= Sent by Debian 1.3 Linux =-
Thomas Kocourek  KD4CIK - member of ARRL
@[EMAIL PROTECTED]@westgac3.dragon.com Remove @_@ for correct Email address
--... ...-- ...  -.. .  -.- -.. - -.-. .. -.-


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


Re: Netscape Comm. 4.03

1997-11-28 Thread Paul Miller
On Thu, 27 Nov 1997, Daniel Martin wrote:

> First off, I use netscape 4.03 on my machine without problems (well, it's
> huge and sucks away cpu, but...).
> 
> Questions:
> 1) Did you install netscape with the debian netscape4 package?

no, Netscape has a nice little installation script to install it.  It
shouldn't really matter anyways..

> 2) How many bits per pixel in your X server running at?  The wierd
> background color changes are probably a sign that your server has fewer
> colors available than netscape wants, and so netscape is trying to cope by
> switching color maps.

that is because netscape is installing its own color map (because there is
not enough available), I think there is an option to force it not to.  try
netscape --help

You should probably be running in at least 16 bit color mode.  Right now
you most likely in 8 bit.  try startx -- -bpp 16  (or 24)

> 3) What (if anything) is the value of your MOZILLA_HOME environment
> variable?

where netscape was installed.  I don't know where Debian installs
netscape, but it probably has its own directory so it shouldn't be hard to
find.  Mine is set to /usr/local/netscape..  You'll want to add a line
similar to 'export MOZILLA_HOME=/usr/local/netscape' in you /etc/profile
file.

-Paul


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


Re: Netscape Comm. 4.03

1997-11-28 Thread Daniel Martin
First off, I use netscape 4.03 on my machine without problems (well, it's
huge and sucks away cpu, but...).

Questions:
1) Did you install netscape with the debian netscape4 package?
2) How many bits per pixel in your X server running at?  The wierd
background color changes are probably a sign that your server has fewer
colors available than netscape wants, and so netscape is trying to cope by
switching color maps.
3) What (if anything) is the value of your MOZILLA_HOME environment
variable?


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


Re: reset console/term (tty0)

1997-11-28 Thread Wintermute
Daniel Martin wrote:
> 
> On Wed, 26 Nov 1997, Paul Miller wrote:
> 
> > How do I reset the console (tty0, etc)?  The reason I ask is because when
> > I executed gzip -dc file.tar.gz without the |tar -xvf -, my text became
> > unreadable - translated into high ascii characters.. I remember that there
> > was a control sequence to reset it, but I couldn't figure out what it was.
> >
> > Thanks
> 
> The control sequence you probably want is Escape-c (^[c) - this resets
> everything (and as a side effect clears the screen).  Ctrl-O probably
> would have fixed your letters, but escape-c is much more general, and
> fixes many more problems.
> 
> I think the HOWTO that covers this is the Console HOWTO.
> 
>

Another thing you may try (even though it contains more letters) is just
typing 'reset' and pressing return.  This should reread the termcap
entry for your console and reset the screen back to normal.  You won't
be able to see it as you type it, you'll be flying blind.


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


Re: reset console/term (tty0)

1997-11-28 Thread Daniel Martin
On Wed, 26 Nov 1997, Paul Miller wrote:

> How do I reset the console (tty0, etc)?  The reason I ask is because when
> I executed gzip -dc file.tar.gz without the |tar -xvf -, my text became
> unreadable - translated into high ascii characters.. I remember that there
> was a control sequence to reset it, but I couldn't figure out what it was. 
> 
> Thanks

The control sequence you probably want is Escape-c (^[c) - this resets
everything (and as a side effect clears the screen).  Ctrl-O probably
would have fixed your letters, but escape-c is much more general, and
fixes many more problems.

I think the HOWTO that covers this is the Console HOWTO.


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


Re: yet another ppp problem

1997-11-28 Thread Daniel Martin
On 27 Nov 1997, Larry G. Gariepy Jr. wrote:

> Martin,
> Hey, thanks.  That totally worked!  I am just dialing in from home, so I 
> am
> not using the ethernet card at all right now.  However, it did come in handy
> initially.  I had my computer shipped to me at the Math Department at 
> Dartmouth
> (I am a graduate student there), and so I just plugged it into the ethernet
> port, and downloaded everything I need from a friend's machine.  What was even
> more awesome was that a friend of mine right down the hall happened to be
> running a Debian mirror!!  Downloading packages at 1MB/sec is pretty nice!! 
> Beats the crap out of this modem stuff... oh well.
> 
> Thanks again for your help.  I did notice one small problem.  When I tried to
> telnet, I could reach one network at school, but not any others.  I could 
> reach
> just about anywhere in the country except the servers at school that I am not
> dialing into.  It says "route unknown" or something like that when I try it.
> 

A fellow math. grad. student!  This problem sounds suspiciously like it
could still be left over routes from your ethernet card - what does
'/sbin/route' (no arguments) say?  If it still has any routes listed as
going through device eth0, delete them (with 'route del ') and try
your telneting again.  (Though why it says 'route unknown' with this
problem puzzles me, but...)  If you're only connected via ppp, the only
devices you should see for the routes are 'ppp0' and 'lo'.

Does anyone out on the list know which startup file it is that sets the
initial network routes?  (Since I've never had anything but ppp, I never
found out)  You might consider seeing if routes are being set up for your
ethernet card at boottime, and disabling them, at least until such time as
you are in an environment where you can use your card again.


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


awe64 problem!

1997-11-28 Thread Benoit Joly
hi,

i have some prob with my awe64...

i compiled my kernel with sb16 support irq 5, dma 1, hdma 5, ...

(i looked in my windows for these settings, so it's supose to be good)

and when i boot i can only see:

sound init started 
sound init finish

so i suppose that's because my card is pnp, and then ran 
isapnp /etc/isapnp.conf (from pnpdump)...

but when i do cat /dev/sndstat

my card doesnt seems to be detected in audio section

what's wrong??

Thanks in advance!

Benoit


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


Re: bash syntax

1997-11-28 Thread Rick Macdonald
On 25 Nov 1997, Eloy A. Paris wrote:

> Witold Grabysz <[EMAIL PROTECTED]> wrote:
> 
> : the following phrase doesn't work in bash:
> : ((ls);(ls))

> Yup, you're right; it's probably a bug. This does work:
> 
> ( (ls);(ls))

Can anybody confirm if this is fixed in bash-2.01?

> Try changing the definition of the helper in Netscape to follow the
> above syntax.

I couldn't find anyplace in Netscape (4.04) where this is configurable.
Have you been able to change this in Netscape?

...RickM...



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


Re: Pentium II supported?

1997-11-28 Thread Tommy Lakofski
On Fri, 28 Nov 1997, Richard L Shepherd wrote:

> Do Pentium II chip machines run Linux?  For instance the kernel build
> procedure (e.g. make xconfig) only has options for up to Pemtium Pro
> machines, which may be just a case of someone not having got-around-to
> putting the options in yet, or is there a bigger reason like "it doesn't
> go yet"?

The Pentium II is just a Pro with a different (anticompetitive ;) mounting
and different (cheaper) L2 caching (AFAIK). Choose 'Pentium Pro' in the
kernel compile configuration. 



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


Re: screen snapshot

1997-11-28 Thread Ranty
Well, you could try hitting "screen lock" key. That shout frize the screen.
And let you read whatever.

PS: Sorry if the key is not called "screen lock", but I am spanish and my
keyboard calles it "Bloq Despl" --> "Bloqueo Desplazamiento"

Ranty

On Thu, 27 Nov 1997, Paul Miller wrote:

> hmm.. look in /var/log/messages
> 
> -Paul
> 
> On Wed, 26 Nov 1997 [EMAIL PROTECTED] wrote:
> 
> > This question has probably been asked before ... anyhow;
> > 
> > How does one get a snapshot/logfile of the bootup process? I know about 
> > dmesg
> > but the part which interest me is the processing which occurs _after_ dmesg
> > stops. I've seen various debug messages, but they scroll off the screen 
> > before
> > the login prompt comes up. I'd like to investigate and fix them if I could
> > find out what they are. 8-)
> > 
> > -- 
> > -= Sent by Debian 1.3 Linux =-
> > Thomas Kocourek  KD4CIK - member of ARRL
> > @[EMAIL PROTECTED]@westgac3.dragon.com Remove @_@ for correct Email address
> > --... ...-- ...  -.. .  -.- -.. - -.-. .. -.-
> > 
> > 
> > --
> > 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] .
> 
> 


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


Install Prob

1997-11-28 Thread Allen Burns
Ok here's what I do: I have made Disks of most (all of the ones I need) off
of the Debian site. So I stick in the rescue disk reset and boom it (the
install prog) starts. When I try to partition my HD it doesn't dectect my
HD it detects my IDE ZIP drive? If I don't have a disk in my ZIP drive then
it (the install prog) will not work. Any Ideas? Thanx in advance!


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