Supplemental Info about kernel problem

1997-05-27 Thread Seth Rutenberg
Please allow me to repeat myself and add some more (relative?) info:

I am having difficulty compiling kernel v. 2.0.27.
I was/am using a precompiled kernel which is also v. 2.0.27.
I am using Binutils v. 2.7.0.3, which is the version listed as current in
/usr/src/linux/Documentation/Changes
I am using GCC v. 2.7.2.1

Here is the output from make:
ld: warning: cannot find entry symbol _start; defaulting to 000fffe0
nm vmlinux | grep -v '\(compiled\)\|\(\.o$\)\|\( a \)' | sort  System.map
make[1]: Entering directory
`/usr/src/kernel-source-2.0.27-2/arch/i386/boot'
make[2]: Entering directory
`/usr/src/kernel-source-2.0.27-2/arch/i386/boot/compressed'
./xtract /usr/src/kernel-source-2.0.27-2/vmlinux | gzip -9 | ./piggyback 
piggy.o
Non-GCC header of 'system'
Compressed size 20.
ld -qmagic -Ttext 0xfe0 -o vmlinux head.o misc.o piggy.o
ld: warning: cannot find entry symbol _start; defaulting to 0fe0
misc.o: In function `fill_inbuf':
misc.o(.text+0x1ebc): undefined reference to `input_data'
misc.o(.text+0x1ec1): undefined reference to `input_len'
misc.o(.text+0x1ed7): undefined reference to `input_data'
make[2]: *** [vmlinux] Error 1
make[2]: Leaving directory
`/usr/src/kernel-source-2.0.27-2/arch/i386/boot/compressed'
make[1]: *** [compressed/vmlinux] Error 2
make[1]: Leaving directory `/usr/src/kernel-source-2.0.27-2/arch/i386/boot'
make: *** [zImage] Error 2

Any insights into the cause or solution to this problem are greatly
appreciated.


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


Re: alien, xfree86, and other bugs

1997-05-27 Thread Joey Hess
Alex Yukhimets:
 why did you upload only to hamm? Why do you think it is OK to have
 broken package in what is even not yet Debian 1.3 and considered to
 be the most stable? 

Frozen is closed for all but critical bugs. The bug I fixed in alien was not
a critical bug.

-- 
see shy jo


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


Re: help with perl

1997-05-27 Thread Craig Sanders

Thanks for the help...it explains why the syntax was (as far as I could
tell) OK yet it still didn't work properly. I should have diffed the
output of my test script rather than relying on a visual grep late at
night :-).

On 26 May 1997, Roderick Schertler wrote:

 On Mon, 26 May 1997 23:40:35 +1000 (EST), Craig Sanders [EMAIL PROTECTED] 
 said:
 
  The database is a .db file created with 'makemap hash redir redir'
  from [:space:]-delimited source input like the following:
 [...]
  //.*riddler.com/Commonwealth/bin/statdeploy.* //www.taz.net.au/blank_ad.gif
 
 The problem is that makemap downcases the keys by default so
 Commonwealth is commonwealth in the map. Use the -f flag when building
 the map to disable this behavior.

The Answer!  Thanks!

 Since you're always scanning the db linearly, though, using a DB map
 isn't buying you anything.  I'd just read the patterns from the text
 file directly.

I'm using the hashed db for speed and convenience.

One advantage of the db file is that comments are stripped out by makemap
which means i can have as many comments as i like in the source text but
it wont slow down the script at allquite important when on some of my
squid boxes this script has to do 5+ lookups per hour.

Also, unless the tie function (or similar) can work with text files as
well as db files, there will also be the overhead of opening  closing the
file for every URL, plus the overhead of parsing each line into it's two
fields...

e.g. with one hundred entries in the file on a moderately busy machine
like the one above, that would be 50,000 open  close operations per hour
plus up to 5,000,000 line parsing operations (most URLs scanned WON'T
match any of the patterns so the loop will have to run to completion. very
rough calculations(*) from my squid log files indicate that around 10% of
URLs are banner advertisements) per hour. 

I could just read the text file into an array but that would mean i was
back where i started - having to restart squid when i make a change to the
database.  alternatively i could modify the script to respond to SIGHUP by
re-reading the text file.

(*) 'wc -l access.log'   vs   'grep blank_ad.gif access.log | wc -l'

about 10% of the entries in the access.log over the last month were
advertising banners redirected to blank_ad.gif by my script. this
is on my lightly-used squid box at home where i do most of my web
browsing in non-commerical linux  'weirdness' related areas. I
don't block advertising on my big squid at work, but I would guess
that the proportion would be much higher. To tell the truth, I
didn't mind banner ads until they started using FLASHING animated
gifs - whoever invented gif animations should be drawn and quartered
very slowly over a hot fire.


 Gratuitous unsolicited style tip #1:  Don't put semicolons after a
 closing brace except for do and eval blocks, and sub ref constructors.

a bad habit, i know.  it's easier to just put them in after every } rather
than have to remember the exceptions where they're required.


 Gratuitous unsolicited style tip #2:  This code would more idiomatically
 be
 
 print $url== if $debug;
 while (($key, $record) = each %redir_db) {
   if ($url =~ s/$key/$record/) {
   print $url;
   last;
   }
 }
 print \n;

yes, that's much better.  thanks.  i knew there was a way of dropping out
of the loop quickly without using an ugly $found variable but couldn't
remember what it was.

craig

--
craig sanders
networking consultant  Available for casual or contract
temporary autonomous zone  system administration tasks.


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


root user and nfs mounts

1997-05-27 Thread Colin Telmer
-BEGIN PGP SIGNED MESSAGE-

Currently I mount my home directory from a departmental AIX machine using
the following exports on the AIX machine:

/home3/telmerco -access=sargan:terrapin

and the following fstab on my debian hamm machine:

qed:/home3/telmerco   /home/telmerco/qed  nfs  defaults  0  0

Given this setup, as root I cannot cd into /home/telmerco/qed. However,
when I run tob (tape backup program) every night (from a root crontab), I
would like to back up my files from this nfs mount along with the local
files. Currently, I have user telmerco run a crontab job just before the
tob job which makes a tar file of all my files in the nfs mount and stores
it in /home/telmerco so the root tob job can back them up. This leaves a
large tgz file lying around, and altough I could just put a command to
erase it after the tob job is done, I would prefer to do it a much cleaner
way by allowing root to traverse the nfs mount (as long it is safe and the
are no heavy security concerns on the AIX sysadmin's part). I dug through
the man pages for nfs(5) and mount(8) and it seems like I could use
something that maps root uid 0 to an anon uid that I specify, for example,
208 (telmerco's uid). Is this possible? Is it safe? And finally, is there
a better way to do it? Cheers, Colin.

- --
  Colin R. Telmer, Institute of Intergovernmental Relations
School of Policy Studies, Queen's University
 Kingston, Ontario, Canada, K7L-3N6
  (613)545-6000x4219   [EMAIL PROTECTED]
 PGP Fingerprint = 09 E9 DA 66 9C EE 33 DC  B8 3B 97 0E 01 BC EC 0B
   PGP Public Key at URL:http://terrapin.econ.queensu.ca


-BEGIN PGP SIGNATURE-
Version: 2.6.3ia
Charset: noconv

iQCVAwUBM4oetRhhzOJJktw1AQG9lwP/fSV1cdDundY2CsU6m+aZAQeWceKclcZX
fz9BqwTRWj3as8JqHF2Ay9XfqmAaqDvQ4oNdI1f9tD/Hi3gjYKup/6J4D7UO7Zuz
qDKV79dcY9CeCQ/vjhiU/4GFhKi8Cdx9xpAwyqfQ9Bz7Y2lKuNGB7WYqd5yT6BCZ
Kxh47lv+Row=
=x+cB
-END PGP SIGNATURE-


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


Re: Get this when using perl...

1997-05-27 Thread Martin . Bialasinski
On 26 May, David Puryear wrote:

 perl: warning: Setting locale failed for the categories:
 LC_CTYPE LC_COLLATE
 perl: warning: Please check that your locale settings:
 LC_ALL = (unset),
 LC_CTYPE = (unset),
 LC_COLLATE = (unset),
 LANG = us
 are supported and installed on your system.
 perl: warning: Falling back to the C locale.  
 
 What do I need to do in order to fix this?

Welcome to the club so to say. At least I am not the only one :-) (Get
the look at the archives of this month)

Someone suggested to use LANG=en (but this did't work for me).

What version of perl do you use. Did you install libc6 ?

This really gives me the impression that I should file a bugreport.

Ciao,
Martin



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


Re: ADSM/iBCS

1997-05-27 Thread Paul Seelig
On Mon, 26 May 1997, Colin Telmer wrote:

 Is anyone successfully using any version of the ADSM backup software
 (client) with the iBCS module package? I can easily get the modules
 installed (although I had to rebuild the package), and I used to be able
 to run the sco client under 1.1, but I am now running hamm and all I get
 is segfaults. Any help is gratefully appreciated. Cheers, Colin.
 
Actually i'm right now sitting at our Debian Linux machine and have
succeded to have it all up and running. There is the Linux ADSM
Mini-Howto by Thomas Koenig [EMAIL PROTECTED] from
1996/01/03 which provided me with all the missing information to get
it going. But we are running Debian Linux 1.2.16 here and i suppose we
will only be upgrading to 1.3 shortly before Debian 1.4 (2.0?) gets
finally released. We can't afford any experiments...

Cheers, P. *8^)
--
   Paul Seelig [EMAIL PROTECTED]
   African Music Archive - Institute for Ethnology and Africa Studies
   Johannes Gutenberg-University   -  Forum 6  -  55099 Mainz/Germany
   Our AMA Homepage  in  the WWW at  http://www.uni-mainz.de/~bender/



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


Re: root

1997-05-27 Thread Martin . Bialasinski
On 26 May, Jesse Goldman wrote:
 Hi,
 
 Curious thing just happend on my machine. All of a sudden, I'm no longer
 allowed to su to root. An attempt results in You are not authorized to
 su root. Could this be related to the secure-su package? The suauth
 file is the standard one and doesn't forbid me from switching to root. On
 a different machine with the same version of secure-su installed, I *can*
 su to root though. Does anyone know why this might happen?
 

Check your /etc/login.defs for:

# If yes, the user must be listed as a member of the first gid 0 group
# in /etc/group (called root on most Linux systems) to be able to su
# to uid 0 accounts.  If the group doesn't exist or is empty, no one
# will be able to su to uid 0.
# 
SU_WHEEL_ONLY   yes

Ciao,
Martin


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


Re: Get this when using perl...

1997-05-27 Thread David Puryear
Hi all,

Thanks to everyone, I got few different answers to this. I used answer from 
Manoj Srivastava [EMAIL PROTECTED] who wrote:

From my .bash_vars file:

LANG=en_US
export LANG
LC_ALL=C
export LC_ALL


This works for me.:-) I don't know if this debian thing to do, but it
works. Since I got this errors after installing Star Office, not with anything
to do with debian, I won't know who to report this bug to.;~)

Cheers,
David

On 26-May-97 [EMAIL PROTECTED] wrote:
On 26 May, David Puryear wrote:

 perl: warning: Setting locale failed for the categories:
 LC_CTYPE LC_COLLATE
 perl: warning: Please check that your locale settings:
 LC_ALL = (unset),
 LC_CTYPE = (unset),
 LC_COLLATE = (unset),
 LANG = us
 are supported and installed on your system.
 perl: warning: Falling back to the C locale.  
 
 What do I need to do in order to fix this?

Welcome to the club so to say. At least I am not the only one :-) (Get
the look at the archives of this month)

Someone suggested to use LANG=en (but this did't work for me).

What version of perl do you use. Did you install libc6 ?

This really gives me the impression that I should file a bugreport.

Ciao,
   Martin


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


IP Masq

1997-05-27 Thread Michael Solomani Mifsud

Hmm, having some problems.  For IP Masq to work on a debian machine, and
to have all the ip_masq* modules included, what do I pick in the kernel
config?  I have always assumed you only need to turn on ip
forwarding/gatewaying (CONFIG_IP_FORWARD) in the kernel config to have all
the IP_masq modules installed and have ip_masq active in the kernel.  But,
when I install the new kernel  and do a modprobe for any of the ip_masq*.o
modules they do not exist.  ???


PaChi,

michl

electric RAIN   http://www.electric-rain.net/


The division of humanity into rulers and
ruled will always be unalterable.



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


Re: help with perl

1997-05-27 Thread Roderick Schertler
On Tue, 27 May 1997 09:32:23 +1000 (EST), Craig Sanders [EMAIL PROTECTED] 
said:

 One advantage of the db file is that comments are stripped out by
 makemap which means i can have as many comments as i like in the
 source text but it wont slow down the script at all [...]

You could get the same result by preprocessing any configuration file to
remove comments and blank lines.

 Also, [using a text rather than a DB file] there will also be the
 overhead of opening  closing the file for every URL, [...]

You don't have to reopen it for a text file any more than you do for a
DB file.  Keep the file open and seek() to the beginning before the
loop.  The preprocessor just has to be careful to overwrite the file in
place instead of removing or moving the old one out of the way.

 [...] plus the overhead of parsing each line into it's two fields...

DB has its own overhead, though.  Since you're always scanning the file
linearly I think the overhead will be less with the text file.  It's
just my instinct.  If I were writing the application and the speed were
important to me I'd benchmark both approaches.

 [...] - whoever invented gif animations should be drawn and
 quartered very slowly over a hot fire.

Amen.

-- 
Roderick Schertler
[EMAIL PROTECTED]


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


staroffice problems

1997-05-27 Thread System Account
hi all :)

i downloaded the static dist of staroffice. set it up in
/usr/local/StarOffice-3.1 and then ran the setup (not as root). everything
went fine until i type swriter3.. it starts then dies. does it require a
printer? i have my printer on a different system.

Adrenolin [~]$swriter3
Could not open XPrinter.
Please make sure your XPPATH is set correctly.
Calling exit() 

this happens to all application except for simage3 which opens a
new window telling me that The directory '/(PROG)/document/' does not
exist. also svhelp will open without errors but it can not find any files
(there appears to be none).

any help here is appreciated as i would like to have this office
suite running. TIA :)

-Rob


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


printing to a NeWSprint 2.5 spool from emacs

1997-05-27 Thread Douglas L Stewart
Hi,

At work I print from my Linux box to a Sparc that has a Sparc Printer
attached to it.  The box runs NeWSprint 2.5.

When I do do M-x print-buffer from emacs, it puts a date and time and a
page number at the top of the page (which I don't mind that much, but I
wouldn't mind knowing how to turn that off!).  The annoying thing is I get
a blank page between every page.  Does anyone know what I can do to stop
that?

Just printing the file with lpr causes it to print without the blanks.

Here's the printcap entry:

lp|sparc1:\
:lp=:rm=hscw532:rp=lp:mx#0:\
:sd=/usr/spool/lpd/sparc1:\
:lf=/usr/spool/lpd/sparc1/log:

-douglas


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


Quikcam?

1997-05-27 Thread Karl M. Hegbloom
 I'm looking for the libraries and programs for the quickcam.  Does
anyone know what the name of the .deb is, and what section to look in?
 I remember seeing an announcement a while back...

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


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


Re: ..segfault: libcompface

1997-05-27 Thread Karl M. Hegbloom
 Carey == Carey Evans [EMAIL PROTECTED] writes:

Carey  (make-frame) always crashed with a stack trace like yours
Carey after displaying an XFace in Gnus (or elsewhere).

 The bug is due to libcompface not being compiled with -D_BSD_SOURCE.
It has something to do with the size of a structure.  I think that the
newest libcompface on ftp.debian.org is fixed.  I was having that
crash all the time, until I recompiled libcompface with that define.
Since then, I've had no problems.


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


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


Re: IP Masq

1997-05-27 Thread Martin Brundage


Michl, you need the ipfwadm utility. (http://www.xos.nl/linux/ipfwadm/)
Also see a July 1996 LJ article on this subject.

Marty

On Tue, 27 May 1997 12:22:11 +1000 (EST), you wrote:


Hmm, having some problems.  For IP Masq to work on a debian machine, and
to have all the ip_masq* modules included, what do I pick in the kernel
config?  I have always assumed you only need to turn on ip
forwarding/gatewaying (CONFIG_IP_FORWARD) in the kernel config to have all
the IP_masq modules installed and have ip_masq active in the kernel.  But,
when I install the new kernel  and do a modprobe for any of the ip_masq*.o
modules they do not exist.  ???


PaChi,

michl

electric RAIN  http://www.electric-rain.net/


The division of humanity into rulers and
ruled will always be unalterable.


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


Re: Q: QPopper leaves lockfiles, breaks spool files

1997-05-27 Thread Adam Shand
We've been experiencing this also, at Internet Arena.  Often, mailbox
files have the first 'F' of the spool file's first 'From' gone also.
I would like to know how to fix it too.

I've seen this before.  It past times it has been one of two things.
Either a buggy old version of qpopper or an incompatiblity of locking
methods between qpopper and sendmail.

Adam.


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


Re: net-acct outgoing PPP lines?

1997-05-27 Thread Adam Shand
  recently I asked about how to do IP-Accounting, and it looks like
net-acct is the package to go for. But, after trying it - has someone
managed to account the traffic on an outgoing (dialOUT) PPP connection? 

I believe I wrote a response to this, or rather I know I did but I'm not
sure if it actually made it though it should have.

Yes we have set this up and it sorta works.  We set it up and it worked
mostly.  However there was an obvious bug in the code.  It didn't seem to
refresh properly off the files sometimes and you would get traffic to an IP
address being logged to the incorrect users.  In the end we gave up.

If someone wanted to hack it to work it *should* be relatively trivial as
it was mostly working already, but some work is needed.

Adam.


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


Re: IP Masq

1997-05-27 Thread Michael Solomani Mifsud
On Tue, 27 May 1997, Martin Brundage wrote:

Thanks Marty!

 
 
 Michl, you need the ipfwadm utility. (http://www.xos.nl/linux/ipfwadm/)
 Also see a July 1996 LJ article on this subject.
 
 Marty
 
 On Tue, 27 May 1997 12:22:11 +1000 (EST), you wrote:
 
 
 Hmm, having some problems.  For IP Masq to work on a debian machine, and
 to have all the ip_masq* modules included, what do I pick in the kernel
 config?  I have always assumed you only need to turn on ip
 forwarding/gatewaying (CONFIG_IP_FORWARD) in the kernel config to have all
 the IP_masq modules installed and have ip_masq active in the kernel.  But,
 when I install the new kernel  and do a modprobe for any of the ip_masq*.o
 modules they do not exist.  ???
 
 
 PaChi,
 
 michl
 
 electric RAIN
 http://www.electric-rain.net/
 
 
 The division of humanity into rulers and
 ruled will always be unalterable.
 
 


SaHua,

michl

electric RAIN   http://www.electric-rain.net/


Loves not a game, its a battle;
you dont play, you fight.



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


RE: Quikcam?

1997-05-27 Thread W.D.McKinney

On 27-May-97 Karl M. Hegbloom wrote:
 I'm looking for the libraries and programs for the quickcam.  Does
anyone know what the name of the .deb is, and what section to look in?
 I remember seeing an announcement a while back...

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


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


Greetings,

The URL for the Quickcam is http://www.tara-lu.com/tara-lu/ftp.html

Hope this helps.

-Dee


-
||W.D. McKinney (Dee) 
|E-mail Home: [EMAIL PROTECTED]  Work: [EMAIL PROTECTED] 
|Home: http://www.deesign.com   Work: http://www.gci.com
-


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


Re: Kernel freeze during install

1997-05-27 Thread Brian Candler
I removed both the ethernet card and the soundcard, and it still freezes at
the same point. Any more suggestions?

Brian.

  I am trying to install Debian-1.2.10 and the kernel freezes during bootup at
  the following point:
  
  [my BusLogic KT445C host adaptor is detected successfully as scsi0]
  Ux4F0: address 0x330 in use, skipping probe.
  NCR53c406a: no available ports found
  qlogicisp : PCI bios not present
  eata_dma: No BIOS32 extensions present. This driver release still depends 
  on it
  o  Skipping scan for PCI HBAs
  
  That's as far as it gets. This happens whether I just hit Enter at the boot:
  prompt, or if I type linux ether=10,0x300,eth0. I have made two boot disks
  on brand new floppies and get the same behaviour.
  
  Here is a summary of my hardware:
  * BioStar VLB motherboard, 486DX2/66, 16MB RAM
  * BusLogic KT445C VLB SCSI card (io=0x330, irq=11, dma=7); Ricoh CD-R drive
  * ET4000 VLB video
  * Promise VLB EIDE controller, Fujitsu 2.5GB IDE drive, fd0 is 1.44MB
  * Soundblaster-16 (io=0x220, irq=7, dma=1/5) with sbpcd CD-ROM (io=0x230)
  * 3com 3C509 (io=0x300, irq=10)
  
 
 I have encountered this problem a number of times with 486 motherboards.
 The problem for me has been the ethernet card.  If I pulled it out the
 boot continued properly.  In my case, I needed to have the ehternet card
 in order to complete the NFS install so I had to workaround by compiling a
 kernel with the ethernet drivers included rather than loaded as modules.
 Then, I had to play around with the ethernet card I/O address in some
 cases.  Anyway, since you have a CDROM version, I would suggest that you
 remove the ethernet and sound cards and see if the installation can be
 done.  Then you can build some custom kernels and try reinstalling the
 cards to see if the hangups are avoided.
 
 One other point that comes to mind looking at your list above.  Most
 Soundblasters use 2 interrupts for the sound and perhaps another for the
 CDROM.  You list only one and the others might be sitting at 10 and
 preventing you from getting past the boot sequence.  Try removing the
 sound card first.
 
 Hope this helps,
 
 Carlo


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


Re: Quikcam?

1997-05-27 Thread Lawrence Chim
Karl M. Hegbloom wrote:
 
  I'm looking for the libraries and programs for the quickcam.  Does
 anyone know what the name of the .deb is, and what section to look in?
  I remember seeing an announcement a while back...
 

You can find cqcam and vic-cqcam in binary/graphics directory.
Though they both require Color QuickCam.

Lawrence,


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


Re: Upcoming Debian Releases

1997-05-27 Thread Alex Yukhimets
 (though I will probably keep one machine at or near 1.3 as long as is
 practical.)  Certainly the next X release I do, and probably the next
 Emacs release after that, will require libc6...

That what I was afraid of, Mark. Is it possible to have libc5 version of
the next X release somewhere?

Yours,

Alex Y.


 
   _Mark_ [EMAIL PROTECTED]
   The Herd of Kittens
   A Debian Maintainer
 
 


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


Re: ..segfault: libcompface

1997-05-27 Thread Carey Evans
Karl M. Hegbloom [EMAIL PROTECTED] writes:

  The bug is due to libcompface not being compiled with -D_BSD_SOURCE.
 It has something to do with the size of a structure.  I think that the
 newest libcompface on ftp.debian.org is fixed.  I was having that
 crash all the time, until I recompiled libcompface with that define.
 Since then, I've had no problems.

I have, though.  This is compface 89.11.11-9 (with changelog and rules
indicating this fix) and xemacs 19.14-1:

% xemacs -q -no-site-file -l crash.el -f crash

Fatal error (11).
Your files have been auto-saved.
Use `M-x recover-session' to recover them.
...

Where crash.el is a small file to display an XFace and (make-frame).

James LewisMoss closed this bug because it didn't occur with 19.15 and
I was happy to wait until it came out to upgrade.  Unfortunately it
appears that 19.15 won't be in Debian 1.3. :(

-- 
Carey Evans  *  [EMAIL PROTECTED]

Lies, damn lies, and computer documentation.


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


PPP Problem

1997-05-27 Thread C . J . Lawson
Hi,
  I have two linux boxes. I recently bought modems and tried to get it to work
to little or no avail. Please could someone take me through the series of steps
required to effect this ...

Jon.

PS. I have read a lot of the documentation and consulted a few chaps this end
and still remain none the wiser..



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


Re: core when running C++ programs..

1997-05-27 Thread joost witteveen
 Hello all!
 
 I'm having a weird problem compiling anything with the C++ libraries.
 When I try to run the program, I always get the message:
   Segmentation fault (core dumped)
 
 Just to give an example, for instance if I compile the following
 program I get this core dump:
 
 main.cc:
   int main()
   {
   return 0;
   }
 
 
 Now, clearly, this as simple as you can get. 

Yes, I don't think you can get it much simpler than that!

Unfortunately, I cannot reproduce your problems.

Could you tell me:
  - are you using lib6 or lib5 (if you've got a unstable system, I'd assume
lib6).
  - then, you are telling me you're using libg++27 and libg++27-dev.
that's not possible, they're for libc5. Could you try installing
libg++272* in that case?
  - the output of ldd main (for a main that segfaults).
 
 I would just like to point out that this is a new install of
 Debian 1.3 using the unstable stream (which I don't have problems
 with on another machine right now) which was downloaded yesterday
 from ftp.debian.org.  I have tried re-downloading libg++27-dev
 and libg++27 and reinstalling it but this didn't fix anything.
 


-- 
joost witteveen, [EMAIL PROTECTED]
#!/bin/perl -sp0777iX+d*lMLa^*lN%0]dsXx++lMlN/dsM0j]dsj
$/=unpack('H*',$_);$_=`echo 16dio\U$kSK$/SM$n\EsN0p[lN*1
lK[d2%Sa2/d0$^Ixp|dc`;s/\W//g;$_=pack('H*',/((..)*)$/)
#what's this? see http://www.dcs.ex.ac.uk/~aba/rsa/


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


Re: GCC Libraries

1997-05-27 Thread joost witteveen
 In my /usr/lib/gcc-lib directory, the only directory entry is for 
 i486-linux.  My machine is a 386.  Do I have to get the GCC sources and
 recompile, or will these libs work on my machine?

They'll work just fine.

You may want to upgrade your machine though!


-- 
joost witteveen, [EMAIL PROTECTED]
#!/bin/perl -sp0777iX+d*lMLa^*lN%0]dsXx++lMlN/dsM0j]dsj
$/=unpack('H*',$_);$_=`echo 16dio\U$kSK$/SM$n\EsN0p[lN*1
lK[d2%Sa2/d0$^Ixp|dc`;s/\W//g;$_=pack('H*',/((..)*)$/)
#what's this? see http://www.dcs.ex.ac.uk/~aba/rsa/


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


Re: root user and nfs mounts

1997-05-27 Thread joost witteveen
-- Start of PGP signed section.
 Currently I mount my home directory from a departmental AIX machine using
 the following exports on the AIX machine:
 
 /home3/telmerco -access=sargan:terrapin
 
 and the following fstab on my debian hamm machine:
 
 qed:/home3/telmerco   /home/telmerco/qed  nfs  defaults  0  0
 
 Given this setup, as root I cannot cd into /home/telmerco/qed.
 [why root would like to cd anyway deleted]
 I dug through
 the man pages for nfs(5) and mount(8) and it seems like I could use
 something that maps root uid 0 to an anon uid that I specify, for example,
 208 (telmerco's uid). Is this possible? 

Well, it isn't what you want. The mapping of uid 0 happens on the server
(the AIX in your case), and, as root cannot cd to your home dir, they've
already got that setup correctly [1]. What happens is that when root
cd's to your nfs mounted home dir, root gets maped to uid nobody, and
nobody tries to cd into that dir. 

The only way I see you can allow root (thus nobody, unless you can
convince the AIX people to throw away all security on their
system) to cd into your home dir, is by chmod-ing your home dir to
something like 777. But then _everybody_ can do that -- probably not
what you want.

I'm not sure how tob works, but if it works anything like dd of=/dev/tape,
you could try something like

  (su telmerco -c tar -cvzf - /home3/telmerco) | dd of=/dev/tape


 Is it safe?

As long as the AIX people do their job properly, you cannot do anything
unsafe. And you cannot do what you want, I think.

 And finally, is there
 a better way to do it? Cheers, Colin.

Depends on tob. (see above).

[1] had they not done that, you'd be root very quickly on that system, 
probably.

-- 
joost witteveen, [EMAIL PROTECTED]
#!/bin/perl -sp0777iX+d*lMLa^*lN%0]dsXx++lMlN/dsM0j]dsj
$/=unpack('H*',$_);$_=`echo 16dio\U$kSK$/SM$n\EsN0p[lN*1
lK[d2%Sa2/d0$^Ixp|dc`;s/\W//g;$_=pack('H*',/((..)*)$/)
#what's this? see http://www.dcs.ex.ac.uk/~aba/rsa/


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


Re: printing to a NeWSprint 2.5 spool from emacs

1997-05-27 Thread Nils Rennebarth
-BEGIN PGP SIGNED MESSAGE-

On Mon, 26 May 1997, Douglas L Stewart wrote:
 The annoying thing is I get
a blank page between every page.  Does anyone know what I can do to stop
that?
Here's the printcap entry:

lp|sparc1:\
:lp=:rm=hscw532:rp=lp:mx#0:\
:sd=/usr/spool/lpd/sparc1:\
:lf=/usr/spool/lpd/sparc1/log:
Try adding the :sf:
switch.


Nils

- -- 
 \  /| Nils Rennebarth
--* WINDOWS 42 *--   | Schillerstr. 61 
 /  \| 37083 Göttingen
 | ++49-551-71626
   Micro$oft's final answer  | http://www.nus.de/~nils

-BEGIN PGP SIGNATURE-
Version: 2.6.3i
Charset: noconv

iQB1AwUBM4qyhlptA0IhBm0NAQFCBgL+LCn3uWMbAVvJE0jTZC7IZ360bLJhuu7U
s3oI8kgCYzxY1NL+yx1MlTP+ARU/umwm1LXr0ybcGaibdgfo3fqs8zrLiret/ETP
bjYitLodqDG+4/mVtloXtYD2nNPnaJRP
=DQ37
-END PGP SIGNATURE-


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


bind output in /var/adm/debug

1997-05-27 Thread Douglas L Stewart
I'm seeing a lot of warnings in /var/adm/debug because NS and MX records
are pointing to CNAME's.  Is this not allowed?  If it's not, could someone
point me to a reference that says that it's not, so I can point it out to
the ISP that's got things set up this way.

-douglas


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


Re: bind output in /var/adm/debug

1997-05-27 Thread J . R . Blaakmeer
On Tue, 27 May 1997 03:30:24 -0700 (PDT) , Douglas L Stewart wrote:
 I'm seeing a lot of warnings in /var/adm/debug because NS and MX records
 are pointing to CNAME's.  Is this not allowed?  If it's not, could someone
 point me to a reference that says that it's not, so I can point it out to
 the ISP that's got things set up this way.

I have installed the Debian 'bind' package, so I'll refer to this. In
/usr/doc/bind are at least three documents that say this is not allowed:

manual.txt.gz  Name Server Operations Guide for BIND
rfc1033.txt.gz RFC1033
rfc1034.txt.gz RFC1034

Do a text search on 'CNAME' and you'll find it.

Remco




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


Motif, HP JetDirect?

1997-05-27 Thread Mika Marjamäki
Hi! Does anyone know, what would be best (commercial) Motif for use with
Debian? Is there any Motifs available as .deb-file?

And does anyone have any experience on configuring Debian to use printers
that are attached to a HP JetDirect EX Plus3? I think it can share the
printers with lpd-protocol, but I didn't get it working..:(

And is there anykind of script that would install Applixware 4.3 as a
debian package?

  Mika

-- 
Mika Marjamäki -/- [EMAIL PROTECTED]


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


Debian box and leased line with Frame Relay protocol

1997-05-27 Thread Jerzy Kakol

Hi folks,

I want to set up a Debian box as a server in certain firm which will be 
connected to WAN through leased line working on Frame Relay protocol. On 
the operator side there will be a V.35 modem. My question is: what 
(device) do I need on my side, where the modem is to be connected to? I'm 
looking for the cheapest solution, the best possibility would be a such 
one that allows to avoid purchasing of an expensive router still being 
able to manage the whole stuff from Debian Linux machine.

Jerzy Kakol
[EMAIL PROTECTED]
Wroclaw University, POLAND



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


Re: Help with IP masquerading

1997-05-27 Thread Eugene Sevinian
Thanks for assistance!
Following you advices I moved toward 1.3 and was happy to looking on
upgrate without rebooting. It was great! 

On Mon, 26 May 1997, A. M. Varon wrote:

 On Mon, 26 May 1997, Hamish Moffatt wrote:
 
  Long answer: You have to say yes to the experimental drivers in order for
  the option ip masq to appear. kernel 2.0.27 partially supports ip masq, so
  you have to patch the kernel with some files to fully use it. If possible,
  get the kernel 2.0.30, the ip masq patches has been incorporated in the
  kernel as modules.
  
  Huh? Haven't all of 2.0.x supported this? I've been running it
  for months and months; 2.0.24, 27 and 29 definately
  all have it built in and I'd guess earlier than that too.
  It was only a patch in the 1.2.x and early 1.3.x days.
 
 The usual support for ip masq like the www,ftp,telnet,pop,smtp etc. is
 there. But if you want: FTP keep alive support, CUSeeMe module,ICMP
 masquerading, VDOLive module, RealAudio module, Quake Module, ipautofw
 support, etc. you still have to patch the 2.0.29 or lower kernel.
 
 regards,
 
 
  =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  Andre M. Varon Lasaltech, Incorported
  Technical Head Fax-Tel: (034)433-3520
  e-mail  : [EMAIL PROTECTED]
  web page: http://www.lasaltech.com/andre.html
  =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 
 
 
 

Eugene Sevinian


Cosmic Ray Division
Yerevan Phisics Institute
Alikhanian's Brothers str.2
375036 Yerevan 36
Armenia

URL: http://www.yerphi.am/crd/prs/sevinian.html
Phone: 374-2-352041 (YerPhI), 374-2-344873 (aprt.)
Fax: 374-2-350030


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


Re: Motif, HP JetDirect?

1997-05-27 Thread stephen farrell
Mika Marjamäki [EMAIL PROTECTED] writes:

 And does anyone have any experience on configuring Debian to use printers
 that are attached to a HP JetDirect EX Plus3? I think it can share the
 printers with lpd-protocol, but I didn't get it working..:(

These printers need to be rarped in order to get their ip address.
You need to set up rarpd, and entries in /etc/ethers and /etc/hosts
for the printer.

Then things are straightforward: you put an entry in your printcap
just as you would for any printer server.  Here's mine:

lp|HP LaserJet|LaserJet4P:\
  :sd=/var/spool/lpd:\
  :rm=hplaserjet.some.domain:\
  :lf=/var/log/lpd-errs:\
  :st=/var/log/lpd-status:\
  :mx#0:


--sf


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


Re: PPP Problem

1997-05-27 Thread Lindsay Allen

On Tue, 27 May 1997 [EMAIL PROTECTED] wrote:

 Hi,
   I have two linux boxes. I recently bought modems and tried to get it to work
 to little or no avail. Please could someone take me through the series of 
 steps
 required to effect this ...
 
 Jon.
 
 PS. I have read a lot of the documentation and consulted a few chaps this end
 and still remain none the wiser..
 
 
 
 --
 TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
 [EMAIL PROTECTED] . 
 Trouble?  e-mail to [EMAIL PROTECTED] .
 
 

Jon,

You have taken on a fairly complex job here.  I suggest that you install
ppp and mgetty on both boxes.  Then, from each box seperately, contact an
external ISP to verify that ppp works.  The _last_ step is to get the two
boxes to talk together.

Lindsay

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Lindsay Allen   [EMAIL PROTECTED]  Perth, Western Australia
voice +61 9 316 2486modem +61 9 364-9832  32S, 116E
http:  Real soon now.   debian linux
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=




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


Re: Motif, HP JetDirect?

1997-05-27 Thread Eloy A. Paris
stephen farrell ([EMAIL PROTECTED]) wrote:

: These printers need to be rarped in order to get their ip address.
: You need to set up rarpd, and entries in /etc/ethers and /etc/hosts
: for the printer.  

Well, I used bootp to configure the JetDirect's and recently I switched
to DHCP (dhcpd package). I did not use rarpd at all. You could also 
configure the JetDirects manually from Windows with the JetAdmin
software.

: Then things are straightforward: you put an entry in your printcap
: just as you would for any printer server.  Here's mine:
: 
: lp|HP LaserJet|LaserJet4P:\
:   :sd=/var/spool/lpd:\
:   :rm=hplaserjet.some.domain:\
:   :lf=/var/log/lpd-errs:\
:   :st=/var/log/lpd-status:\
:   :mx#0:

Be sure to have a separate spool directory for each JetDirect you have. Also,
an entry like rp=text or rp=raw is needed to send jobs as text or binary
data.

Regards,

E.-

-- 

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


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


kerneld and iBCS (was Re: ADSM/iBCS)

1997-05-27 Thread Colin Telmer
On Tue, 27 May 1997, Paul Seelig wrote:

 Actually i'm right now sitting at our Debian Linux machine and have
 succeded to have it all up and running. There is the Linux ADSM
 Mini-Howto by Thomas Koenig [EMAIL PROTECTED] from
 1996/01/03 which provided me with all the missing information to get
 it going. But we are running Debian Linux 1.2.16 here and i suppose we
 will only be upgrading to 1.3 shortly before Debian 1.4 (2.0?) gets
 finally released. We can't afford any experiments...

Thanks for the info - I forgot to make the sco equivalent of fstab. It now
works perfectly. However, I have one more question: how do I get kerneld
to automatically load and unload the iBCS module? I assume it has
something to do with /etc/conf.modules, but looking through the
mini-kerneld-HOWTO, it seems like it should do it already:
---from the kerneld-HOWTO
a.out, Java and iBCS binary formats are recognized automatically by
kerneld, without any configuration. 


Cheers, Colin.


--
  Colin R. Telmer, Institute of Intergovernmental Relations
School of Policy Studies, Queen's University
 Kingston, Ontario, Canada, K7L-3N6
  (613)545-6000x4219   [EMAIL PROTECTED]
 PGP Fingerprint = 09 E9 DA 66 9C EE 33 DC  B8 3B 97 0E 01 BC EC 0B
   PGP Public Key at URL:http://terrapin.econ.queensu.ca



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


Re: Q: QPopper leaves lockfiles, breaks spool files

1997-05-27 Thread Jason Costomiris
On Tue, 27 May 1997, Adam Shand wrote:

 We've been experiencing this also, at Internet Arena.  Often, mailbox
 files have the first 'F' of the spool file's first 'From' gone also.
 I would like to know how to fix it too.
 
 I've seen this before.  It past times it has been one of two things.
 Either a buggy old version of qpopper or an incompatiblity of locking
 methods between qpopper and sendmail.

I've seen this problem with qpopper as well.  The best solution I've seen
was to switch to cucipop.  It's in the non-free section.

Jason Costomiris | Finger for PGP 2.6.2 Public Key
[EMAIL PROTECTED] | There is a fine line between idiocy
My employers like me, but not| and genius.  We aim to erase that line
enough to let me speak for them. |  --Unknown

http://www.jasons.org/~jcostom


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


problems with xserver-svga 3.2-1

1997-05-27 Thread Ognian B. Enchev


I have installed (successfully -- more or less) X Windows from the
current stable Debian distribution on a fairly standard  Pentium
machine. For some reason, however, I am invariably getting the default
320x200 resolution with virtual also set to 320x200 no matter what I
declare in the XF86Config file. I would very much appreciate any hint as
to how to fix the problem. Enclosed please find the XF86Config file I am
currently using. Thank you much in advance for your help.

Best wishes, -- Ogi Enchev, Boston Univ.

# $XFree86: xc/programs/Xserver/hw/xfree86/XF86Conf.cpp,v 3.6 1994/09/26 
15:30:19 dawes Exp $
#
# Copyright (c) 1994 by The XFree86 Project, Inc.
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the Software),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
# 
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# 
# THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
# THE XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
# OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
# 
# Except as contained in this notice, the name of the XFree86 Project shall
# not be used in advertising or otherwise to promote the sale, use or other
# dealings in this Software without prior written authorization from the
# XFree86 Project.
#

# **
# Refer to the XF86Config(4/5) man page for details about the format of 
# this file. This man page is installed as /usr/X11R6/man/man5/XF86Config.5x 
# **

# **
# Files section.  This allows default font and rgb paths to be set
# **

Section Files

RgbPath /usr/X11R6/lib/X11/rgb

# Multiple FontPath entries are allowed (which are concatenated together),
# as well as specifying multiple comma-separated entries in one FontPath
# command (or a combination of both methods)

FontPath/usr/X11R6/lib/X11/fonts/misc/
FontPath/usr/X11R6/lib/X11/fonts/Type1/
FontPath/usr/X11R6/lib/X11/fonts/Speedo/
FontPath/usr/X11R6/lib/X11/fonts/75dpi/
FontPath/usr/X11R6/lib/X11/fonts/100dpi/
FontPath/usr/X11R6/lib/X11/fonts/cyrilic/

EndSection

# **
# Server flags section.
# **

Section ServerFlags

# Uncomment this to cause a core dump at the spot where a signal is 
# received.  This may leave the console in an unusable state, but may
# provide a better stack trace in the core dump to aid in debugging

#NoTrapSignals

# Uncomment this to disable the CrtlAltBS server abort sequence

#DontZap

EndSection

# **
# Keyboard section
# **

Section Keyboard

ProtocolStandard

# when using XQUEUE, comment out the above line, and uncomment the
# following line

#Protocol   Xqueue

AutoRepeat  500 5
ServerNumLock

# Specifiy which keyboard LEDs can be user-controlled (eg, with xset(1))
#Xleds  1 2 3

# To set the LeftAlt to Meta, RightAlt key to ModeShift, 
# RightCtl key to Compose, and ScrollLock key to ModeLock:

#LeftAlt Meta
#RightAltModeShift
#RightCtlCompose
#ScrollLock  ModeLock

EndSection


# **
# Pointer section
# **

Section Pointer

ProtocolMouseMan
Device  /dev/mouse

#BaudRate   9600
#SampleRate 150

# Emulate3Buttons is an option for 2-button Microsoft mice

#Emulate3Buttons

# ChordMiddle is an option for some 3-button Logitech mice

#  ChordMiddle

EndSection

# **
# Monitor section
# **

# Any number of monitor sections may be present




Section Monitor

  Identifier MAG DX15F/DX17F
  VendorName Mag Innovision
  ModelName DX15F
  BandWidth 100 
 

Re: Debian box and leased line with Frame Relay protocol

1997-05-27 Thread Jason Costomiris
On Tue, 27 May 1997, Jerzy Kakol wrote:

 I want to set up a Debian box as a server in certain firm which will be 
 connected to WAN through leased line working on Frame Relay protocol. On 
 the operator side there will be a V.35 modem. My question is: what 
 (device) do I need on my side, where the modem is to be connected to? I'm 
 looking for the cheapest solution, the best possibility would be a such 
 one that allows to avoid purchasing of an expensive router still being 
 able to manage the whole stuff from Debian Linux machine.

I think someone makes a V.35 card for Linux that has a module.  I have no
idea who it was, however.

I wonder why you balk at the idea of a router, however.  What's the CIR of
your frame connection?  If it's 56k, you could get a Microrouter 900i from
Compatible Systems for pretty cheap (like $500 or $600 US), or if you are
going for 256k or 768k on your CIR, you should look at a Cisco 2501.  They
can be found used for around $1200 US.  You can't just hook up your CSU to
any old serial port, since it's XXXk *synchronous*, not the async serial
ports that are on your PC.

If you really feel dangerous, get a FRAD.  I hate 'em, but others love
them.

Jason Costomiris | Finger for PGP 2.6.2 Public Key
[EMAIL PROTECTED] | There is a fine line between idiocy
My employers like me, but not| and genius.  We aim to erase that line
enough to let me speak for them. |  --Unknown

http://www.jasons.org/~jcostom


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


Re: HP JetDirect?

1997-05-27 Thread Carlo U. Segre
On Tue, 27 May 1997, [ISO-8859-1] Mika Marjamäki wrote:

 
 And does anyone have any experience on configuring Debian to use printers
 that are attached to a HP JetDirect EX Plus3? I think it can share the
 printers with lpd-protocol, but I didn't get it working..:(
 

I have set up an HP JetDirect (I don't know if it isEX Plus3 but I think
not) lpr queue on a linux box.  It worked fine right away and I was able
to export it to Windows95 machines using samba.  

The printcap entry is below

ls178_hp4m|First Floor Department LaserJet:\
 :lp=/dev/null:\
 :rm=198.37.24.188:\
 :rp=text:\
 :sd=/var/spool/lpd/ls178_hp4m:\
 :sh:pw#80:pl#66:px#1440:mx#0:\
 :af=/var/log/lp-acct:\
 :lf=/var/log/lp-errs:

The printer is set to autoswitch and the 'text' queue on the JetDirect
works well for this.  It immediately recognizes postscript and PCL files
and switches the printer.

The only problem I had was with the banner page that the JetDirect puts
out.  I had no way of turning it off with the telnet protocol until I
upgraded to the latest version of the firmware.

Hope this helps,

Carlo


***
*Carlo U. Segre   *
*  Department of Biological, Chemical and Physical Sciences   *
*Illinois Institute of Technology, Chicago, IL 60616  *
*   Voice: (312) 567-3498  FAX: (312) 567-3494*
*[EMAIL PROTECTED]*
***


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


Debian Package Finder

1997-05-27 Thread Adam Shand
Our Debian Package Finder is now in version 1.1.  Documentation has been
written and it should be trivial to install so long as you have python1.4
(this can be worked around hopefully :).

If people would be willing to setup local mirrors it would be great.
Especially if there could be one on the Debian Master web site.

You can see the package finder at:
http://larry.earthlight.co.nz/debian/finder.cgi

Or download it at (~750k with sample Packages.gz files):
http://larry.earthlight.co.nz/download/ljfinder1.1.tar.gz

Adam.


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


Multiple subnets on a single ethernet. Related to routes.

1997-05-27 Thread Chris Brown

 I have been doing a bit of planning related to subnetting a 
class C for our ehternet.  One of the problems that I ran into was 
that if I used RIP the entire network had to be on the same 
subnetmask, since RIP doesn't deal with subnet masks.  This was a 
real pain since I have a couple of machines that will need to have 
alliased addresses (WWW and FTP servers) and they will each use up a 
large portion of a subnet each if masked as 255.255.255.240.

 What complications occur if a particular machine has a single IP 
address and needs to communicate with a machine on a different 
subnet even though they share a single ethernet.  I have done this 
before by manually adding the routes to the routing table but the 
connections seam extremely slow in establishment.  Once the 
connection is made everything seams to be ok but the broadcast 
addresses are obviously out of different blocks which may be causing 
problems.  Theoretically it shouldn't be a problem but practice can 
be a different thing all together.


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


Re: Motif, HP JetDirect?

1997-05-27 Thread Alex Yukhimets
 
 Hi! Does anyone know, what would be best (commercial) Motif for use with
 Debian? Is there any Motifs available as .deb-file?

I had opportunity to use both Xi Graphics and Metrolink Motifs. 
I tried Xi Graphics' version first and it seemed to have some bugs.
After I tried Metrolink's one I found out that waht I considered to
be a bug is a feature of Motif2.0. Anyways, metrolink motif seems to be
more reliable product for development but Xi Graphics has more evolved
runtime (mwm) configuration.

Xi Graphics comes in Slackware's .tgz format - so you could use
alien(5.3!)  to convert it to .deb. This is not extremely good, since there 
would be no postrm (or prerm) scripts purging 2 extra lines in site.def
file (added during installation).

Metrolink comes in both  rpm and plain .tar.gz archives (with installation
script). This means that you could again use alien to convert rpm to deb.

Hope this was of any help to you.

Alex Y.

 
 And does anyone have any experience on configuring Debian to use printers
 that are attached to a HP JetDirect EX Plus3? I think it can share the
 printers with lpd-protocol, but I didn't get it working..:(
 
 And is there anykind of script that would install Applixware 4.3 as a
 debian package?
 
   Mika
 
 --=20
 =09=09Mika Marjam=E4ki -/- [EMAIL PROTECTED]


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


Re: Q: QPopper leaves lockfiles, breaks spool files

1997-05-27 Thread Adam Shand
 I've seen this before.  It past times it has been one of two things.
 Either a buggy old version of qpopper or an incompatiblity of locking
 methods between qpopper and sendmail.

I've seen this problem with qpopper as well.  The best solution I've seen
was to switch to cucipop.  It's in the non-free section.

Qpopper 2.2 still works fine for us... the older versions (if unpatched...
I believe Tim Sailor had the patch?) did crap out though.

Adam.


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


Keeping old user directories

1997-05-27 Thread Mark Glassberg
I wish to install the latest Debian package while retaining the /root and
/home directories of my old a.out Slackware system.  Can I do this and, if
so, what is the best way?


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


Re: Keeping old user directories

1997-05-27 Thread J.H.M.Dassen
On May 27, Mark Glassberg wrote
 I wish to install the latest Debian package while retaining the /root and
 /home directories of my old a.out Slackware system.  Can I do this and, if
 so, what is the best way?

Disclaimer: this comes from memory; please check for yourself.

The Debian boot/root disks do not automatically mke2fs your partition of
choice, so you could do it like this:
- build the boot/root/base floppies and boot with them
- do not use the initialize partition option
- instead, choose mount an existing linux partition, and clean that
  partition (except the parts to be saved) by hand
- close the shell, and continue with the regular installation process.

Ray
-- 
LEADERSHIP  A form of self-preservation exhibited by people with auto-
destructive imaginations in order to ensure that when it comes to the crunch 
it'll be someone else's bones which go crack and not their own.   
- The Hipcrime Vocab by Chad C. Mulligan


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


FAQ: Work-Needing and Prospective Packages

1997-05-27 Thread Sven Rudolph
Work-Needing and Prospective Packages for Debian GNU/Linux
Sven Rudolph, [EMAIL PROTECTED]
$Id: packages.sgml,v 1.41 1997/05/27 15:20:33 sr1 Exp sr1 $

1.  General Questions

1.1.  Before reading this document

You should have read the Debian GNU/Linux FAQ (
http://www.debian.org/FAQ/ ).

1.2.  Purpose of this document

This document is intended to identify areas that need your
contributions. It provides information that hopefully changes quite
often, so it supplements the Debian GNU/Linux FAQ.

1.3.  Getting newer versions of this document

Newer versions of this document will be available via FTP and HTTP:

o  http://www.debian.org/Documentation/Debian/packages.html
o  ftp://ftp.debian.org/debian/doc/package-developer/prospective-
   packages.txt

1.4.  Feedback

Please send additions, corrections, suggestions and wishes to Sven
Rudolph [EMAIL PROTECTED]   Please mention to which version of
this document your comments refer.

2.  Packages needing a new maintainer

Please inform me via e-mail:

o  when you find that you need to discontinue maintaining a package
o  when you believe that the following list is incomplete
o  when you would like to maintain one of the packages listed here.

orphaned :
o  libc4 (a.out compatibility)

Christian Linhart [EMAIL PROTECTED] :
o  statserial
o  tgif
o  xarchie

Michael Meskes [EMAIL PROTECTED] :
o  html2latex
o  icmake
o  lshell
o  ntfs
o  umsdos
o  xftp
o  xautolock

Ian Murdock [EMAIL PROTECTED] :
o  pmake

Jim Robinson [EMAIL PROTECTED] :
o  mh-papers
o  term
o  witalian
o  pari, paridoc
o  wnorwegian

Sven Rudolph [EMAIL PROTECTED] :
o  seyon
o  lpr

Martin Schulze [EMAIL PROTECTED] :
o  xarclock
o  xdaliclock
o  lha
o  dosfstools
o  sendfile
o  uudeview

new
o  ssh (ITAR restricted, linked against rsaref, needs US maintainer)

Stuart Lamble [EMAIL PROTECTED] :
o  fsp
o  lyx

Doug Geiger [EMAIL PROTECTED] :
o  apsfilter

Yves Arrouye :
o  compress-package
o  mush
o  ppd-adobe-common, ppd-adobe-extra, ppd-adobe-misc, ppd-gs
o  psptools

Michael Nonweiler [EMAIL PROTECTED] :
o  e2fsprogs
o  ipx
o  nas
o  ncpfs

Joe Kirby [EMAIL PROTECTED] :
o  lxtools

Erick Branderhorst [EMAIL PROTECTED] :
o  glibcdoc (will be replaced by libc6-doc)
o  id-utils
o  mathpad
o  idutch
o  wdutch
o  wenglish

Christoph Lameter [EMAIL PROTECTED] :
o  adbbs (needs a better setup of pre-customized files)
o  berolist
o  bridge/bridgex (Bridging Tools for Kernel 2.0.X/2.1.X)
o  defrag
o  freefont
o  genromfs
o  isite
o  loadlin
o  ncsa (new Webstandards need to be implemented)
o  netdiag
o  newsx
o  pash
o  poppassd
o  sharefont
o  syslinux
o  transproxy
o  upsd

llucius [EMAIL PROTECTED] :
o  dialog

Karl Ferguson [EMAIL PROTECTED] :
o  sysutils

Christian Schwarz [EMAIL PROTECTED] :
o  dvi2tty
o  hyperlatex
o  info2www
o  latex2rtf

Shaya Potter [EMAIL PROTECTED] :
o  opie

Erik Andersen [EMAIL PROTECTED] :
o  elvis

Vincent Renardias [EMAIL PROTECTED] :
o  ftplib
o  lde
o  libdnd1
o  libdnd1-dev
o  macutils
o  mcvert
o  offix-clipboard
o  offix-editor
o  offix-execute
o  offix-files
o  offix-trash
o  xabacus
o  xfishtank
o  xgalaga
o  xmcpustate
o  xodo

Andy Mortimer [EMAIL PROTECTED] :
o  TinyMUSH

John Goerzen [EMAIL PROTECTED] :
o  mgetty

Brian C. White [EMAIL PROTECTED] :
o  zyxel

3.  Packages that someone is working on

Programs listed in this section aren't yet available as Debian
packages, but someone is working on providing a package.

If you would like to work on one of these packages please contact the
responsible person listed below.

[EMAIL PROTECTED] (Karl R. Sackett) :
o  swarm - Objective-C based artificial life research tool
o  GNU Smalltalk
o  utf-mailx: scripts to add UTF support to mailx.
o  SATAN - net security scanner
o  courtney - detects SATAN scans
o  gabriel - detects SATAN scans
o  drone - automatically runs batch jobs of simulation programs.
o  empire - Wolfpack Empire war simulation
o  togl - a Tk widget for OpenGL rendering
o  nanocad - a freeware CAD system for nanotechnology
o  WISE - WWW-based project management and metrics system

Darren [EMAIL PROTECTED] :
o  giftool

David H. Silber [EMAIL PROTECTED] :
o  dbackup - A Debian-specific backup program.
o  lockstep - A program to keep various directory trees in sync.
o  uucpconfig - A configuration program which will become part of my
   uucp package.

Brian Sulcer [EMAIL PROTECTED] :
o  vile (vi-like editor)
o  rogue
o  umoria

Martin Schulze [EMAIL PROTECTED] :
o  vtwm: Virtual Window Manager for X11
o  yodl
o  w3-msql (W3 frontend for mSQL)

Michael Shields [EMAIL PROTECTED] :
o  nntplink

Christian Lynbech [EMAIL PROTECTED] :
o  ilisp (emacs interface to a number of lisp systems)
o  hyperbole (emacs hypertext/info management system)
o  oobr (emacs package for browsing OO programs)
o  STk (Scheme Tk, a scheme interpreter with Tk support)

Dermot Bradley [EMAIL PROTECTED] :
o  Umich LDAP
o  Nocol (network admin/monitoring)
o  MRTG (Multi Router Traffic Grapher)
o  Minivend (WWW-based catalogues)
o  

Re: Motif, HP JetDirect?

1997-05-27 Thread Ed Down

Also worth a look at lesstif, a Motif look-a-like under active
development. 

Ed



On Tue, 27 May 1997, Alex Yukhimets wrote:

  
  Hi! Does anyone know, what would be best (commercial) Motif for use with
  Debian? Is there any Motifs available as .deb-file?
 
 I had opportunity to use both Xi Graphics and Metrolink Motifs. 
 I tried Xi Graphics' version first and it seemed to have some bugs.
 After I tried Metrolink's one I found out that waht I considered to
 be a bug is a feature of Motif2.0. Anyways, metrolink motif seems to be
 more reliable product for development but Xi Graphics has more evolved
 runtime (mwm) configuration.
 
 Xi Graphics comes in Slackware's .tgz format - so you could use
 alien(5.3!)  to convert it to .deb. This is not extremely good, since there 
 would be no postrm (or prerm) scripts purging 2 extra lines in site.def
 file (added during installation).
 
 Metrolink comes in both  rpm and plain .tar.gz archives (with installation
 script). This means that you could again use alien to convert rpm to deb.
 
 Hope this was of any help to you.
 
 Alex Y.
 
  
  And does anyone have any experience on configuring Debian to use printers
  that are attached to a HP JetDirect EX Plus3? I think it can share the
  printers with lpd-protocol, but I didn't get it working..:(
  
  And is there anykind of script that would install Applixware 4.3 as a
  debian package?
  
Mika
  
  --=20
  =09=09Mika Marjam=E4ki -/- [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] .


Re: Multiple subnets on a single ethernet. Related to routes.

1997-05-27 Thread Kevin Traas
  I have been doing a bit of planning related to subnetting a 
 class C for our ehternet.  One of the problems that I ran into was 
 that if I used RIP the entire network had to be on the same 
 subnetmask, since RIP doesn't deal with subnet masks.  This was a 
 real pain since I have a couple of machines that will need to have 
 alliased addresses (WWW and FTP servers) and they will each use up a 
 large portion of a subnet each if masked as 255.255.255.240.
 
  What complications occur if a particular machine has a single IP 
 address and needs to communicate with a machine on a different 
 subnet even though they share a single ethernet.  I have done this 
 before by manually adding the routes to the routing table but the 
 connections seam extremely slow in establishment.  Once the 
 connection is made everything seams to be ok but the broadcast 
 addresses are obviously out of different blocks which may be causing 
 problems.  Theoretically it shouldn't be a problem but practice can 
 be a different thing all together.

Why would you want to have multiple IP subnets on the same ethernet
segment?  The whole reason for subnetting is to split the same IP class
across multiple segments.

For routing, go with GateD and use OSPF or RIP II if you require routing. 
Otherwise, if possible, (i.e. you have few hosts, routers, and changes,
etc.) just go with static routes.  Less traffic, and easier to configure up
front.

Later,

Kevin Traas
Systems Analyst
Edmondson Roper CA
http://www.eroper.bc.ca


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


Re: PPP Problem

1997-05-27 Thread Kevin Traas
   I have two linux boxes. I recently bought modems and tried to get it to
work
 to little or no avail. Please could someone take me through the series of
steps
 required to effect this ...
 
 PS. I have read a lot of the documentation and consulted a few chaps this
end
 and still remain none the wiser..

This is a fairly big job with a lot of steps.  How far did you get  We
need more info on what you've done so far, what errors you were getting,
etc

Step 1:  Get the modems working for outgoing.  (Use minicom to verify.)
Step 2:  Get the modems working for incoming.  (Use mgetty.)
Step 3:  Enable incoming PPP.  (Use mgetty again.)
Step 4:  Write chat scripts, configure PPP to call local ISP to verify
that's working.
Step 5:  Modify chat scripts to call your other Linux box.

All of this is covered in various documentation and (even better) HOWTO's. 
Go to http://sunsite.unc.edu/mdw/HOWTO/HOWTO-INDEX-3.html to find the
HOWTO's and mini-HOWTO's.

Good luck!

Later,

Kevin Traas
Systems Analyst
Edmondson Roper CA
http://www.eroper.bc.ca


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


Re: Problems configuring fetchmail

1997-05-27 Thread Robert D. Hilliard
On Mon, 26 May 1997, Clint Adams [EMAIL PROTECTED] wrote:
 reading message 4 (1753 bytes) .fetchmail: SMTP connect to (null)
 failed

 I experience this and other problems when using dynamic IPs.
 Using '-S localhost' on the commandline solves it for me.

 Thanks.  It works like a charm!  IMHO this is a bug, either in
the code or the documentation.  I think I'll file a bug report if it
hasn't already been done.

Bob


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


Re: kerneld and iBCS (was Re: ADSM/iBCS)

1997-05-27 Thread Paul Seelig
On Tue, 27 May 1997, Colin Telmer wrote:

 works perfectly. However, I have one more question: how do I get kerneld
 to automatically load and unload the iBCS module? I assume it has
 something to do with /etc/conf.modules, but looking through the
 mini-kerneld-HOWTO, it seems like it should do it already:
 ---from the kerneld-HOWTO
 a.out, Java and iBCS binary formats are recognized automatically by
 kerneld, without any configuration. 
 

I never touched /etc/conf.modules in any case. Make sure that
'kerneld' gets actually started in /etc/modules: 

cut-here--- 
[root]/root  cat /etc/modules
# /etc/modules: kernel modules to load at boot time.
#
# This file should contain the names of kernel modules that are
# to be loaded at boot time, one per line.  Comments begin with
# a `#', and everything on the line after them are ignored.
# An entry named `auto' will cause the system to start kerneld immediately.
# Kerneld then loads modules on demand. `noauto' disables kerneld completely.

auto
cut-here--- 

Is this what you were looking for?
  Cheers, P. *8^)
--
   Paul Seelig [EMAIL PROTECTED]
   African Music Archive - Institute for Ethnology and Africa Studies
   Johannes Gutenberg-University   -  Forum 6  -  55099 Mainz/Germany
   Our AMA Homepage  in  the WWW at  http://www.uni-mainz.de/~bender/


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


Re: problems with depmod

1997-05-27 Thread J.H.M.Dassen
On May 27, Alexander Koch wrote
 I got some problems with depmod.

Please check that you are using the latest Debian version; older versions
somtimes dumped core on 'depmod -a'.

 What is the latest version of modutils (?) to upgrade to?

modutils_2.1.34-5.deb on the mirror I use.

 And, while asking, what does this message in daemon.log mean?
 
 May 26 13:43:53 desire modprobe: can't locate module net-pf-4

You don't have IPX or AppleTalk or somesuch available as a module. Add
alias net-pf-4 off
to /etc/conf.modules to switch this message off.

HTH,
Ray
-- 
Obsig: developing a new sig


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


Re: EMACS screen weirdness

1997-05-27 Thread Kendall P. Bullen
On Mon, 26 May 1997, Andy Mortimer wrote:

 This doesn't seem to be in the FAQ, but programs which *allow* operation
 under X-Windows are always linked against the X libraries under Debian.

Thanks for explaining.  :)

 This is probably not the case, but I thought I'd mention it; you aren't
 by any chance using XEmacs rather than FSF Emacs, are you? ISTR getting
 this problem with 19.14; although it has been fixed in 19.15 (in Hamm),
 this version has it's own problems.

Hmm, `man emacs' tells me it is the GNU project Emacs and was
written by Richard Stallman and FSF.  I'm not sure if this is quite
what you're asking, but I'm not sure how else to answer your question.
/usr/doc has no directory for emacs.  The man page is incorrect -- it
refers to /user/local/ directories, such as /usr/local/share/emacs/ .

Kendall


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


Re: EMACS screen weirdness

1997-05-27 Thread Kendall P. Bullen
On Mon, 26 May 1997, Adrian Miranda wrote:

 You should probably post again, with a little more information.

Thanks for telling me what to post.  Here goes. . . .

Debian 1.2.x (rex-fixed, I think Debian 1.2.15 technically).  I'm
using SVGATextMode 100x37x8xSVGA, logged in at the console.  I haven't
noticed problems when telneting (which uses TERM=vt100), but I haven't
used EMACS over telnet much since installing Debian.

COLUMNS=100
LINES=37
TERM=linux

There is no TERMCAP (nor a file/directory in /etc named that).  There
is a /etc/terminfo/l/linux though (it's a binary file).  I'm not using
X.  EMACS is from Debian 1.2.x (rex-fixed).  The man page claims it's
GNU project Emacs (written by Richard Stallman and FSF), but the man
page is incorrect in other ways (referring to /etc/local, for
instance) [do I tell the package maintainer about that?].

~$stty -a
speed 38400 baud; rows 37; columns 100; line = 0;
intr = ^C; quit = ^\; erase = ^?; kill = ^U; eof = ^D; eol = undef; eol2 = 
undef; start = ^Q;
stop = ^S; susp = ^Z; rprnt = ^R; werase = ^W; lnext = ^V; flush = ^O; min = 1; 
time = 0;
-parenb -parodd cs8 hupcl -cstopb cread -clocal -crtscts
-ignbrk -brkint -ignpar -parmrk -inpck -istrip -inlcr -igncr icrnl ixon ixoff 
-iuclc -ixany
-imaxbel
opost -olcuc -ocrnl onlcr -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0
isig icanon -iexten echo echoe echok -echonl -noflsh -xcase -tostop -echoprt 
-echoctl echoke

 emacs could be confused about the size of your screen.

EMACS appears to know the screen size, since it paints the status
lines correctly and wrapps appropriately for 100 columns and 37 rows.


But . . . here's another data point!  I think VC1 may be the only VC
that is messed up in EMACS:

VC1 -- user root -- EMACS is screwy
VC2 -- user kendall -- EMACS is okay
VC3 through VC6 -- user root -- EMACS is okay

So it appears that VC1 is the only VC having problems . . . at least
right now.  Does that help?  My test was editing a Perl script.  It
displays fine, but as soon as I refresh (C-l), certain indented lines
(not ones early in the file) suddenly appear to be flush-left, though
pressing End puts me at the actual (not apparent) end-of-line.

Thanks again for telling me what to post.  If anyone has any tips on
why one VC would *appear* to be screwy in EMACS, but not the other
five, please let me know.  :)  TIA!

Kendall


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


powersave

1997-05-27 Thread Markus Schneider
I try to make use of the powersave-ability of my monitor. Typing
setterm -powersave on on a textconsole is working properly but how can
I set this at boottime for ALL textconsoles? I've put this command into
a little script in /etc/rc.boot/ however powersaving then works only at
tty0.

Under X I have not been successful at all. xset s power doesn't seam
to have any effect reagardless which argument I specify. From the xset
manpage I know:
The 'power'  flag  allows the  power  saver  parameters to be set on
servers which  have  the  XFree86-Misc  server  extension.
So my second question is how to get this server extension for Debian or
how else could I get powersaving working under X?

My monitor: Samsung SyncMaster 20GLsi,
my videocard: Matrox Millenium (2MB).

Thanks a lot for any help in advance,

Markus.


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


couldn't get a free page

1997-05-27 Thread David Miles
I installed debian on my computer last week.   I left it sitting for the
weekend.  When I returned, I found the following message updating every so
often on my screen:  couldn't get a free page

When I hit enter, I get the following statement Out of memory for bash a
few seconds later Out of memory for init appeared

I am not sure what is going on.  I have 6MB of Ram and at least 16 MB of
swapping space on my HD for the program.

Please help

dblm


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


Re: kerneld and iBCS (was Re: ADSM/iBCS)

1997-05-27 Thread Colin Telmer
On Tue, 27 May 1997, Paul Seelig wrote:

 I never touched /etc/conf.modules in any case. Make sure that
 'kerneld' gets actually started in /etc/modules: 

auto is all that is listed in my /etc/modules also and kerneld works fine
with my sound, floppy, vfat modules. From lsmod, 

terrapin:~# lsmod
Module PagesUsed by
serial 72 (autoclean)
vfat   31 (autoclean)
fat6[vfat]  1 (autoclean) 

However, when I don't load the iBCS module by hand, I find the following
message in /var/log/daemon.log:
May 27 14:10:24 terrapin modprobe: can't locate module binfmt-332 

Is there perhaps a bug in /etc/conf.modules? Any idea where else I could
start looking to track this down? Cheers, Colin.

--
  Colin R. Telmer, Institute of Intergovernmental Relations
School of Policy Studies, Queen's University
 Kingston, Ontario, Canada, K7L-3N6
  (613)545-6000x4219   [EMAIL PROTECTED]
 PGP Fingerprint = 09 E9 DA 66 9C EE 33 DC  B8 3B 97 0E 01 BC EC 0B
   PGP Public Key at URL:http://terrapin.econ.queensu.ca



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


Re: kerneld and iBCS (was Re: ADSM/iBCS)

1997-05-27 Thread Maarten Boekhold
 However, when I don't load the iBCS module by hand, I find the following
 message in /var/log/daemon.log:
 May 27 14:10:24 terrapin modprobe: can't locate module binfmt-332 
 
 Is there perhaps a bug in /etc/conf.modules? Any idea where else I could
 start looking to track this down? Cheers, Colin.

Do you have a line in /etc/conf.modules at the beginning that says:

alias binfmt-332 iBCS

If not, try adding this by hand and see what happens. I think this ought
to fix your problems.

Maarten

_
| Maarten Boekhold, Faculty of Electrical Engineering TU Delft,   NL|
|[EMAIL PROTECTED]   [EMAIL PROTECTED]  |
-


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


Routing Questions

1997-05-27 Thread Walter L. Preuninger II
Below is a simple drawing of my lan/wan setup.

The micom (.4) has a RTS (Remote Terminal Server) in it. The RTS supports
slip connections.
The subnet is 255.255.255.224
.29 is a slip connection to .4, the RTS card

I want to route traffic from Subnet 0 over to subnet 8, ie from .2 to .254
The micom rts card drops packets not destined for the remote slip
address(.29)

Can this be done using ipfwadm or ip tunneling? I really dont want to buy 
a RLB (Remote Lan Bridge) card for the micom feeder, as they cost $1K.


  ---
aix   |  .1 |
  ---
 |
  ---
linux |  .2 |
  ---
 |
  ---
sco   |  .3 |
  ---
 |
  --- 9600bps ------
micom |  .4 |=| Micom Feeder|| .29.254 | linux
  --- ------
 |
  ---
linux | .30 .62 .94 |
  ---

Thanks,
--
Walter L. Preuninger II   waldo @ irc.wasteland.org:#unix
[EMAIL PROTECTED]   http://walterp.rapidramp.com
Finger [EMAIL PROTECTED] for PGP public key, or visit my web page.

  L  I  N  U  X  Where You Really Should Be!



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


kerneld

1997-05-27 Thread Harmon Sequoya Nine

To use all of your modules, do you need only to put auto in your
/etc/modules file, or do you need to put all of the modules that you
want loaded on demand as well?

TIA
-- Harmon


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


Re: kerneld and iBCS (was Re: ADSM/iBCS)

1997-05-27 Thread Colin Telmer
On Tue, 27 May 1997, Maarten Boekhold wrote:

 Do you have a line in /etc/conf.modules at the beginning that says:
 
 alias binfmt-332 iBCS
 
 If not, try adding this by hand and see what happens. I think this ought
 to fix your problems.

I tried that and it didn't help. However, I did figure out what was wrong.
The debian iBCS package installs the iBCS module into
/lib/modules/2.0/misc, and when I boot linux with my old kernel (2.0.29)
and run depmod -a, /lib/modules/2.0.29/modules.dep includes

/lib/modules/2.0/misc/iBCS:

However, with my new kernel (2.0.30), depmod -a does not list any
dependencies except for modules living under /lib/modules/2.0.30. So I
just copied /lib/modules/2.0/misc/iBCS to /lib/modules/2.0.30/misc/iBCS
and everything worked fine (without the above alias line in
/etc/conf.modules). Is this a bug in modutils? Something else?  

Thanks for all your help. Cheers, Colin.

--
  Colin R. Telmer, Institute of Intergovernmental Relations
School of Policy Studies, Queen's University
 Kingston, Ontario, Canada, K7L-3N6
  (613)545-6000x4219   [EMAIL PROTECTED]
 PGP Fingerprint = 09 E9 DA 66 9C EE 33 DC  B8 3B 97 0E 01 BC EC 0B
   PGP Public Key at URL:http://terrapin.econ.queensu.ca



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


Re: X and modmaps

1997-05-27 Thread Kevin Hilman
Richard Kettlewell [EMAIL PROTECTED] writes:

 
 I'm attempting to exchange the meanings of my left CTRL key and my
 Caps Lock key, as I have recently got used to an X terminal where they


Here is the way I did it using xkeycaps:

!
! This is an `xmodmap' input file for PC 101 key keyboard #2 (Linux/XFree86 US 
layout) keyboards.
! Automatically generated on Wed Nov  6 18:32:13 1996 by khilman with
! XKeyCaps 2.31; Copyright (c) 1996 Jamie Zawinski [EMAIL PROTECTED].
!
! This file presupposes that the keyboard is in the default state, and
! may malfunction if it is not.
!
remove Lock= Caps_Lock
remove Control = Control_L

keycode 0x42 =  Control_L
keycode 0x25 =  Caps_Lock

addLock= Caps_Lock Caps_Lock
addControl = Control_L

-- 
Kevin Hilman -- [EMAIL PROTECTED]
Sysadmin - Image Computing Systems Lab - U of Washington
PGP public key at http://icsl.ee.washington.edu/~khilman/


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


DOSEMU mtools

1997-05-27 Thread stick
Howdy all,

I'm wanting to setup multiple hdimages of various sizes for use in 
dosemu-0.66.3-1.  I've tried using mkhdimage with little or no success.
I can create the drive, but as soon as I copy 1 or more files to it,
DOSEMU fails to recognize it as a valid drive.  I've read all of the
files in /usr/doc/dosemu and have visited the DOSEMU homepage and have
seen a couple of references to mtools-3.6 having a utility called setup-
hdimage.

I've installed mtools_3.6-1 and don't see anything like that.

What am I missing?  Are there some steps that need to be taken to complete
the creation of the hdimage?  I've tried using DOS's format command to
see if that would help - it didn't.

For the record - this happens with DR-DOS 6.2 and FDOS (whichever version
comes w/ dosemu-0.66.3-1...)  The only difference being that DR-DOS complains
that D: is not a valid drive, whereas FreeDOS just returns to the prompt.

For the moment, I'm assuming that I doing/not doing something simple...

Thanks in advance.
Chuck

-- 
Chuck Stickelman, Owner E-Mail: [EMAIL PROTECTED]
Practical Network DesignVoice:  (419) 529-3841
9 Chambers Road FAX:(419) 529-3625
Mansfield, OH 44906-1302 USA


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


rwhod

1997-05-27 Thread Joey Hess
I just discovered rwhod, ruptime, rusers, etc, in the netstd package.

Is there any reason why rwhod is not run in the /etc/init.d/netstd_misc
script? (I see it's commented out.) Security concerns, etc?

-- 
see shy jo


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


Re: kerneld

1997-05-27 Thread Dale Scheetz
On Tue, 27 May 1997, Harmon Sequoya Nine wrote:

 
 To use all of your modules, do you need only to put auto in your
 /etc/modules file, or do you need to put all of the modules that you
 want loaded on demand as well?
 
Not at all! If the comment is removed from auto then modules will be
loaded when needed. Only low level drivers, like for scsi cards, need be
specified here. If your machine had an Adaptec 1542 scsi interface card
installed, the line aha1542 in the modules file would be enough to make
it work. 
Another point to note: Modules specified explicitly (in addition to auto)
will never be unloaded by kerneld even if they are never used. I used this
feature to keep the serial module in memory so that its particular
interupt settings would not be lost by kerneld unloading it.

Luck,

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

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

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


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


Re: rwhod

1997-05-27 Thread Martin Schulze
Joey Hess writes:
 I just discovered rwhod, ruptime, rusers, etc, in the netstd package.
 
 Is there any reason why rwhod is not run in the /etc/init.d/netstd_misc
 script? (I see it's commented out.) Security concerns, etc?

I believe there are security concerns.  Via rwho protocol your machine
distributes information on who is logged in.  So you are able to play
big brother and generate personal profiles for instance.

Nevertheless I really like these three, they're my beloved daemon/clients.
But I also understand why some people won't run rwhod.

Regards

Joey

--
  / Martin Schulze  *  [EMAIL PROTECTED]  *  26129 Oldenburg /
 / This copy of Netscape has expired.  -- Netscape   /
/Ein weiterer Grund Mosaic zu benutzen. :-( /


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


crypt

1997-05-27 Thread Timothy Phan
Hi,

  Anyone knows where can I get the source for the 'crypt' program.
  We have this program in solaris and I'd like to have it on Linux.

  Many thank in advance! 
  Here is the top of the man page:

-- 8 --
crypt(1)  User Commands  crypt(1)



NAME
 crypt - encode or decode a file

SYNOPSIS
 crypt [ password ]

AVAILABILITY
 SUNWcsu

DESCRIPTION
 crypt encrypts and decrypts the contents of a  file.   crypt
 reads  from  the  standard  input and writes on the standard
 output.  The password is a key  that  selects  a  particular
 transformation.   If  no  password is given, crypt demands a
 key from the terminal and turns off printing while  the  key
 is  being  typed  in.   crypt encrypts and decrypts with the
-- 8 --


-- 
   Timothy C. Phan ([EMAIL PROTECTED])
    NEC America, Inc. ASL
    1525 Walnut Hill Ln. Irving, TX 75038
  tel: (214)-518-3437 fax: (214)-518-3499


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


Re: rwhod

1997-05-27 Thread Joey Hess
Martin Schulze:
 I believe there are security concerns.  Via rwho protocol your machine
 distributes information on who is logged in.  So you are able to play
 big brother and generate personal profiles for instance.

According to the man page:

 Rwhod operates as both a producer and consumer of status information. As
 a producer of information it periodically queries the state of the system
 and constructs status messages which are broadcast on a network.  As a 
 consumer of information, it listens for other rwhod servers' status mes­
 sages, validating them, then recording them in a collection of files lo­
 cated in the directory /var/spool/rwho.

Since broadcast packets shouldn't leave your local network, I don't think
that anyone in the outside world can listen in on the rwho messages, so I
_think_ it's safe for use if you trust all the hosts on your subnet.

-- 
see shy jo


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


Re: rwhod

1997-05-27 Thread Martin Schulze
Joey Hess writes:

  I believe there are security concerns.  Via rwho protocol your machine
  distributes information on who is logged in.  So you are able to play
  big brother and generate personal profiles for instance.
 
 According to the man page:
 
  Rwhod operates as both a producer and consumer of status information. As
  a producer of information it periodically queries the state of the system
  and constructs status messages which are broadcast on a network.  As a 
  consumer of information, it listens for other rwhod servers' status mes­
  sages, validating them, then recording them in a collection of files lo­
  cated in the directory /var/spool/rwho.
 
 Since broadcast packets shouldn't leave your local network, I don't think
 that anyone in the outside world can listen in on the rwho messages, so I
 _think_ it's safe for use if you trust all the hosts on your subnet.

Would you like to define local network please?

Just to tell you what I mean:

My local network (although it consists of 14 parts) is located
in a student's home and consists of both Infodrom Oldenburg
(*.infodrom.north.de) and the student's LAN.  There are about 70
machines here at the moment, including a Debian development machine
soon.

Using rwhod I as a user of rwho and ruptime am able to see when
people get up and work on their machines when they leave for
sleep, shopping or whatever.  At least on the Linux machines.

Don't you admit that such information could be confidential?

Regards

Joey

-- 
  / Martin Schulze  *  [EMAIL PROTECTED]  *  26129 Oldenburg /
 / This copy of Netscape has expired.  -- Netscape   /
/Ein weiterer Grund Mosaic zu benutzen. :-( /


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


Source code analyzer/debugger for X

1997-05-27 Thread Kevin Hilman
What kinds of free utils are available for analyzing and trying
to figure out source code?  Preferably with a GUI.

-- 
Kevin Hilman -- [EMAIL PROTECTED]
Sysadmin - Image Computing Systems Lab - U of Washington
PGP public key at http://icsl.ee.washington.edu/~khilman/


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


Re: rwhod

1997-05-27 Thread Joey Hess
Martin Schulze:
 Would you like to define local network please?

I just meant wherever rwhod's broadcast packets get to.

 Just to tell you what I mean:
 
 My local network (although it consists of 14 parts) is located
 in a student's home and consists of both Infodrom Oldenburg
 (*.infodrom.north.de) and the student's LAN.  There are about 70
 machines here at the moment, including a Debian development machine
 soon.
 
 Using rwhod I as a user of rwho and ruptime am able to see when
 people get up and work on their machines when they leave for
 sleep, shopping or whatever.  At least on the Linux machines.
 
 Don't you admit that such information could be confidential?

Well, sure. I didn't mean to imply I thought it should be turned on by
default.

In my case, my local network is 4 machines, all in the same house, all owned
by family members. In this case, rwhod should be ok, assumming I'm right
about my assumptions that the broadcast packets it sends out don't reach
outside of this network.

-- 
see shy jo


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


Re: DOSEMU mtools

1997-05-27 Thread Bob Nielsen
On Tue, 27 May 1997 [EMAIL PROTECTED] wrote:

 Howdy all,
 
 I'm wanting to setup multiple hdimages of various sizes for use in 
 dosemu-0.66.3-1.  I've tried using mkhdimage with little or no success.
 I can create the drive, but as soon as I copy 1 or more files to it,
 DOSEMU fails to recognize it as a valid drive.  I've read all of the
 files in /usr/doc/dosemu and have visited the DOSEMU homepage and have
 seen a couple of references to mtools-3.6 having a utility called setup-
 hdimage.
 
 I've installed mtools_3.6-1 and don't see anything like that.

setup-hdimage comes with dosemu, not mtools.  It is in 0.66.3 and 0.66.4.

Bob


Bob Nielsen Internet: [EMAIL PROTECTED]
Tucson, AZ  AMPRnet:  [EMAIL PROTECTED]
AX.25:[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: Source code analyzer/debugger for X

1997-05-27 Thread Vadim Vygonets
On 27 May 1997, Kevin Hilman wrote:

 What kinds of free utils are available for analyzing and trying
 to figure out source code?  Preferably with a GUI.

First of all, there's a command-line debugger, gdb.  There are also
xxgdb and ddd (and maybe more), which are just X interfaces to gdb
(AFAIK, both xxgdb and ddd are available as Debian packages).  Don't
forget to install lib*-dbg (for simple programs, you'll need only
libc5-dbg or libc6-dbg) and compile with -g switch.  strip(1)ing an
executable or object file removes debugging symbold from it.

I think I gave you too much info,
Vadik.

--
Vadim Vygonets * [EMAIL PROTECTED] * [EMAIL PROTECTED] * Unix admin
The fish doesn't think, because the fish knows...  everything.
-- Arizona Dream


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


Re: crypt

1997-05-27 Thread Nathan E Norman
If you really like I can find the source code for this ... but the
question is, why would you want it?  You'd do just as well to find a
program that cracks crypted files ... it's about the same difficulty
either way.

The crypt (1) algorithm is based on the German WWII era Enigma cipher
- except that it's not as good.  It emulates an Enigma machine with one
rotor.  I'll point out that the chaps at Bletchley Park cracked four
rotor ciphers in the 1940s using mechanical computers.

If you need strong encryption, take a look at PGP, or one of the RSA
offerings.  Or use DES (which is also available in source code, and
should be available in Solaris)

PS - Many people confuse the crypt (1) command with the crypt (3)
function in libc, which is used to encrypt passwords.  It actually
hashes them ... they cannot be decrypted.

--
  Nathan Norman:Hostmaster CFNI:[EMAIL PROTECTED]
finger [EMAIL PROTECTED] for PGP public key and other stuff
Key fingerprint = CE 03 10 AF 32 81 18 58  9D 32 C2 AB 93 6D C4 72
--

On Tue, 27 May 1997, Timothy Phan wrote:

:Hi,
:
:  Anyone knows where can I get the source for the 'crypt' program.
:  We have this program in solaris and I'd like to have it on Linux.
:
:  Many thank in advance! 
:  Here is the top of the man page:
:
:-- 8 --
:crypt(1)  User Commands  crypt(1)
:
:
:
:NAME
: crypt - encode or decode a file
:
:SYNOPSIS
: crypt [ password ]
:
:AVAILABILITY
: SUNWcsu
:
:DESCRIPTION
: crypt encrypts and decrypts the contents of a  file.   crypt
: reads  from  the  standard  input and writes on the standard
: output.  The password is a key  that  selects  a  particular
: transformation.   If  no  password is given, crypt demands a
: key from the terminal and turns off printing while  the  key
: is  being  typed  in.   crypt encrypts and decrypts with the
:-- 8 --
:
:
:-- 
:   Timothy C. Phan ([EMAIL PROTECTED])
:    NEC America, Inc. ASL
:    1525 Walnut Hill Ln. Irving, TX 75038
:  tel: (214)-518-3437 fax: (214)-518-3499
:
:
:--
: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: Multiple subnets on a single ethernet. Related to routes.

1997-05-27 Thread Kevin Traas
  Well we are using several Novell Netware servers and from where 
 I'm told they would be restricted to using a single subnet mask.  I'm 
 not really that up on Netware so I can't contradict it yet.  The 
 reason for the use of multiple subnets on the same ethernet is (I 
 believe) a solution proposed by Novell in one of their appnotes 
 related to getting more addresses when you subnet it too much.  They 
 are heavily into the use of RIP though it can be turned off and 
 static routes used.

You didn't mention which version of Netware you're running.  I'm pretty
sure 3.x only supports RIP while 4.x supports RIP, RIPII, and OSPF (and
others).

Any time you subnet, you lose host addresses.  However, you gain networks. 
That's the trade-off.  The more networks you want, the more hosts you
lose
 
  The other night I was looking to see which package gated was in 
 and I didn't see it in the standard Debian system at all.  I looked 
 in the 1.2 contents file and routed came up in netbase or something 
 like that but no gated.  Did I miss it or did you get the source and 
 add it your self.  

GateD doesn't come as a package and you won't find it distributed anywhere
as a binary (that I know of) due to licensing restrictions.  You _can_
freely download the source (from http://www.gated.org); however, it's
pretty difficult to compile under Linux.  Best place for GateD help is the
GateD mailing list (info at URL above).

I have heard rumours of a RedHat GateD package (RPM format).  If that is
available, that might be an option for you (thanks to the Debian-based RPM
package maintainer now available).

Good luck!

later,

Kevin Traas
Systems Analyst
Edmondson Roper CA
http://www.eroper.bc.ca


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


Re: EMACS screen weirdness

1997-05-27 Thread Kendall P. Bullen
To those who tried to help me,

Curiously, rebooting (which I did for other reasons ;) appears to have
fixed the problem with EMACS displaying things incorrectly (though it
always appeared to know where things really were ;).  At least, one of
the more reproducible weirdnesses hasn't come back to haunt me, and I
haven't noticed any of the other strange stuff happening, so hopefully
it's gone for good.  It makes me nervous, though -- I wish I knew why
it'd started in the first place.

Thanks,
Kendall


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


Re: DOSEMU mtools

1997-05-27 Thread stick
 
 On Tue, 27 May 1997 [EMAIL PROTECTED] wrote:
 
  files in /usr/doc/dosemu and have visited the DOSEMU homepage and have
  seen a couple of references to mtools-3.6 having a utility called setup-
  hdimage.
  
  I've installed mtools_3.6-1 and don't see anything like that.
 
 setup-hdimage comes with dosemu, not mtools.  It is in 0.66.3 and 0.66.4.
 
???
I just checked dosemu_0.66.3-1.deb, setup-hdimage was not there!?
/usr/sbin/ has the following executables:
getrom
hdinfo
mkfatimage
mkhdimage
putrom

/usr/bin has:
dos
dosdebug
xtermdos
and xdos as sym-link to dos

But I found nothing named setup-hdimage.  What am I missing?
I'll pull 0.66.4 from one of the mirrors and see what it has...

 Bob
 
Chuck

-- 
Chuck Stickelman, Owner E-Mail: [EMAIL PROTECTED]
Practical Network DesignVoice:  (419) 529-3841
9 Chambers Road FAX:(419) 529-3625
Mansfield, OH 44906-1302 USA


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