Re: WEB SECURITY: fyi!!

1997-04-23 Thread Jason Costomiris
With respect to the dreadfully OLD phf problem, I've implemented a
unique solution.  Here's what I use in place of the old phf...  It gives
fun replies to id, uname and passwd (as in /bin/cat%20/etc/passwd).

For example, it generates a unique passwd file each time at random.
Interesting lusernames^H^H^H^H^H^H^H^Husernames too.

Here, try:

http://www.sjis.com/cgi-bin/phf?Qalias=x%0a/bin/cat%20/etc/passwd
http://www.sjis.com/cgi-bin/phf?Qalias=x%0a/usr/bin/id
http://www.sjis.com/cgi-bin/phf?Qalias=x%0a/bin/uname%20-a
http://www.sjis.com/cgi-bin/phf

Here it is, I move that it be incorporated into the cgi-scripts package...
It requires perl 5.0x and CGI.pm.

---chop here
#!/usr/bin/perl

# phf buster
# They want a passwd file to crack?  Let's give them one.

srand(time^$$);

# Don't ask about the goofy order.  For some reason, perl outputs the
# members of the hash in a seemingly random order.  Larry?

%lusers = ( bin = 'been',
daemon = 'try',
operator = 'time',
adm = 'dork',
lp = 'for',
uucp = 'year',
news = 'a',
lart = 'would',
duh = 'Why',
bill = 'you',
hillary = 'holes',
dork = 'a',
beavis = 'known',
hank = 'are',
bubba = 'over',
dale = 'that',
harvey = 'Only',
dreck = 'your',
slappy = 'have',
dweeb = 'wasting',
smack = 'time');

@shells = 
('/bin/sh','/bin/csh','/usr/bin/ksh','/usr/local/bin/tcsh','/usr/local/bin/bash');

use CGI;
$query = new CGI;

$qs = $query-query_string;

if ( $qs =~ /id/i ) {
print $query-header('text/plain');
print uid=65534(nobody) gid=65535 groups=65535\n;
print Did you really think httpd would be running as root?  Come 
on.\n;
} elsif ( $qs =~ /passwd/i ) {
print $query-header('text/plain');
$rootpw = crypt_it('dork');
print root:$rootpw:0:0:root:/:/bin/sh\n;
$uid = 5;
$gid = 100;
foreach $luser (keys %lusers) {
$home = '/home/' . $luser;
$shell = $shells[rand($#shells)];
$pw = crypt_it($lusers{$luser});
$line = join(':', $luser, $pw, $uid, $gid, $luser, $home, 
$shell);
print $line\n;
$uid++;
}
} elsif ( $qs =~ /uname/i ) {
print $query-header('text/plain');
print Hamilton97 beaver 4.0 #1 Thu Feb 18 11:19:54 EST 1997 cray\n;
} else {
print $query-header('text/plain');
print We don\'t run phf here.  Go away.\n;
}

sub crypt_it {
  local($user,$pass)[EMAIL PROTECTED];
  local($nslat,$week,$now,$pert1,$pert2);
  local(@salt_set)=('a'..'z','A'..'Z','0'..'9','.','/');
  $now=time;
  ($pert1,$per2) = unpack(C2,$user);
  $week = $now / (60*60*24*7) + $pert1 + $pert2;
  $nsalt = $salt_set[$week % 64] . $salt_set[$now %64];
  return crypt($pass,$nsalt);
}
-chop here--

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: Dial up PPP

1997-04-23 Thread Rob MacWilliams
 I am trying to conigure the box do accept a dialup pp conection.   I am
 getting an error message that I don't understand.
 mgetty fatal: ys0 login' etc/mgetty/login.config must be root/0600

You need to change the permissions on the /etc/mgetty/login.config.  After you 
login or su to root
 try:

chown root /etc/mgetty/login.config
chmod 600 /etc/mgetty/login.config

Mgetty doesn't like having it's config file accessable to the world.

Have fun




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




Change is inevitable, except from a vending machine.

Rob MacWilliams   [EMAIL PROTECTED]
N9NPU







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


pcmcia support, debian 1.2, NEC versa 6030H

1997-04-23 Thread Dan Pritts
hi all, 

recently installed debian linux 1.2 on my NEC versa 6030H

after installing the .deb for pcmcia-cs and pcmcia-modules-2.0.27 (my
kernel, the default installed kernel, is 2.0.27 according to uname -a),
the card stuff comes up at boot time but tells me, among other errors:

 Loading failed!  The module symbols (from linux-2.0.27) don't match your
   linux-2.0.27

Any suggestions, short of grabbing the pcmcia source and building
it myself?

I do believe I have correctly loaded the kernel-2.0.27 package, although
I may be wrong.  

Anyone know if this is fixed in 1.3?  If so, and the late april
release for such will be on time, I'll just wait.

thanks,
danno

dan pritts 
Unix System Admin  First Virtual Holdings, Inc. 
[EMAIL PROTECTED]   313-213-3791


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


Re: kernel 2.1.3x?

1997-04-23 Thread Brian N. Borg
I have a working 2.1.31 kernel that I compiled.  Some of the modules, 
such as vfat and serial, load ok but scsi_mod has missing symbols 
that prevent my aic7xxx from loading.

--Brian.


Hamish Moffatt wrote:
 
 Anyone having much luck with 2.1.3x?
 I'm running 2.1.29 and it's fine, except that the nfs module doesn't insert.
 But no luck with 2.1.33 or 2.1.35; both have lots of missing symbols
 on all the hardware drivers, probably relating to PNP support.
 
 I just ftpd the whole 2.1.35 source and the new modutils 2.1.34
 and will see how it goes, I have been patching up.
 
 Anyone else having this? Nobody in the linux.dev.kernel group
 (or the mailing list) seem to have mentioned it.
 
 Hamish
 --
 Hamish Moffatt, StudIEAust[EMAIL PROTECTED]
 Student, computer science  computer systems engineering.3rd year, RMIT.
 http://yallara.cs.rmit.edu.au/~moffatt (PGP key here) CPOM: [  ] 42%


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


Re: pcmcia support, debian 1.2, NEC versa 6030H

1997-04-23 Thread Rob MacWilliams
 hi all, 
 
 recently installed debian linux 1.2 on my NEC versa 6030H
 
 after installing the .deb for pcmcia-cs and pcmcia-modules-2.0.27 (my
 kernel, the default installed kernel, is 2.0.27 according to uname -a),
 the card stuff comes up at boot time but tells me, among other errors:
 
  Loading failed!  The module symbols (from linux-2.0.27) don't match your
linux-2.0.27
 

I am currently looking at the PCMCIA How-to and it says:

  If insmod reports ``wrong version'' errors, it means that the module
  was compiled for a different kernel version than your system is
  actually running.  This might occur if modules compiled on one machine
  are copied to another machine with a different configuration, or if
  the kernel is reconfigured after PCMCIA is installed.

  Another source of module loading errors is when the modules and kernel
  were compiled with different settings of CONFIG_MODVERSIONS.  If a
  module with version checking is loaded against a kernel without
  version checking, insmod will complain about undefined symbols.

 Any suggestions, short of grabbing the pcmcia source and building
 it myself?
 
 I do believe I have correctly loaded the kernel-2.0.27 package, although
 I may be wrong.  
 
 Anyone know if this is fixed in 1.3?  If so, and the late april
 release for such will be on time, I'll just wait.
 
 thanks,
 danno
 
 dan pritts 
 Unix System Admin  First Virtual Holdings, Inc. 
 [EMAIL PROTECTED]   313-213-3791
 
 
 --
 TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
 [EMAIL PROTECTED] . 
 Trouble?  e-mail to [EMAIL PROTECTED] .
 


Hope this helps






Change is inevitable, except from a vending machine.

Rob MacWilliams   [EMAIL PROTECTED]
N9NPU







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


Re: pcmcia support, debian 1.2, NEC versa 6030H

1997-04-23 Thread Brian N. Borg
The error message is misleading, to say the least.  The problem is 
most likely that between the kernel and the modules, one is compiled 
with CONFIG_MOD_VERSIONS set and the other is not.  To fix it you 
could install the kernel sources, run make menuconfig, and 
compile the kernel and modules:

make dep
make clean
make zImage
[Test the new kernel.  I copy it to my dos partition and 
use loadlin.exe after booting Caldera opendos.]
make modules
make modules_install .

I have done this several times and I am 'C' illiterate.

--Brian.


Dan Pritts wrote:
 
 hi all,
 
 recently installed debian linux 1.2 on my NEC versa 6030H
 
 after installing the .deb for pcmcia-cs and pcmcia-modules-2.0.27 (my
 kernel, the default installed kernel, is 2.0.27 according to uname -a),
 the card stuff comes up at boot time but tells me, among other errors:
 
  Loading failed!  The module symbols (from linux-2.0.27) don't match your
linux-2.0.27
 
 Any suggestions, short of grabbing the pcmcia source and building
 it myself?
 
 I do believe I have correctly loaded the kernel-2.0.27 package, although
 I may be wrong.
 
 Anyone know if this is fixed in 1.3?  If so, and the late april
 release for such will be on time, I'll just wait.
 
 thanks,
 danno
 
 dan pritts
 Unix System Admin  First Virtual Holdings, Inc.
 [EMAIL PROTECTED]   313-213-3791


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


A few questions

1997-04-23 Thread Kevin J Poorman
hello

As a somewhat unix/Linux newbie I have a few questions for this list:

they are in no spesific order:

1: I have a text file that in of itself is a list of files. I would like
to take that list and grep though them to find a string. I think this can
be done with a shell script (Bash) but I have know idea how. Can anyone
give me some pointers and or post a script ? ... TIA

2: The purpose of the above question is to find a file that has a string
(IE search all the files on the hard drive for the string foo and list
the files that have foo in it) Now that I know what file has foo in it
I need to log all the programs that write to this file ?
eg. program foobar and program foobarx both write to text file
/usr/lib/cows I need to know what program is writing to that file and
when

is there a way to acopmlish these things without jumping into a c program
... 

TIA 

-Have a good one
-Kevin Poorman


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


Re: Dial up PPP

1997-04-23 Thread LinuxBOX
Thantks for the help.  I'll give that a try.

On Tue, 22 Apr 1997, Rob MacWilliams wrote:

  I am trying to conigure the box do accept a dialup pp conection.   I am
  getting an error message that I don't understand.
  mgetty fatal: ys0 login' etc/mgetty/login.config must be root/0600
 
 You need to change the permissions on the /etc/mgetty/login.config.  After 
 you login or su to root
  try:
 
 chown root /etc/mgetty/login.config
 chmod 600 /etc/mgetty/login.config
 
 Mgetty doesn't like having it's config file accessable to the world.
 
 Have fun
 
 
 
 
  Thanks
  
  
  
  --
  TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
  [EMAIL PROTECTED] . 
  Trouble?  e-mail to [EMAIL PROTECTED] .
  
 
 
 
 
 Change is inevitable, except from a vending machine.
 
 Rob MacWilliams   [EMAIL PROTECTED]
 N9NPU
 
 
 
 
 
 
 


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


Re: A few questions

1997-04-23 Thread Paul Chau
For question 1:

grep foo `cat name.of.file.with.list.in.that.file`

For question 2:

lsof /usr/lib/cows 
This will show you which file is currently opening /usr/lib/cows.

Regards.
Paul

Kevin J Poorman wrote:
 
 hello
 
 As a somewhat unix/Linux newbie I have a few questions for this list:
 
 they are in no spesific order:
 
 1: I have a text file that in of itself is a list of files. I would like
 to take that list and grep though them to find a string. I think this can
 be done with a shell script (Bash) but I have know idea how. Can anyone
 give me some pointers and or post a script ? ... TIA
 
 2: The purpose of the above question is to find a file that has a string
 (IE search all the files on the hard drive for the string foo and list
 the files that have foo in it) Now that I know what file has foo in it
 I need to log all the programs that write to this file ?
 eg. program foobar and program foobarx both write to text file
 /usr/lib/cows I need to know what program is writing to that file and
 when
 
 is there a way to acopmlish these things without jumping into a c program
 ...
 
 TIA
 
 -Have a good one
 -Kevin Poorman
 
 --
 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] .


Hang during boot

1997-04-23 Thread Geoff R Deasey

I have a machine that will start to boot the boot disk to install Debian 1.2
on.

intel i486 dx-2 80
8M of ram  -- is this a problem ?
1 300M ide
2 2.0G seagate barracuda's
1 VLB ide controller
1 Buslogic VLB SCSI controller with floppy controller disabled
1 TechWorks ThunderBolt video card
1 SMC EtherEZ

It gets past the buslogic and locks up right after the eata message
and then a message about skiping the PCI Bridge.

This is were it locks up.

Anyone have any ideas ?

Thanks 

--Jeff


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


Re: fvwm2 menus burned

1997-04-23 Thread Neil A. Rubin
What you say about Afterstep is no longer accurate, as of 0.99pre6-1
(upstream 1.0pre6) since I have changed things so that the Debian
Afterstep now has m4 support compiled in so that we can now use m4
includes for the Debian menus.  This is much better than the old method
of using a skeleton file since users can now include the menu file in
their own .steprc files and have the advantage of automatically updated
menus. 

As long as you are on the Cc: list, Joost...  You recently released a
new version of the menu package with improved menu-methods files.  The
example menu-methods file still uses the file system.steprc-menu.  As
described above, this is no longer necessary.  Thus the example files
in the menu package, if they should even be included any longer, should
be updated to match the versions distributed with the Afterstep package
and use m4.

What this means to everyone else on the debian-user list is that, I
would suggest that you not use the menu-methods file in the new menu
package with any version of the Debian Afterstep package later than or
equal to 0.99pre6-1.  Instead wait for a new version of either the
Afterstep package or the menu package which will take advantage of the
new features in the menu package and also use m4 includes.

Thanks.

Neil

On 22 Apr, Rick Jones wrote:
 
 If I remember correctly the /etc/menus dir is for pkgs you want skipped
 when update-menus is run.  Maybe skipped is incorrect.  It's not updated
 by the program but the super-user.  Meaning that nothing added by dpkg
 will be added to the menus in this dir.  Making the menu system
 non-operational if you put all your menus in this dir.
 
 In the instance of the Afterstep window manager there is a
 system.steprc-menu file (/etc/X11/afterstep/) that can be modified since
 update-menus uses it as a skelliton when it creates the system.steprc file
 with the new pkgs added to the menus automatically.  Once you move the
 Debian menuitem to the appropriate place and make it a sub-menu instead of
 the main menu.
 
 /etc/menus is for menus you don't want automatically updated with new
 packages.  You have to add them by hand if they are in this dir.  I
 imagine that all the menus have a skelliton file like Afterstep's so the
 updates are done automatically as the program was created to do.
 
 
 On Sat, 19 Apr 1997, Richard Morin wrote:
 
 On Sat, 19 Apr 1997, joost witteveen wrote:
 
  If you've got the menu package installed, the /etc/x11/fvwm2/menudefs.hook
  file is auto-generated by update-menus, and thus should not be
  edited. If you want to add menuentries, you can 
-add them to the end of the menu in your /etc/X11/fvwm2/system.fvwm2rc
-remove the DestroyMeny\\n in /etc/menu-methods/fvwm2.
 
 I primarily use fvwm95 (boos and hisses from the purists) but fvwm2 uses
 the same menu system as I understand it.  To customize my menus I put
 files into my /etc/menus and started the filenames with
 local*. This works great for me.  I can add and edit the menu entries to
 my leisure.  I really like the menu package now that I've got it
 working ok!! Perhaps I misunderstand the problem. I apologize if this is
 the case.
 
  
  Menu-1.0 (to be released shortly) will add this is a auto-generated
  file, don't edit at the top of /etc/x11/fvwm2/menudefs.hook.
 
 Thought it was already there...hmmm 
 
  Thanks,
  -- 
  joost witteveen, [EMAIL PROTECTED]
 
 Richard Morin
 [EMAIL PROTECTED]
 ===
 Artificial Intelligence is the study of how to make real computers act like 
 the
 ones in movies.
 
 
 --
 TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
 [EMAIL PROTECTED] . 
 Trouble?  e-mail to [EMAIL PROTECTED] .
 
 
 
 --Rick
 
 [EMAIL PROTECTED]
 
 
 --
 TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
 [EMAIL PROTECTED] . 
 Trouble?  e-mail to [EMAIL PROTECTED] .
 

-- 
Neil A. Rubin [EMAIL PROTECTED] - Physics/Mathematics - CWRU '98, IMSA '94
WWW Homepage:  http://b62724.student.cwru.edu/~nrubin/
PGP Public Key available from above page and from good Key Servers.


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


Re: kernel 2.1.3x?

1997-04-23 Thread Douglas Bates
Brian N. Borg [EMAIL PROTECTED] writes:

 I have a working 2.1.31 kernel that I compiled.  Some of the modules, 
 such as vfat and serial, load ok but scsi_mod has missing symbols 
 that prevent my aic7xxx from loading.
 
 --Brian.
 
 
 Hamish Moffatt wrote:
  
  Anyone having much luck with 2.1.3x?
  I'm running 2.1.29 and it's fine, except that the nfs module doesn't insert.
  But no luck with 2.1.33 or 2.1.35; both have lots of missing symbols
  on all the hardware drivers, probably relating to PNP support.
  
  I just ftpd the whole 2.1.35 source and the new modutils 2.1.34
  and will see how it goes, I have been patching up.
  
  Anyone else having this? Nobody in the linux.dev.kernel group
  (or the mailing list) seem to have mentioned it.
  
  Hamish

I just compiled a fresh 2.1.35 kernel for my home machine (IDE-based).
When I try to boot this kernel, either from the IDE disk or from a
floppy disk, I get the messages about uncompressing the kernel, then
now booting the kernel, then nothing.  Well, actually not nothing.
There is a whole lot of disk activity on the IDE disk at this point,
even when booting off the floppy.  When I eventually halt this and
reboot an old kernel, it has to fsck my disk partitions because they
look dirty.

So I don't even get as far as finding out that there are missing symbols.

We were able to compile and boot a 2.1.35 kernel for my office machine
but that has / on a SCSI disk.  We do have an old IDE drive in there
as well and this morning the driver for that got jammed to the point
that we had to reboot.

It appears that the 2.1.3x series of kernels are indeed development
versions.  I think I will stay with the 2.0.3x series for a while.

-- 
Douglas Bates[EMAIL PROTECTED]
Statistics Department608/262-2598
University of Wisconsin - Madisonhttp://www.stat.wisc.edu/~bates/


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


Re: A few questions

1997-04-23 Thread Craig Sanders

On Tue, 22 Apr 1997, Kevin J Poorman wrote:

 hello

 As a somewhat unix/Linux newbie I have a few questions for this list:

 they are in no spesific order:

 1: I have a text file that in of itself is a list of files. I would
 like to take that list and grep though them to find a string. I think
 this can be done with a shell script (Bash) but I have know idea how.
 Can anyone give me some pointers and or post a script ? ... TIA

grep search_regexp `cat filelist.txt` 

The ` (not ' and not ) tells bash to evaluate the enclosed command.


if filelist.txt is very large, then use:

xargs grep search_regexp filelist.txt 


 2: The purpose of the above question is to find a file that has a
 string (IE search all the files on the hard drive for the string foo
 and list the files that have foo in it) Now that I know what file
 has foo in it I need to log all the programs that write to this
 file ? eg. program foobar and program foobarx both write to text file
 /usr/lib/cows I need to know what program is writing to that file and
 when

find / | xargs grep /usr/lib/cows

The xargs method is used here because the find is likely to generate
thousands of lines of output which would exceed bash's input line buffer.

this will search every file on the system, which will be very slow. if
you know that you are looking only for, e.g., C source code files (*.c)
then you can do:

find / -name *.c | xargs grep /usr/lib/cows

see 'man find' for more details. find is very very versatile. It can
find files based on mod time, access time, permissions, ownership, and
more.


You can speed the whole job up a lot if you use locate rather than find:

locate / | xargs grep /usr/lib/cows
or
locate / | grep \*\.c | xargs grep /usr/lib/cows

locate is a *lot* kinder to your system - it searches a database of
files on your system (generated once/day by updatedb) rather than
searching the actual disk.

The drawback with locate is that a) it only lists files which were
on the system the last time updatedb was run, and b) it only lists
files which are visible to user 'nobody' (unless you edit the
/etc/cron.daily/find script so that it runs as root rather than nobody.

also, locate can only do searches based on filename. The locate database
only stores filename and no other information.

If you do hack the /etc/cron.daily/find script, and you have more than
one person who uses the system then i'd suggest modifying the script so
that it generates TWO db files - the original one, and another one for
root.


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] .


samba woes

1997-04-23 Thread George Bonser

Samba worked fine when I installed it ... for 49 days to be exact. Then I
rebooted and now the windows box does not see my printer.

purging and reinstalling samba fixes it but a reboot kills it again.  I
suspect that something is not getting started correctly.

Any ideas?


George Bonser
[EMAIL PROTECTED], [EMAIL PROTECTED]


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


Re: kernel 2.1.3x?

1997-04-23 Thread Richard Sharman
Douglas Bates writes:
  
  It appears that the 2.1.3x series of kernels are indeed development
  versions.  I think I will stay with the 2.0.3x series for a while.
  

2.1.29 seems pretty stable.  From what I gather, for later ones you
are better off not using modules and then I think you're safe.


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


Re: ISDN Support

1997-04-23 Thread Richard Sharman
Dave Cinege writes:
  On 21 Apr 1997 03:58:51 -, Richard Sharman wrote:
  Dave Cinege writes:
...
Aaaa! And you are using this with linux? Are you sure it is opening 
the 
16650 at 230K?

  Well, I *think* so.  How can I tell?  I use setserial with spd_cust
  and a divisor of 1 with the card jumpered to a base of 3.6864 Mhz;
  this is supposed to produce 230.4K.  Before doing that, using spd_vhi
  giving 115000 bps I tell the Bitsurf the speed is now 230400.  I then
  switch speeds and the bitsrfr responds.  It no longer talks to me if I
  talk to it at 115000.  In fact, it often resets when I do.
  
  Hmmm, this doesn't sound right. Sorry but this is getting beyond my 
  knowledge. I've never even used spd optionsmy file looks like this:
  
  STD_FLAGS=session_lockout ^fourport
  SETSERIAL=/bin/setserial
  
  echo -n Configuring serial ports
  
  ${SETSERIAL} -b  /dev/ttyS0 uart 16550A port 0x3F8 irq 4 ${STD_FLAGS}
  ${SETSERIAL} -b  /dev/ttyS1 uart 16550A port 0x2F8 irq 3 ${STD_FLAGS}
  
  ${SETSERIAL} -bg /dev/ttyS*
  
  In ppp.options_out I just set a rate of 115200 and everything seems to work 
  fine with my modem. I assumed all you would have to do is change the rate in
  this file to 230400.
  
  Anybody know whats going on here? 
  
  I'm certainly interested because I intend to be getting a byte runner 16650 
  card and ISDN TA in a about a week.
  

I didn't think that the speed parameter actually did anything in pppd.
A quick look at the code shows that it seems to actually set the speed.
I tried changing it to 23.  It didn't produce any error (nor log),
but the ip-up script was now called with $3 (the speed) of 0, prevoiusly
it was 38400.  Actually, it's not that simple.  I'm using diald, so
the speed is specified as a diald option not a pppd option.

The documentation from Byte Runner is a bit skimpy on details (but at
least they did have a Linux directory on their disk,  containing a
recent version of setserial).

This is what I found from experimenting,  in case it helps.  If anyone
knows anything different, plesae let me know.  Assuming you have the
card jumped to the middle base frequency (3.6874 MHz), then:

- if you DON'T set the baud_base parameter on setserial
  - setting the speed with stty of N gives you 2*N,  e.g. an
stty 9600  /dev/ttyS2 gives a speed of 19200.

- if you DO set baud_base to 230400 with setsetserial, then
   what you set with stty is what you get.

So one method of getting the card to be 230400 is to leave baud_base
at its default of 115200,  do a setserail spd_vhi and use 38400 as the
speed.

However,  if you want any other speed you have to remember to half the
value!

Alternatively,  if you set baud_base to 230400 then speed up to 38400
are ok as is,  spd_vhi give you 115200.   To get 230400,  you have to
(I think!) use spd_cust and set the divisor to 1.

It seemed to me that if you want to go lower and use something other
than spd_cust you must also set divisor to 0.  It seems that if the
divisor is non zero this overrides everything else.

Richard


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


samba woes -- SOLVED

1997-04-23 Thread George Bonser

Loose nut behind the wheel.

It works junst fine  windows problem.


George Bonser
[EMAIL PROTECTED], [EMAIL PROTECTED]


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


ping to debian machine gets duplicate responses

1997-04-23 Thread John Foster

I've set up a box, and got IP-Aliasing going. The trouble is that if I
ping it from outside the LAN all the ICMP reponses come back twice!

What does that mean, and how do I fix it?

The machine is a Cyrix box, with a NE2000 clone that otherwise seems
to work very well.

Debian 1.2.8

John Foster



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


Re: Return code from system()

1997-04-23 Thread Richard Kettlewell
Oliver Elphick olly@lfix.co.uk writes:

According to the man page for system(), it should return the return
code of the command run, or else -1 or 127.

For me it is returning RC * 256: that is, if the return code is 1,
system() returns 256; if 2, 512 and so on.

Code fragment:

   char *s = ...;
   int j = system((const char *) s);

dpkg -s libc5:

Version: 5.4.20-1

Is this a fault in documentation, or in the libc package? Is it unique to me?

It's returning the value it gets from wait(2), the man page for which
documents some macros for decomposing it.  It's a bug in the
documentation.

-- 
Richard Kettlewell   http://www.elmail.co.uk/~richard/

Are you sure you want to quit reading news? (y or n)


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


why I have this?

1997-04-23 Thread Lawrence Chim
dselect kindly give me this stuff for a long while, don't know what's
wrong.

/usr/lib/dpkg/methods/disk/setup: line 8:  7921 Broken pipe
find $mountpoint$2 -follow -name '*.deb' -print 2/dev/null
  7922 Done| head -1
  7923 Done| grep . /dev/null
Using `/mirror/debian/development/binary-i386' as main binary dir.
Using `/mirror/debian/development/binary-i386/Packages.gz' for main.
Using `/mirror/debian/contrib/binary-i386' as contrib binary dir.
Using `/mirror/debian/contrib/binary-i386/Packages.gz' for contrib.
/usr/lib/dpkg/methods/disk/setup: line 8:  7927 Broken pipe
find $mountpoint$2 -follow -name '*.deb' -print 2/dev/null
  7928 Done| head -1
  7929 Done| grep . /dev/null
Using `/mirror/debian/non-free/binary-i386' as non-free binary dir.
Using `/mirror/debian/non-free/binary-i386/Packages.gz' for non-free.


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


optionally select the path for non-free contrib

1997-04-23 Thread Lawrence Chim
Using `/mirror/debian/development/binary-i386' as main binary dir.
Using `/mirror/debian/development/binary-i386/Packages.gz' for main.
Using `/mirror/debian/contrib/binary-i386' as contrib binary dir.
Using `/mirror/debian/contrib/binary-i386/Packages.gz' for contrib.
Using `/mirror/debian/non-free/binary-i386' as non-free binary dir.
Using `/mirror/debian/non-free/binary-i386/Packages.gz' for non-free.

I think we need to have the option to specify the path for non-free and
contrib.
Otherwise, dselect looks at debian/non-free and debian/contrib rather
than
debian/hamm/non-free and debian/hamm/contrib.


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


ioctl: Invalid argument

1997-04-23 Thread Mark Phillips

Hi,

I am trying to set my system clock, but get the error:

/sbin/clock -u -w
ioctl: Invalid argument

Any ideas about what's wrong?

Thanks.

-
Mark Phillips  [EMAIL PROTECTED]
   They told me I was gullible ... and I believed them!
-



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


16650

1997-04-23 Thread Steve Hsieh

   I'm certainly interested because I intend to be getting a byte runner 
 16650 
   card and ISDN TA in a about a week.


Something to think about before getting a 16650 card... From the 2.0.30
kernel serial.c:

} else if (info-type == PORT_16650) {
/*
 * On the 16650, we disable the FIFOs altogether
 * because of a design bug in how the implement
 * things.  We could support it by completely changing
 * how we handle the interrupt driver, but not today
 *
 * N.B.  Because there's no way to set a FIFO trigger
 * at 1 char, we'd probably disable at speed below
 * 2400 baud anyway...
 */
fcr = 0;



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


2.1.35 works [was: kernel 2.1.3x?]

1997-04-23 Thread Petri Wessman
On Tue, 22 Apr 1997 21:16:19 -0500 (CDT), Douglas Bates [EMAIL PROTECTED] 
said:

Douglas I just compiled a fresh 2.1.35 kernel for my home machine (IDE-based).
Douglas When I try to boot this kernel, either from the IDE disk or from a
Douglas floppy disk, I get the messages about uncompressing the kernel, then
Douglas now booting the kernel, then nothing.  Well, actually not nothing.
Douglas There is a whole lot of disk activity on the IDE disk at this point,
Douglas even when booting off the floppy.  When I eventually halt this and
Douglas reboot an old kernel, it has to fsck my disk partitions because they
Douglas look dirty.

I ran into the same problem myself, but luckily I also ran into the
answer in comp.os.linux.development.system: in the newest kernels,
virtual tty support is optional, and is not on by default (don't ask
me why). The system boots ok, but it doesn't have a console :-)

Use 'make oldconfig' when you're configuring the kernel, or do the
normal config routine and remember to turn virtual console support
on. 2.1.35 works ok for me over here -- I don't use modules, though,
so can't comment on that.

BTW, if anyone can tell me what my /etc/init.d/network should look
like with the new kernel, I'd be grateful. Things seem to work ok, but
/sbin/ifconfig and /sbin/route are giving me warnings at boot time.

Well, life on the bleeding edge is always interesting :-)

//Petri


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


Re: Ethernet performance.

1997-04-23 Thread ioannis

On Apr 17, R. Chris Ross wrote
 
  I am quite new at the world of IP networks and have been doing 
 some testing on a Debian 1.2 system and Free BSD.  Last night I ran a 
 test as described in one of the ethernet FAQs by running FTP on a 
 file that was ~2.5Meg the rate came out at 1.09M/sec.  From what I 
 can tell this is quite good for 10 Base2 since this indicates a rate 
 around 8Mbit/sec of data not including overhead.  With no tuning at 
 all it is supprising to get proformance on this order or am I faking 
 my self out?

 
 The numbers above do not look right:

 The theoretical throughput on 10base2 is about 1.183 Mbytes/sec. This
 number assumes some rather ideal conditions: one ACK for 22 large 1460
 byte segments, no collisions, the minimun inter-packet gap of 9.6 ms, 64k
 windows, and no delays for either sender or receiver transitions (that is
 no TCP/IP delays). 

 throughput = (22*1460bytes)/(22*1538+84bytes) * 
  (10,000 bits/sec)/(8bits/sec) =
= 1,183,667 bytes/sec
 


-- 
Ioannis Tambouras 
[EMAIL PROTECTED], West Palm Beach, Florida
Signed pgp-key on key server. 


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


Re: 16650

1997-04-23 Thread Adrian Phillips
 Steve == Steve Hsieh [EMAIL PROTECTED] writes:

  I'm certainly interested because I intend to be getting a
 byte runner 16650  card and ISDN TA in a about a week.


Steve Something to think about before getting a 16650
Steve card... From the 2.0.30 kernel serial.c:

patch for problem with 16550 chip clipped

I think that most 16550 cards sold today (and fitted to most machines
are the 16550A - if you notice the rest of the code around that patch
you'll see that there is a test for 16550A first then 16550 (if I
remember what I've read a while ago rightly the 16550 was a bodged
version - then 16550A was released which fixed the problem),

Adrian


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


Re: problem ftpd

1997-04-23 Thread Comet Mercantile


On 22 Apr 1997, Rob Browning wrote:

 Comet Mercantile [EMAIL PROTECTED] writes:
 
  I can't login into my box the ftpd denies access to everyone! I check the
  files /etc/hosts.deny /etc/hosts.allow /etc/ftpd/ftpaccess and they are
  all fine! what else could it be? I am using wu-ftpd..
 
 Could this be the problem caused by a recent revision of the cvs
 package?  It deleted all the entries in /etc/inetd.conf.  See if yours
 is mostly empty.
Nope  it looks pretty normal to me here is what it looks like
# /etc/inetd.conf:  see inetd(8) for further informations.
#
# Internet server configuration database
#
#
# Lines starting with #:LABEL: or #off# should not
# be changed unless you know what you are doing!
#
# Packages should modify this file by using update-inetd(8)
#
# service_name sock_type proto flags user server_path args
#
#:INTERNAL: Internal services
#echo   stream  tcp nowait  rootinternal
#echo   dgram   udp waitrootinternal
#chargenstream  tcp nowait  rootinternal
#chargendgram   udp waitrootinternal
discard stream  tcp nowait  rootinternal
discard dgram   udp waitrootinternal
daytime stream  tcp nowait  rootinternal
daytime dgram   udp waitrootinternal
timestream  tcp nowait  rootinternal

timedgram   udp waitrootinternal

#:STANDARD: These are standard services.
##ftp   stream  tcp nowait  root/usr/sbin/tcpd
/usr/sbin/in.ftp
d
telnet  stream  tcp nowait  root/usr/sbin/tcpd
/usr/sbin/in.tel
netd
ftp stream  tcp nowait  root/usr/sbin/tcpd
/usr/sbin/wu-ftp
d

#:BSD: Shell, login, exec and talk are BSD protocols.
shell   stream  tcp nowait  root/usr/sbin/tcpd
/usr/sbin/in.rsh
d
login   stream  tcp nowait  root/usr/sbin/tcpd
/usr/sbin/in.rlo
gind
execstream  tcp nowait  root/usr/sbin/tcpd
/usr/sbin/in.rex
ecd
talkdgram   udp waitroot/usr/sbin/tcpd
/usr/sbin/in.tal
kd
ntalk   dgram   udp waitroot/usr/sbin/tcpd
/usr/sbin/in.nta
lkd

#:MAIL: Mail, news and uucp services.

#:INFO: Info services
finger  stream  tcp nowait  nobody  /usr/sbin/tcpd
/usr/sbin/in.fin
gerd
ident   stream  tcp nowait  nobody  /usr/sbin/identd
identd -
i

#:BOOT: Tftp service is provided primarily for booting.  Most sites
# run this only on machines acting as boot servers.
#tftp   dgram   udp waitnobody  /usr/sbin/tcpd
/usr/sbin/in.tft
pd /boot
#bootps dgram   udp waitroot/usr/sbin/bootpd
bootpd -
i -t 120

#:RPC: RPC based services
#mountd/1   dgram   rpc/udp waitroot/usr/sbin/tcpd
/usr/sbin/rpc.mo
untd
#rstatd/1-3 dgram   rpc/udp waitroot/usr/sbin/tcpd
/usr/sbin/rpc.rs
tatd
#rusersd/2-3dgram   rpc/udp waitroot/usr/sbin/tcpd
/usr/sbin/rpc.ru
sersd
#walld/1dgram   rpc/udp waitroot/usr/sbin/tcpd
/usr/sbin/rpc.rw
alld

#:HAM-RADIO: amateur-radio services

#:OTHER: Other services

smtpstream  tcp nowait  root/usr/sbin/tcpd  /usr/sbin/in.smtpd

Hope this helps! its very annoying and I haven't really done any changes
for this to have happenned! I am using BO btw maybe thats it. 


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


Re: Debian on a Compaq Deskpro XL

1997-04-23 Thread Nico De Ranter
 [EMAIL PROTECTED] (Nico De Ranter) writes:
 
  I'm trying to install Debian Linux on a Compaq Deskpro XL.
  I have located the Linux Compaq Deskpro XL HOWTO but there
  is only information on how to create the bootdisks for Slackware
  and RedHat.  Did anybody try to install Debian on such a
  system?
 
 I've been running Debian quite happily on my Deskpro XL at work for a
 few months now.
 
 All I had to do was download the kernel patch available from a URL
 given in that HOWTO, apply it to a copy of the source I had on a
 friend's machine, make a kernel, mount the rescue disk, copy the new
 kernel over the old one, and run rdev.sh on the floppy. And everything
 worked like a charm. :)
 

I have tried this, but I still get:

 pcibios_init: BIOS32 Service Directory structure at 0x000fa000
  pcibios_init: entry in high memory, trying direct PCI access
  pcibios_init: Not supported chipset for direct PCI access
  pci_init: no BIOS32 detected

then later he just blocks with:

 /etc/rc done.

I have patched version 2.0.30 of the kernel and compiled it, then put
a copy as linux on the rescue disk.  Ran rdev.sh in the directory
where the disk was mounted.

I'm trying to install on a Compaq Deskpro XL 560.

Am I forgetting something?

Nico.





-- 
--
Nico De Ranter
Sony Objective Composer (SOCOM)
Sint Stevens Woluwestraat 55 (Rue de Woluwe-Saint-Etienne)
1130 Brussel (Bruxelles), Belgium, Europe, Earth
Telephone: +32 2 724 17 41 Telefax: +32 2 726 26 86
e-mail: [EMAIL PROTECTED]


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


Re: A few questions

1997-04-23 Thread Christian Leutloff
[EMAIL PROTECTED] (Kevin J Poorman) writes:

 1: I have a text file that in of itself is a list of files. I would like
 to take that list and grep though them to find a string. I think this can
 be done with a shell script (Bash) but I have know idea how. Can anyone
 give me some pointers and or post a script ? ... TIA

use the command grep when ou want to grep ;-)

man grep 
will you tell more about it.
 
 2: The purpose of the above question is to find a file that has a string
 (IE search all the files on the hard drive for the string foo and list
 the files that have foo in it) Now that I know what file has foo in it
 I need to log all the programs that write to this file ?
 eg. program foobar and program foobarx both write to text file
 /usr/lib/cows I need to know what program is writing to that file and
 when

grep -n foo /*
search root path

grep -n foo /*/*
the next deeper one and so on

the option -n only listen the files containing foo

dpkg -S foo

listen all Packages that contains a file foo - you hopefully know who is using
the file (and with this command there's no need for the above grep)

Hope it helps
Christian

-- 
Christian Leutloff, Aachen, Germany
   eMail: [EMAIL PROTECTED]   http://www.oche.de/~leutloff/

Debian/GNU Linux! Mehr unter http://www.debian.org/



pgpQEpHSIOhl0.pgp
Description: PGP signature


Re: 16650

1997-04-23 Thread Steve Hsieh

I was refering to the 16650 (not 16550)... :-)
^

On 23 Apr 1997, Adrian Phillips wrote:

  Steve == Steve Hsieh [EMAIL PROTECTED] writes:
 
   I'm certainly interested because I intend to be getting a
  byte runner 16650  card and ISDN TA in a about a week.
 
 
 Steve Something to think about before getting a 16650
 Steve card... From the 2.0.30 kernel serial.c:
 
 patch for problem with 16550 chip clipped
 
 I think that most 16550 cards sold today (and fitted to most machines
 are the 16550A - if you notice the rest of the code around that patch
 you'll see that there is a test for 16550A first then 16550 (if I
 remember what I've read a while ago rightly the 16550 was a bodged
 version - then 16550A was released which fixed the problem),




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


CD-ROM authoring tools

1997-04-23 Thread Steve Hsieh

I think this was already discussed before, but can someone tell me if the
'cdwrite' package is the best CD-ROM authoring program out there for
linux, or if there are others I ought to look at as well? 

Thanks

--
Stephen Hsieh  Dept. of Electrical Engineering and Computer Science
[EMAIL PROTECTED]  Univ. of Michigan at Ann Arbor
---


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


Re: CD-ROM authoring tools

1997-04-23 Thread Peter Iannarelli
Hi Steve:

There is a cd authoring tool called xcdroast. Go to the 
debian HOW-TO pages. There is a HOW TO doc on
authoring CDs. In that page you can find out where
to get xcdroast.

I have it but I haven't been able to get it to work yet.


Regards

--
 From: Steve Hsieh [EMAIL PROTECTED]
 To: debian-user@lists.debian.org
 Subject: CD-ROM authoring tools
 Date: Wednesday, April 23, 1997 6:33 AM
 
 
 I think this was already discussed before, but can someone tell me if the
 'cdwrite' package is the best CD-ROM authoring program out there for
 linux, or if there are others I ought to look at as well? 
 
 Thanks
 
 --
 Stephen Hsieh  Dept. of Electrical Engineering and Computer
Science
 [EMAIL PROTECTED]  Univ. of Michigan at Ann Arbor


---
 
 
 --
 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: CD-ROM authoring tools

1997-04-23 Thread Dave Cinege
On Wed, 23 Apr 1997 06:35:12 -0400, Peter Iannarelli wrote:

Hi Steve:

There is a cd authoring tool called xcdroast. Go to the 
debian HOW-TO pages. There is a HOW TO doc on
authoring CDs. In that page you can find out where
to get xcdroast.

I have it but I haven't been able to get it to work yet.

I have it, and have gotten it to work. It is a GUI front end for cdwrite.

--
Elite MicroComputers   908-541-4214  http://www.psychosis.com/emc/


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


Re: A few questions

1997-04-23 Thread Heiko Schlittermann
On Apr 23, Christian Leutloff wrote
: [EMAIL PROTECTED] (Kevin J Poorman) writes:
: 
:  1: I have a text file that in of itself is a list of files. I would like
:  to take that list and grep though them to find a string. I think this can
:  be done with a shell script (Bash) but I have know idea how. Can anyone
:  give me some pointers and or post a script ? ... TIA
: 
: use the command grep when ou want to grep ;-)
: 
: man grep 
: will you tell more about it.

Do you want to grep in the file containing the list?  Or do you want to
grep in the files, contained in the list?  The first -- man grep.
The latter -- man grep xargs

cat filelist | xargs grep pattern /dev/null
or
xargs grep pattern /dev/null filelist

The /dev/null ensures, that there is at least one arg to grep into, so
in case, xargs outputs a single arg to grep, you get the same output
from grep (file_name: matching line) as for the other cases.  (e.g.,
try:

grep include /usr/include/stdio.h
vs.
grep include /dev/null /usr/include/stdio.h

:  
:  2: The purpose of the above question is to find a file that has a string
:  (IE search all the files on the hard drive for the string foo and list
:  the files that have foo in it) 

find / -type f | xargs grep -l /dev/null

... and go for a cup of tea ;-)


:  Now that I know what file has foo in it
:  I need to log all the programs that write to this file ?
:  eg. program foobar and program foobarx both write to text file
:  /usr/lib/cows I need to know what program is writing to that file and
:  when

Not easy ... probably impossible.
Some attempts could be done, if you'd try to find any files, having
the file name foo in its binary.  But this is done above  ;-)

Probably you could try the ``logwrites'' package.



Heiko
--
email : [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED]
pgp   : A1 7D F6 7B 69 73 48 35  E1 DE 21 A7 A8 9A 77 92 
finger: [EMAIL PROTECTED] [EMAIL PROTECTED]



pgpy4hfTNZmm0.pgp
Description: PGP signature


Re: 16650 - Found a patch!

1997-04-23 Thread Dave Cinege
On Wed, 23 Apr 1997 03:24:11 -0400 (EDT), Steve Hsieh wrote:


   I'm certainly interested because I intend to be getting a byte runner 
 16650 
   card and ISDN TA in a about a week.


Something to think about before getting a 16650 card... From the 2.0.30
kernel serial.c:

Hmm this is not good, but looky what I found:

serial .c
 * 16650/16750 support added for Connect Tech Inc ( www.connecttech.com )
 * DFlex support. For now, only fifos are enabled. Extra features of these
 * chips will be dealt with at a later date.

I checked out the DFlex, and it is more along the lines of an industrial 
board and carries a big price tag.

Now this should allow 16650 support on any board since the DFlex is dumb. 

Question: Where does the licensing for this patch stand? It is based 
on the standard serial.c from the kernal tree, which means this must also be
GPL, correct?




Dave 'Kill a Cop' Cinege  (aka Psychopath #3)  ---  Super Genius at Large
The Oklahoma City Federal building bombing - 
Americas first response to government abuse 

http://www.psychosis.com/

Libertarian Party 1-800-682-1776http://www.lp.org/


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


Problem w/ dselect

1997-04-23 Thread Dirk Herr-Hoyman
We have had Debian running for several weeks now and been using dselect
without incident.  On monday, dselect started having trouble in ACCESS. 

What we see is:
 clip ===
Using FTP to check directories...(stop with ^C)

Connecting to ftp.debian.org...
Net::FTP: Unexpected EOF on command channel at
/usr/lib/dpkg/methods/ftp/setup line
 137
FTP ERROR

query/setup script returned error exit status 1.
Press RETURN to continue.
=== end clip 

Same problem occurs for other Debian FTP archives, which leads me to
believe something is hosed on our site.  I can ftp to ftp.debian.org and
look at the /debian dir just fine.

Any help would be greatly appreciated!

--
Dirk Herr-Hoyman [EMAIL PROTECTED]
DANEnet, Connecting Dane County's Communities
http://danenet.wicip.org


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


mgetty pppd dialin

1997-04-23 Thread Stephen Davey
I have got mgetty answering the phone and allowing me a terminal session but 
how do I get
it to run pppd once I have logged in ?

There is an entry in the /etc/mgetty/login.config for /AutoPPP/ but it just 
seems to be ignoring it

Can any one help ?


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


Re: mgetty pppd dialin

1997-04-23 Thread Philipp JW Grau
On Wed, 23 Apr 1997, Stephen Davey wrote:

 There is an entry in the /etc/mgetty/login.config for /AutoPPP/ but it just 
 seems to be ignoring it

AFAIK there must be an Define in the Makefile, but
I am not familiar with mgetty as a Debian package

From the Makefile:

# If you want to auto-detect incoming PPP calls (with PAP authorization),
# add -DAUTO_PPP. Not needed if PPP callers want to get a real login:
# prompt first. Don't forget to activate the /AutoPPP/ line in login.config!

Have a close look on the docs of the Debian package,
or perhaps fetch the source an make your own mgetty... ;-)

Hope it helps

Philipp



-- 
-
  Ph. Grau [EMAIL PROTECTED] Technische FH Wildau
 Wildau, Brandenburg, Germany



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


cdrom mounting problems

1997-04-23 Thread Igor Grobman
I am trying to help my friend install debian.  He is getting the following
error when dselect tries to mount his cdrom:

mount: /dev/hdd has wrong major or minor number
   unable to mount /dev/hdd on /var/lib/dpkg/methods/mnt
   type iso9660

Anyone know what major/minor number mean?
By the way, his cdrom is recognized by the kernel on boot.

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


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


SIGSEGV in free()

1997-04-23 Thread Chris Osicki

Hi,

I am a new Debian user.
Just finished my second Debian 1.2 (stable) installation (in two days :-)
The strange thing I noticed was a kind of looping in dselect, at least twice
I saw him Replacing gcc etc.

The real problem appeared later:

# dump 0f - /
  DUMP: SIGSEGV: ABORTING!
Segmentation fault (core dumped)

# gdb /sbin/dump core
Core was generated by `dump 0f - /'.
Program terminated with signal 11, Segmentation fault.
Reading symbols from /lib/libext2fs.so.2.1...done.
Reading symbols from /lib/libcom_err.so.2.0...done.
Reading symbols from /lib/libc.so.5.4.20...done.
Reading symbols from /lib/ld-linux.so.1...done.
#0  0x80019db in free ()

I would be very thankful for any help.

Regards,
   Chris
   
Chris Osicki ([EMAIL PROTECTED])   GfAI - Group for Applied Informatics Ltd.
Dipl. Informatik Ing. HTLMettlenwaldweg 17   
System and Network Admin CH-3037 Herrenschwanden
Tel. +41 31 308 67 00Switzerland
Fax. +41 31 301 30 04


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


Deity Status

1997-04-23 Thread Brian White
The Deity team has put together an initial proposal.  If you'd like to
see it, please visit:

http://www.pisys.com/deity/

As usual, the deity team welcomes all ideas and _constructive_ criticism
at mailto:[EMAIL PROTECTED] or on this list.

  Brian
 ( [EMAIL PROTECTED] )

---
 measure with micrometer, mark with chalk, cut with axe, hope like hell


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


Adaptec AHA1522B plus AHA2940UW

1997-04-23 Thread Dong H Nam
Hello,

I have an ISA SCSI controller (AHA1522B) to which Iomega Jaz external
and Plextor SCSI CD-ROM internal are attached and a PCI SCSI (AHA2940UW)
with two wide hard drives attached (C:, D:).

When I tried to boot from Debian Linux (Debian GNU/Linux 1.2.2), the
first SCSI controller (AHA1522B) was not recognized, but AHA2940UW was.
I disabled the bios of AHA1522B in vain. I tried with Slackware Linux
with the same result.

Therefore, I could not install Liunx since my CD-ROM was not detected.

I can connect the CD-ROM to AHA2940UW, but I have Jaz still on the
AHA1522B since AHA2940UW works that way.

Please let me know if there is any way I can use both of the controllers
or I can use all of the devices (Wide SCSI H/Ds, SCSI CD-ROM, SCSI Jaz)
on the AHA2940UW.

Thank you very much.

Sincerely,
DH.


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


lp-device trouble

1997-04-23 Thread barknech
I have a serious problem with my printer: it does not print.
If I try to print anything (via cat as root, or with lpr), 
the device seems to receive data, because its display says 
so (PROCESSING...WAITING... and then READY). 
But it still does not print.
My Debian is 1.2 of the InfoMagic Dev.Resource-CD.
I'm using apsfilter_4.9.1-10 (well, in fact I'm _not_using_ it so far).
My printer is a NEC Silentwriter S60P-Printer. This is a 
Postscript-Printer, but an old one. It works fine under DOS (Win95), 
and it had been sucessful the RedHat-Linux-Computer of a friend.
I do not use plip, I read the Printing-Howto and fiddled around with tunelp, 
it keeps saying things like:

#   bash# tunelp /dev/lp1
#   /dev/lp1 using polling
#   bash# tunelp /dev/lp1 -s
#   /dev/lp1 status is 223, on-line
#   bash# tunelp /dev/lp1 -i 7
#   /dev/lp1 using IRQ 7
#   bash# tunelp /dev/lp1 -s   
#   /dev/lp1 status is 223, on-line

with no positive effect on printing.

I tried, if a kernel-version-upgrade would help, but nope:
No printing with 2.0.27 nor 2.0.29.
lp-support is a module in the kernel, kerneld starts it at boot time.
#   bash# dmesg | grep lp
#   lp1 at 0x0378, (polling)


Can someone help me? Are there any tools to debug my 
problem further than with tunelp?
Like a kind of 'ping' for lp-devices?

Thank you in advance
Frank Barknecht
###
mailto: [EMAIL PROTECTED]
###




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


Re: problem ftpd

1997-04-23 Thread Rob Browning
Comet Mercantile [EMAIL PROTECTED] writes:

 Hope this helps! its very annoying and I haven't really done any changes
 for this to have happenned! I am using BO btw maybe thats it. 

Hmm, it looks OK to me too.  Did you check the /etc/shells problem
that others mentioned...

-- 
Rob


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


Re: lp-device trouble

1997-04-23 Thread Steve Hsieh
If this is a postscript only printer, are you sending it a postscript
file or just characters to /dev/lp0?  The fact that it says processing
suggests that it is receiving your data, but it can't understand what
you're sending it.  Try cat'ing a real (short) postscript file to the
printer and see if that works.  Just a thought.


On Wed, 23 Apr 1997 [EMAIL PROTECTED] wrote:

 I have a serious problem with my printer: it does not print.
 If I try to print anything (via cat as root, or with lpr), 
 the device seems to receive data, because its display says 
 so (PROCESSING...WAITING... and then READY). 
 But it still does not print.
 My Debian is 1.2 of the InfoMagic Dev.Resource-CD.
 I'm using apsfilter_4.9.1-10 (well, in fact I'm _not_using_ it so far).
 My printer is a NEC Silentwriter S60P-Printer. This is a 
 Postscript-Printer, but an old one. It works fine under DOS (Win95), 
 and it had been sucessful the RedHat-Linux-Computer of a friend.
 I do not use plip, I read the Printing-Howto and fiddled around with tunelp, 
 it keeps saying things like:
 
 #   bash# tunelp /dev/lp1
 #   /dev/lp1 using polling
 #   bash# tunelp /dev/lp1 -s
 #   /dev/lp1 status is 223, on-line
 #   bash# tunelp /dev/lp1 -i 7
 #   /dev/lp1 using IRQ 7
 #   bash# tunelp /dev/lp1 -s   
 #   /dev/lp1 status is 223, on-line
 
 with no positive effect on printing.
 
 I tried, if a kernel-version-upgrade would help, but nope:
 No printing with 2.0.27 nor 2.0.29.
 lp-support is a module in the kernel, kerneld starts it at boot time.
 #   bash# dmesg | grep lp
 #   lp1 at 0x0378, (polling)
 
 
 Can someone help me? Are there any tools to debug my 
 problem further than with tunelp?
 Like a kind of 'ping' for lp-devices?
 
 Thank you in advance
 Frank Barknecht
 ###
 mailto: [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: 2.1.35 works [was: kernel 2.1.3x?]

1997-04-23 Thread Rob Browning
Petri Wessman [EMAIL PROTECTED] writes:

 Well, life on the bleeding edge is always interesting :-)

I'd be a little careful with 2.1.25.  At least on my system, clock()
always returned 0.  Not good.

-- 
Rob


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


Re: lp-device trouble

1997-04-23 Thread Rob Browning
[EMAIL PROTECTED] writes:

 I have a serious problem with my printer: it does not print.
 If I try to print anything (via cat as root, or with lpr), 
 the device seems to receive data, because its display says 
 so (PROCESSING...WAITING... and then READY). 
 But it still does not print.

This is most likely a printer configuration problem.  Specifically
it's probably a line-termination character problem.  If I send my
printer a raw text file using cat or whatever, it'll hang because (I'm
fairly certain) it's looking for the DOS carriage-return line-feed
sequence to end a line.  If I send it a postscript file, it's fine.
There's a control sequence that I can send the printer to fix the
default, but I haven't bothered since I always send it postscript,
using enscript on raw text files (saves trees too)...

Hope this helps
-- 
Rob


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


Re: 16650

1997-04-23 Thread Bob Nielsen
But they are enabled for 16550A, which is the only type you will find
these days.

Bob

On Wed, 23 Apr 1997, Steve Hsieh wrote:

 
I'm certainly interested because I intend to be getting a byte runner 
  16650 
card and ISDN TA in a about a week.
 
 
 Something to think about before getting a 16650 card... From the 2.0.30
 kernel serial.c:
 
 } else if (info-type == PORT_16650) {
 /*
  * On the 16650, we disable the FIFOs altogether
  * because of a design bug in how the implement
  * things.  We could support it by completely changing
  * how we handle the interrupt driver, but not today
  *
  * N.B.  Because there's no way to set a FIFO trigger
  * at 1 char, we'd probably disable at speed below
  * 2400 baud anyway...
  */
 fcr = 0;
 
 
 
 --
 TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
 [EMAIL PROTECTED] . 
 Trouble?  e-mail to [EMAIL PROTECTED] .
 
 
 


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: 16650

1997-04-23 Thread Oleg Krivosheev


Hi there

if my memory still serves me, 16650 was issued with
bug in FIFO handling, so you can easily loose
bytes. After some time bug was fixed and now
good 16650 are in production. Unfortunately, there is
no way to find out chip info, i.e. there is no
difference between good 16650 and buggy one.

Try to ask Theodore Tso, who is maintaining
linux serial drivers.

cheers

OK

On Wed, 23 Apr 1997, Bob Nielsen wrote:

 But they are enabled for 16550A, which is the only type you will find
 these days.
 
 Bob
 
 On Wed, 23 Apr 1997, Steve Hsieh wrote:
 
  
 I'm certainly interested because I intend to be getting a byte runner 
   16650 
 card and ISDN TA in a about a week.
  
  
  Something to think about before getting a 16650 card... From the 2.0.30
  kernel serial.c:
  
  } else if (info-type == PORT_16650) {
  /*
   * On the 16650, we disable the FIFOs altogether
   * because of a design bug in how the implement
   * things.  We could support it by completely changing
   * how we handle the interrupt driver, but not today
   *
   * N.B.  Because there's no way to set a FIFO trigger
   * at 1 char, we'd probably disable at speed below
   * 2400 baud anyway...
   */
  fcr = 0;
  
  
  
  --
  TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
  [EMAIL PROTECTED] . 
  Trouble?  e-mail to [EMAIL PROTECTED] .
  
  
  
 
 
 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] .
 
 

 Oleg Krivosheev, 
 MS 345, AD/Physics,
 Fermi National Accelerator Laboratory,
 P.O.Box 500, Batavia, Illinois, 60510.
 phone: (630) 840 8460
 FAX  : (630) 840 4552
 Email: [EMAIL PROTECTED]


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


Re: Dial up PPP

1997-04-23 Thread LinuxBOX
OK that fixed the error message.  Now when I dial up with Win95 I get an
eror message on my side.  It sais the machine you are conecting with could
not establish a dialup networking conection, please verify username and
pasword.  I verified and I am thinking that I missed something in the
setup.
I am also conserened with the fact that root is the only user that has
acess to pppd.  Should this consern me?  Thanks


On Tue, 22 Apr 1997, Rob MacWilliams wrote:

  I am trying to conigure the box do accept a dialup pp conection.   I am
  getting an error message that I don't understand.
  mgetty fatal: ys0 login' etc/mgetty/login.config must be root/0600
 
 You need to change the permissions on the /etc/mgetty/login.config.  After 
 you login or su to root
  try:
 
 chown root /etc/mgetty/login.config
 chmod 600 /etc/mgetty/login.config
 
 Mgetty doesn't like having it's config file accessable to the world.
 
 Have fun
 
 
 
 
  Thanks
  
  
  
  --
  TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
  [EMAIL PROTECTED] . 
  Trouble?  e-mail to [EMAIL PROTECTED] .
  
 
 
 
 
 Change is inevitable, except from a vending machine.
 
 Rob MacWilliams   [EMAIL PROTECTED]
 N9NPU
 
 
 
 
 
 
 


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


xserver_s3v

1997-04-23 Thread Mathieu Guillaume

I'm using the lastest xserver_s3v from hamm with a Diamond Stealth 3D 2000
(S3 virge chipset). I can't get it to work in 16 bpp mode with a screen
size of 1024x768.

Supposedly, that's because the former s3v specs only allowed a maximum
rate of 80MHz in 16 bpp mode.

Since then, S3 relaxed the specs to allow a rate of 94.5MHz in this mode,
so I wondered if a package would soon come which would allow this. If not,
is there anything I can do to make it work without having to recompile the
whole server ?

Mat




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


Re: xserver_s3v

1997-04-23 Thread Oleg Krivosheev

Hi,

On Wed, 23 Apr 1997, Mathieu Guillaume wrote:

 
 I'm using the lastest xserver_s3v from hamm with a Diamond Stealth 3D 2000
 (S3 virge chipset). I can't get it to work in 16 bpp mode with a screen
 size of 1024x768.

hmm...

it worked for me ( actually, my boss ) up to
16bpp x 1152 x 868. Virge/VX card with 4Meg, i
don't know the maker, it came with GW2K ppro/200.

OK


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


passwd

1997-04-23 Thread Jesse Goldman
Hi,

I'm having trouble finding the source for the package passwd on the ftp
sites. The package itself is in binary-i386/base just like dselect says,
but the source isn't in source/base. I'm having the same problem finding
ncurses. What directory is this code kept in? Thanks

J. Goldman



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


LILO cylinder problem

1997-04-23 Thread Rick Jones
I don't understand why lilo is doing this.  I've never had this problem
before.

I just repartitioned my drive and put linux on hda2.  When I try to run
lilo to boot linux from hda2 instead of hda1 it gives me this error about
my cylinders.

geo_comp_addr: Cylinder number is too big (2312  1023)

I am aware that, for whatever reason, lilo won't look beyond cylinder
1023, the 540MB line that M$ drew out of ignorance years ago.  (It might
not have been Bill but I like blaming shit on him anyway.)

Anyway.  The point is that I took this into account and started hda2 at
cylinder 817.  I gave hda1 405MB, hda2 792MB, and hda3 is a 20MB rescue
partition.

So why in the hell does lilo report cylinder 2312 which I'm fairly sure is
in hda3 when I'm setting up hda2 which starts at 817?

I have used this same partition setup before without any trouble.  Anyone
have a clue?

When is lilo going to recognise hard drives larger than 540MB?  This is an
ignorant limitation.  Now that BIOS can read them when is lilo going to be
updated?

--Rick

[EMAIL PROTECTED]


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


HELP: Fatal Signal 11

1997-04-23 Thread John Maheu
Hi all: I'm fairly new to linux. Lately I've been getting a lot of fatal 
signal 11's. 

It seems to occur when my system has been up for a few days under light 
load or up a day under a heavier load, running some job in the background 
for about 24 hours. Then I get, compiling using g77 (I had been running 
memtest in the background for about 18 hours):

gcc: Internal compiler error: program f771 got fatal signal 11
I also get this with fort77. (I know the fortran code is OK.)  Trying this 
several 
more times usually results in a complete lock-up and a nasty reboot.

Some of the error messages I've gotten trying to compile code are
1 general protection: 
CPU: 0
EIP: 0010:[0012398b]
EFLAGS: 00010213
eax:64746769 ebx:0180cb28 ecx:0180cb28 edx:73006569
esi:0004 edi:00657c00 ebp:000ec5fa esp:01ff9b54
ds:0018 es:0018 fs:002b gs:002b ss:0018
process f771(pid:31229, process nr, 21 ,stackpage=01ff9000) 
2. hdb2: bad access: block=925712, count=1283457032... more of the same  
3. Fatal Signal 11,7

I've tried memtest and memtest-86, no errors found.
If I reboot I can use g77 as much as I want with no errors, but after 
several days I begin to see Fatal Signal 11 or if I have a cpu intensive 
job in the backgound for about 24 hours lots of trouble. 
Below is my system and some stuff from /proc

ANY HELP would be greatly appreciated. 
Is this a memory leak?
How do I isolate the hardware thats causing the problem?
Thanks
John

Specs:
Pentium 100, 40 MB RAM, cache 256
L2 cache SRAM type async
Award Modular BIOS v4.50PG
Intel 82430IB ver2.0-S
kernel 2.0.27, gcc 2.7.2.1 debian 1.2

cat pci cpuinfo stat meminfo interrupts  /out

PCI devices found:
  Bus  0, device  18, function  0:
VGA compatible controller: Trident TG 9440 (rev 227).
  Medium devsel.  IRQ 12.  
  Non-prefetchable 32 bit memory at 0xf000.
  Non-prefetchable 32 bit memory at 0xf020.
  Bus  0, device   7, function  1:
IDE interface: Intel 82371 Triton PIIX (rev 2).
  Medium devsel.  Fast back-to-back capable.  Master Capable.  Latency=32.  
  I/O at 0x3000.
  Bus  0, device   7, function  0:
ISA bridge: Intel 82371 Triton PIIX (rev 2).
  Medium devsel.  Fast back-to-back capable.  Master Capable.  No bursts.  
  Bus  0, device   0, function  0:
Host bridge: Intel 82437 (rev 1).
  Medium devsel.  Master Capable.  Latency=32.  
processor   : 0
cpu : 586
model   : Pentium 75+
vendor_id   : GenuineIntel
stepping: 5
fdiv_bug: no
hlt_bug : no
fpu : yes
fpu_exception   : yes
cpuid   : yes
wp  : yes
flags   : fpu vme de pse tsc msr mce cx8
bogomips: 39.73
cpu  347 0 490 35299
disk 1 1247 0 0
disk_rio 1 1006 0 0
disk_wio 0 241 0 0
disk_rblk 2 2018 0 0
disk_wblk 0 482 0 0
page 3138 306
swap 1 0
intr 43585 36136 483 0 0 65 2 0 0 0 0 0 0 0 1 6898 0
ctxt 3282
btime 861816450
processes 211
total:used:free:  shared: buffers:  cached:
Mem:  40194048  5890048 34304000  4530176   593920  2908160
Swap: 505405440 50540544
MemTotal: 39252 kB
MemFree:  33500 kB
MemShared: 4424 kB
Buffers:580 kB
Cached:2840 kB
SwapTotal:49356 kB
SwapFree: 49356 kB
 0:  36137   timer
 1:483   keyboard
 2:  0   cascade
 4: 65 + serial
 5:  2   sound blaster
13:  1   math error
14:   6898 + ide0
15:  0 + ide1

*
John Maheu
Queen's University
Dept. of Economics
Kingston ON
Canada
K7L 3N6
email: [EMAIL PROTECTED]
**



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


Re: passwd

1997-04-23 Thread Dale Scheetz
On Wed, 23 Apr 1997, Jesse Goldman wrote:

 Hi,
 
 I'm having trouble finding the source for the package passwd on the ftp
 sites. The package itself is in binary-i386/base just like dselect says,
 but the source isn't in source/base. I'm having the same problem finding
 ncurses. What directory is this code kept in? Thanks
 
The source package is called poeigl and builds login, as well as passwd
packages.

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: [Fwd: Critical Times article on Linux]

1997-04-23 Thread Walt Tautz
Apologies to those who get easily insulted, but
is the article in question. Perhaps this
should not be posted.
-W.T.

April 20 1997SOUNDING OFF  [Image][Down] [Image]
[Line]

 [Image]   Your news
   selection in
   the Personal
   It is the craze of the month among geeks whoTimes
  love complexity. Avoid it at all costs
   Key coverage
 Linux, the PC program from hell   in Election
   '97

   [Image]
  WAS I the only one who broke into a scream
  of terror when I looked at this month's copy
  of Personal Computer World? There, staring   COMDEX UK
  out from a free CD-Rom on the cover was the  97: Guide to
  program from hell, and all you needed to do  the show
  to let it take over your PC was double click
  a couple of times and kiss goodbye to your   Chip retains
  sanity.  information
   when
  The nasty piece of digital scurf in question computer
  is known as Linux and there are plenty ofcrashes
  sad types who will tell you it is the future
  of personal computing. Do not fall for this  Webwatch
  bizarre line in geek thinking.
   Internet
  Even Personal Computer World, after making   lets
  it so easy to enter the twilight zoneshoppers
  without a return ticket, saw fit to enter a  browse at
  few caveats in the fine print. Linux, it leisure
  said, came with a serious health warning.
  Don't even think about it, the magazine  Health:
  said, unless you are technically proficient  Video
  and have backed up all your PC files equipped
  beforehand.  ambulance
   puts
  Yes, but we know what the average PC user is casualty
  like. He never reads the words, he just  doctors in
  slings in the CD-Rom, clicks on the install  the picture
  icon, and hopes for the best. And if you are
  now looking at a blank screen with a few [Contact Us]
  impenetrable commands where you once had a
  working PC, then all I can say is: You have
  only yourself to blame.

  Linux, for the uninitiated, is a version of
  that old computer donkey known as Unix. If
  you need to run big computer Unix tasks then
  it is, I am told, not a bad solution at all.
  Equally, if you believe there is no point in
  doing easily something you can achieve the
  long way round, it is doubtless the way to
  go.

  Imagine a tougher version of MS-Dos ­ where
  the commands are even harder to memorise and
  less forgiving of errors ­ and you are
  starting to get there. And if you want to
  cheat a little, you can put on a
  pseudo-graphical front end and ­ bingo ­ you
  might just manage to turn a modern Windows
  NT-capable PC into a passable imitation of
  Windows 3.1 circa 1992.

  However, to read some publications, you
  might think that Microsoft's Bill Gates is
  quivering in his boots at the idea that
  Linux will do what IBM and Apple never
  managed to achieve ­ kick Windows off the
  everyday desktop. Really? Well, no. Linux is
  flavour of the month with the geek community
  for two reasons ­ it's free, and it's not
  from Microsoft.

  For a certain breed of bug-eyed computer
  user, that really is all you need. Trivial
  details such as usability, the lack of
  decent everyday software, and the plain fact
  that, when things go wrong, you are on your
  own are not setbacks to Linux addicts. These
  are the very reasons why they like the
  wretched thing ­ because it sets them apart
  from the mainstream of tedious, ordinary
  users who just use PCs to get on with the
  job.

  Personal computers seem to have attracted
  some strange and obsessive people along the
  way to becoming common or garden information
  tools. If Linux hadn't been invented by a
  Finnish student a few years back, something
  equally strange and esoteric would have
  appeared to take its place.

  Computer geeks despise simple, common
  standards. Gates is the object of their hate
  simply because he won the operating-system
  war. If Apple or IBM had come out on top,
  the people now buzzing so excitedly around
  Linux would have treated them to the hate
  mail they reserve for Gates today.

  Fads like Linux are diversionary characters
  in a digital freak show on the sidelines of
  modern information technology. Finding them
  on the cover disks of mainstream magazines
  says more about the novelty value of
  computer journalism than the real issues
  facing those trying to make tomorrow's PCs a
  sight 

Re: Critical Times article

1997-04-23 Thread Rick Jones

I didn't include the article, it would be a waste.

All I have to say is...what a fu**ing maroon.  He has obviously never even
looked at a computer with Linux on it.  And he calls himself a
Journalist?!?


--Rick

[EMAIL PROTECTED]


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


Re: Critical Times article

1997-04-23 Thread Matthew Tebbens

I'll have to agree with Rick. I cannot believe that this person is
a journalist !?!?  I could tell right away that he did alot of research
on the subject ! :)

The article was written by a windows95 cult member who tried to break
away, but failed. Last I heard he boarded a UFO in route to some comet
named Hale-Bopp. :)

Matthew 

On Wed, 23 Apr 1997, Rick Jones wrote:
 
 I didn't include the article, it would be a waste.
 
 All I have to say is...what a fu**ing maroon.  He has obviously never even
 looked at a computer with Linux on it.  And he calls himself a
 Journalist?!?
 
 
 --Rick
 
 [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: HELP: Fatal Signal 11

1997-04-23 Thread Al Youngwerth
There's something in the kernel 2.0 readme about this problem. It is
related to hardware problems. For me, it turned out to be a problem with
the external cache in my motherboard.

Al Youngwerth
[EMAIL PROTECTED]

--
 From: John Maheu [EMAIL PROTECTED]
 To: debian-user@lists.debian.org
 Subject: HELP: Fatal Signal 11 
 Date: Wednesday, April 23, 1997 1:09 PM
 
 Hi all: I'm fairly new to linux. Lately I've been getting a lot of fatal 
 signal 11's. 
 
 It seems to occur when my system has been up for a few days under light 
 load or up a day under a heavier load, running some job in the background

 for about 24 hours. Then I get, compiling using g77 (I had been running 
 memtest in the background for about 18 hours):
 
 gcc: Internal compiler error: program f771 got fatal signal 11
 I also get this with fort77. (I know the fortran code is OK.)  Trying
this 
 several 
 more times usually results in a complete lock-up and a nasty reboot.
 
 Some of the error messages I've gotten trying to compile code are
 1 general protection: 
 CPU: 0
 EIP: 0010:[0012398b]
 EFLAGS: 00010213
 eax:64746769 ebx:0180cb28 ecx:0180cb28 edx:73006569
 esi:0004 edi:00657c00 ebp:000ec5fa esp:01ff9b54
 ds:0018 es:0018 fs:002b gs:002b ss:0018
 process f771(pid:31229, process nr, 21 ,stackpage=01ff9000) 
 2. hdb2: bad access: block=925712, count=1283457032... more of the same  
 3. Fatal Signal 11,7
 
 I've tried memtest and memtest-86, no errors found.
 If I reboot I can use g77 as much as I want with no errors, but after 
 several days I begin to see Fatal Signal 11 or if I have a cpu intensive 
 job in the backgound for about 24 hours lots of trouble. 
 Below is my system and some stuff from /proc
 
 ANY HELP would be greatly appreciated. 
 Is this a memory leak?
 How do I isolate the hardware thats causing the problem?
 Thanks
 John
 
 Specs:
 Pentium 100, 40 MB RAM, cache 256
 L2 cache SRAM type async
 Award Modular BIOS v4.50PG
 Intel 82430IB ver2.0-S
 kernel 2.0.27, gcc 2.7.2.1 debian 1.2
 
 cat pci cpuinfo stat meminfo interrupts  /out
 
 PCI devices found:
   Bus  0, device  18, function  0:
 VGA compatible controller: Trident TG 9440 (rev 227).
   Medium devsel.  IRQ 12.  
   Non-prefetchable 32 bit memory at 0xf000.
   Non-prefetchable 32 bit memory at 0xf020.
   Bus  0, device   7, function  1:
 IDE interface: Intel 82371 Triton PIIX (rev 2).
   Medium devsel.  Fast back-to-back capable.  Master Capable. 
Latency=32.  
   I/O at 0x3000.
   Bus  0, device   7, function  0:
 ISA bridge: Intel 82371 Triton PIIX (rev 2).
   Medium devsel.  Fast back-to-back capable.  Master Capable.  No
bursts.  
   Bus  0, device   0, function  0:
 Host bridge: Intel 82437 (rev 1).
   Medium devsel.  Master Capable.  Latency=32.  
 processor : 0
 cpu   : 586
 model : Pentium 75+
 vendor_id : GenuineIntel
 stepping  : 5
 fdiv_bug  : no
 hlt_bug   : no
 fpu   : yes
 fpu_exception : yes
 cpuid : yes
 wp: yes
 flags : fpu vme de pse tsc msr mce cx8
 bogomips  : 39.73
 cpu  347 0 490 35299
 disk 1 1247 0 0
 disk_rio 1 1006 0 0
 disk_wio 0 241 0 0
 disk_rblk 2 2018 0 0
 disk_wblk 0 482 0 0
 page 3138 306
 swap 1 0
 intr 43585 36136 483 0 0 65 2 0 0 0 0 0 0 0 1 6898 0
 ctxt 3282
 btime 861816450
 processes 211
 total:used:free:  shared: buffers:  cached:
 Mem:  40194048  5890048 34304000  4530176   593920  2908160
 Swap: 505405440 50540544
 MemTotal: 39252 kB
 MemFree:  33500 kB
 MemShared: 4424 kB
 Buffers:580 kB
 Cached:2840 kB
 SwapTotal:49356 kB
 SwapFree: 49356 kB
  0:  36137   timer
  1:483   keyboard
  2:  0   cascade
  4: 65 + serial
  5:  2   sound blaster
 13:  1   math error
 14:   6898 + ide0
 15:  0 + ide1
 


*
 John Maheu
 Queen's University
 Dept. of Economics
 Kingston ON
 Canada
 K7L 3N6
 email: [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] .


lp-device trouble again

1997-04-23 Thread barknech
Thank you all for trying to answer my question. I think I have forgotten
to say, that I am indeed cat-ing a postsript-file (not raw text or 
anything else, but I admit that I tried...) to the printer,
but it does not work. Under DOS the command copy junk.ps lpt1
prints every postscript-file without hassle. So it's seems not to be
a hardware problem. 
If it's a line-termination character problem, how can solve it?


I wrote:
 I have a serious problem with my printer: it does not print.
 If I try to print anything (via cat as root, or with lpr), 
 the device seems to receive data, because its display says 
 so (PROCESSING...WAITING... and then READY). 
 But it still does not print.
 My Debian is 1.2 of the InfoMagic Dev.Resource-CD.
 I'm using apsfilter_4.9.1-10 (well, in fact I'm _not_using_ it so far).
 My printer is a NEC Silentwriter S60P-Printer. This is a 
 Postscript-Printer, but an old one. It works fine under DOS (Win95), 
 and it had been sucessful the RedHat-Linux-Computer of a friend.
 I do not use plip, I read the Printing-Howto and fiddled around with tunelp, 
 it keeps saying things like:
 
 #   bash# tunelp /dev/lp1
 #   /dev/lp1 using polling
 #   bash# tunelp /dev/lp1 -s
 #   /dev/lp1 status is 223, on-line
 #   bash# tunelp /dev/lp1 -i 7
 #   /dev/lp1 using IRQ 7
 #   bash# tunelp /dev/lp1 -s   
 #   /dev/lp1 status is 223, on-line
 
 with no positive effect on printing.
 
 I tried, if a kernel-version-upgrade would help, but nope:
 No printing with 2.0.27 nor 2.0.29.
 lp-support is a module in the kernel, kerneld starts it at boot time.

Frank Barknecht
###
mailto: [EMAIL PROTECTED]
###





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


Re: Rocket Port ISA card and LINUX

1997-04-23 Thread Theodore Y. Ts'o
   Date: Wed, 23 Apr 1997 14:49:04 -0500
   From: Lauralyn Gorham [EMAIL PROTECTED]

   Hi Ted.  I'm going to be installing the 2.0.01 Debian Linux here shortly,
   in hope to find autoconfig.h file.  Our UK office has a customer that seems
   to be missing it, and it causes the driver install to fail?  do you know
   what it's use if for and where to get it?

It's from the kernel include files, and it indicates that the
compilation environment isn't set up properly.

I don't know enough about the debian distribution to know whether or not
all of the include files (including the kernel include files) are
present as part of the default compilation environment or not.
Depending how the Debian has set things up, the user might have to get a
copy of the kernel sources and build a kernel before they can build the
Rocketport driver.  (This isn't necessary for Redhat, since their kernel
include package --- which is mandatory if you install the C compiler ---
has a fully configured set of kernel include files that match the kernel
which they install.)

I've cc'ed this message to [EMAIL PROTECTED], in hopes that
someone there can help shed light on this issue.  Thanks!!

- Ted

   2) Linux with Kernal release 2.0.21
   
   Their customer has a problem installing the driver. ( He downloaded the 
   latest release from FTP site).
   
   The problem occurs during the recompile stage of the installation 
   (step number 3 in our install guide) The installation fails with a
   
   autoconfig.h not found message.


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


Re: Dial up PPP

1997-04-23 Thread LinuxBOX

OK here's an update on this one.  Hopfully not to many are thinking about
the last one.  I got the modem to anser and conect with PPP.  I had to
inter the IP in win95 before it would work.  I then proseded to telnet the
the debian box.  I loged in and had a victory dance.  However I soon
discovered that I cannot conect to anything but the linux box itself.  The
Box has an ethernet conection to the internet and I can't conect to it
through the box.  Is theire something simple I have missed.  Do I need to
install some kind of routing package?  Do I need to modfyf something in
my dialup networking.  Thanks again to all who helped.
Thanks ( On Wed, 23 Apr
1997, LinuxBOX wrote:

 OK that fixed the error message.  Now when I dial up with Win95 I get an
 eror message on my side.  It sais the machine you are conecting with could
 not establish a dialup networking conection, please verify username and
 pasword.  I verified and I am thinking that I missed something in the
 setup.
 I am also conserened with the fact that root is the only user that has
 acess to pppd.  Should this consern me?  Thanks
 
 
 On Tue, 22 Apr 1997, Rob MacWilliams wrote:
 
   I am trying to conigure the box do accept a dialup pp conection.   I am
   getting an error message that I don't understand.
   mgetty fatal: ys0 login' etc/mgetty/login.config must be root/0600
  
  You need to change the permissions on the /etc/mgetty/login.config.  After 
  you login or su to root
   try:
  
  chown root /etc/mgetty/login.config
  chmod 600 /etc/mgetty/login.config
  
  Mgetty doesn't like having it's config file accessable to the world.
  
  Have fun
  
  
  
  
   Thanks
   
   
   
   --
   TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
   [EMAIL PROTECTED] . 
   Trouble?  e-mail to [EMAIL PROTECTED] .
   
  
  
  
  
  Change is inevitable, except from a vending machine.
  
  Rob MacWilliams   [EMAIL PROTECTED]
  N9NPU
  
  
  
  
  
  
  
 
 
 --
 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: Critical Times article

1997-04-23 Thread Paul Rightley

On 23-Apr-97 Matthew Tebbens wrote:
I'll have to agree with Rick. I cannot believe that this person is
a journalist !?!?  I could tell right away that he did alot of research
on the subject ! :)

On Wed, 23 Apr 1997, Rick Jones wrote:
 All I have to say is...what a fu**ing maroon.  He has obviously never even
 looked at a computer with Linux on it.  And he calls himself a
 Journalist?!?


Why is everyone so incredulous that this man is a journalist?  Is there some
minimum standard that people are held to before they can write for a newspaper? 
(If so, I would recommend that it be 'upgraded' to remove the bottom feeders
that have become prevalent in our media of late.)  Lord knows, if I wanted to
sit around and spout off my opinions all day without concern for reality I would
try to become a newspaper columnist.  Leave the guy alone - remember Bruce's
admonishment regarding fights with idiots.



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


Re: xserver_s3v

1997-04-23 Thread Riku Saikkonen
Mathieu Guillaume wrote:
Since then, S3 relaxed the specs to allow a rate of 94.5MHz in this mode,
so I wondered if a package would soon come which would allow this. If not,

I read from comp.windows.x.i386unix a few days ago that new XFree86 beta
versions allow it. So either wait for the beta versions to become official
(and then Debian packages), or use the betas (it is probably enough to get
the beta server and just replace the X server binary) (see
http://www.xfree86.org/).

(The XFree86 folks don't give out source for the beta versions, which may be
the reason why there aren't Debian packages available for them (as far as I
understand, such packages should go into contrib or non-free).)

-- 
-=- Rjs -=- [EMAIL PROTECTED], [EMAIL PROTECTED]


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


Re: Rocket Port ISA card and LINUX

1997-04-23 Thread Manoj Srivastava
Hi,

Could you please ask the customer what versions of
 libc{5,6}-dev, and kernel-{source,header,image}-X.X.XX packages are
 installed on their system? 

I have kernel-source-2.0.30 on ,y machine, and I could not
 find any autoconfig.h on my system either (I have performed a make
 config as well), and I am curious where the reference comes from. As
 you can see below, there seems to be no reference to autoconfig.h
 anywhere in the kernel sources or the files in /usr/include.

manoj

__ find /usr/include -name autoconfig.h
__ find /usr/src/kernel-source-2.0.30/ -name autoconfig.h
__ find /usr/src/kernel-source-2.0.30/ -name \*.h | xargs egrep autoconfig.h
__ find /usr/src/kernel-source-2.0.30/ -name \*.c | xargs egrep autoconfig.h
__ find /usr/src/kernel-source-2.0.30/ -type f | xargs egrep autoconfig.h
__ find /usr/include -type f | xargs egrep autoconfig.h
__ 
-- 
 Computers are like Old Testament gods; lots of rules and no mercy.
 Joseph Campbell
Manoj Srivastava   url:mailto:[EMAIL PROTECTED]
Mobile, Alabama USAurl:http://www.datasync.com/%7Esrivasta/


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


Re: Rocket Port ISA card and LINUX

1997-04-23 Thread Lauralyn Gorham
Hello, Thank you for responding so quickly.

It is a customer of a coworker of mine from the UK. I'm in the US, so I
don't know when I can get an answer to which version of libc he has.  I do
know he has the kernal revision 2.0.21. To be honest, I don't know if the
customer has Debian, but I do. I was hoping by installing Debian 2.0.3,
that I could duplicate his problem or at least investigate it a little. But
I'm beginning to realize even more how different the distributions are.

-Lauralyn
At 04:59 PM 4/23/97 -0500, Manoj Srivastava wrote:
Hi,

   Could you please ask the customer what versions of
 libc{5,6}-dev, and kernel-{source,header,image}-X.X.XX packages are
 installed on their system? 

   I have kernel-source-2.0.30 on ,y machine, and I could not
 find any autoconfig.h on my system either (I have performed a make
 config as well), and I am curious where the reference comes from. As
 you can see below, there seems to be no reference to autoconfig.h
 anywhere in the kernel sources or the files in /usr/include.

   manoj

__ find /usr/include -name autoconfig.h
__ find /usr/src/kernel-source-2.0.30/ -name autoconfig.h
__ find /usr/src/kernel-source-2.0.30/ -name \*.h | xargs egrep autoconfig.h
__ find /usr/src/kernel-source-2.0.30/ -name \*.c | xargs egrep autoconfig.h
__ find /usr/src/kernel-source-2.0.30/ -type f | xargs egrep autoconfig.h
__ find /usr/include -type f | xargs egrep autoconfig.h
__ 
-- 
 Computers are like Old Testament gods; lots of rules and no mercy.
 Joseph Campbell
Manoj Srivastava   url:mailto:[EMAIL PROTECTED]
Mobile, Alabama USAurl:http://www.datasync.com/%7Esrivasta/


  \
 ( o o )
 oO00__(_)__0O0o_
( There was a young man from Lyme   )
( Who couldn't get his limericks to sound right,)
( When asked why not, It was said that he thought,  )
( They were probably too long and badly structured  )
( and not very funny.   )
( .oooO )
( (   )   Oooo. )
(__\ ((   )_)
\_)) /
  (_/
Lauralyn Gorham   Ph:   (612) 631-7654
Technical ServicesFax:  (612) 631-8117
Comtrol Corporation   WEB   http://www.comtrol.com
900 Long Lake RoadFTP   ftp.comtrol.com 
St. Paul, MN 55112BBS   (612) 631-8310  



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


Re: Rocket Port ISA card and LINUX

1997-04-23 Thread Theodore Y. Ts'o
   From: Manoj Srivastava [EMAIL PROTECTED]
   Date: 23 Apr 1997 16:59:13 -0500

   Could you please ask the customer what versions of
libc{5,6}-dev, and kernel-{source,header,image}-X.X.XX packages are
installed on their system? 

   I have kernel-source-2.0.30 on ,y machine, and I could not
find any autoconfig.h on my system either (I have performed a make
config as well), and I am curious where the reference comes from. As
you can see below, there seems to be no reference to autoconfig.h
anywhere in the kernel sources or the files in /usr/include.

I the file that he was looking for was probably autoconf.h --- it's
required by files such as /usr/include/linux/config.h.  autoconf.h is
generated by the kernel as part of the make config process.

- Ted


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


Re: Can we upload binaries using libc6 to hamm yet?

1997-04-23 Thread Tomislav Vujec
Thomas Koenig [EMAIL PROTECTED] writes:

 What naming convention should I use?  I can't very well upload two
 foo_2.1-1_i386.changes and foo_2.1-1_i386.deb files simultaneously.
 foo_2.1-1_i386-libc6.changes or .deb, maybe?
 
 Or should I just release the libc5 version as foo_2.1-1, and the libc6
 version as foo_2.1-2?  Argh.

What about splitting release numbers for bo bug fixes? You can release
foo_2.1-1 as libc5 and foo_2.1-2 as libc6 package. Next libc5 bug fix
will be foo_2.1-1.1, and so on.

-- 
Tomislav Vujec [EMAIL PROTECTED]
---
To understand recursion, one must first understand recursion...


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


Re: Rocket Port ISA card and LINUX

1997-04-23 Thread Theodore Y. Ts'o
   Date: Wed, 23 Apr 1997 17:17:21 -0500
   From: Lauralyn Gorham [EMAIL PROTECTED]

   It is a customer of a coworker of mine from the UK. I'm in the US, so I
   don't know when I can get an answer to which version of libc he has.  I do
   know he has the kernal revision 2.0.21. To be honest, I don't know if the
   customer has Debian, but I do. I was hoping by installing Debian 2.0.3,
   that I could duplicate his problem or at least investigate it a little. But
   I'm beginning to realize even more how different the distributions are.

It's not so much that the distributions are different (everyone puts the
include files in /usr/include and the kernel files in /usr/src/linux).  

The trouble comes when users don't install all of the packages, for what
they might consider to be good and proper reasons (why do they need
kernel sources, etc.).  At this point, it's a question of what the right
packages are to install, and there the various distributions seriously
part company.

The good news is that this is basically an install issue, and once we
get through these install issues will hopefully be the end of most of
the users' problems.

- Ted


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