Re: ssh_host_key?

2000-02-28 Thread Chris Timmons


I tried starting sshd via the rc.conf infrastructure after another
buildworld/installworld this morning and still see the:

sshd[166]: fatal: rsa_private_decrypt() failed

error.  I thought perhaps some of Peter's changes might have helped, but
it seems to still boil down to the need to start sshd after ldconfig runs
in /etc/rc.

-Chris

On Mon, 28 Feb 2000, Kris Kennaway wrote:

 On Mon, 28 Feb 2000, Jordan K. Hubbard wrote:
 
   Hmm. Whats the status of the sysinstall changes we were talking
   about? Namely, displaying rsaref on the correct vty during installation,
   and teaching it to pick up the RSA packages?
  
  I'm going to do this tonite, before I roll RC#3.
 
 Good boy :-)
 
 Kris
 
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with "unsubscribe freebsd-current" in the body of the message
 




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: ssh_host_key?

2000-02-28 Thread Kris Kennaway

On Mon, 28 Feb 2000, Chris Timmons wrote:

 
 I tried starting sshd via the rc.conf infrastructure after another
 buildworld/installworld this morning and still see the:
 
   sshd[166]: fatal: rsa_private_decrypt() failed
 
 error.  I thought perhaps some of Peter's changes might have helped, but
 it seems to still boil down to the need to start sshd after ldconfig runs
 in /etc/rc.

Yes, Mark (finally :) fixed this. Please resup, mergemaster and try
again.

Kris


"How many roads must a man walk down, before you call him a man?"
"Eight!"
"That was a rhetorical question!"
"Oh..then, seven!" -- Homer Simpson



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: cpp change breaks ipfw

2000-02-28 Thread Kai Großjohann

Jim Bloom [EMAIL PROTECTED] writes:

 That small test works fine, but doesn't solve the problem I was having.

Oops.  Sorry.

kai
-- 
~/.signature: No such file or directory


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: CardBus in current??

2000-02-28 Thread Warner Losh

In message [EMAIL PROTECTED] William Woods writes:
: I am running FreeBSD 4.0 -current on my IBM Thinkpad 600E, last
: nights cvsup and make world and I herd a rumor that cardbus was
: supported? Is this true? I have a adaptec SlimSCSI 1480A that I
: would love to get workingis there any hope?

Cardbus bridges are supported in 16-bit mode only.  Since the 1480A is
a 32bit card, it isn't supported.  The 1460 cards are currently in
current.

Cardbus work is underway, but won't be in 4.0.

Warner


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: CardBus in current??

2000-02-28 Thread Warner Losh

In message [EMAIL PROTECTED] Will Andrews writes:
: CardBus will probably not be supported to any high extent until FreeBSD
: 4.2. There will probably be some support in 4.1, though. And that's just a
: guess - it all depends on the amount of time people spend on these things.

It will likely be in 4.1 (the 1480A is likely one of the first ones to
be supported).  4.2 will have more support.

All of this assumes that I get the time to work on this.

Warner


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: ssh_host_key?

2000-02-28 Thread Ollivier Robert

According to Nawfal M. Rouyan:
 won't start because its searching for the ssh_host_key
 file. How do I generate that file?

ssh-keygen -N '' -b 1024 -f /etc/ssh/ssh_host_key
-- 
Ollivier ROBERT -=- FreeBSD: The Power to Serve! -=- [EMAIL PROTECTED]
FreeBSD keltia.freenix.fr 4.0-CURRENT #77: Thu Dec 30 12:49:51 CET 1999



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: cpp change breaks ipfw

2000-02-28 Thread Gregory Bond

 #define addr 192.186.2.5
 #define mask 255.255.240.0
 
 #define rule(ADDR,MASK) add pass tcp from ADDR ## : ## MASK to any 25 setup
 rule(addr,mask)

This is a well-known artifact of the ANSI C rules.  You need to do two levels 
of macro in order to get the macro args expanded in the paste operator:

#define addr 1.2.3.4
#define mask 255.255.255.0

#define hn(A,M) A ## : ## M

#define rule(A,M) add pass tcp from hn(A,M) to any 25 setup

rule(addr, mask)

which produces
add pass tcp from   1.2.3.4:255.255.255.0 to any 25 setup 

when fed through an ANSI preprocessor (i.e. not "gcc -E" and not /usr/bin/cpp
on 3.x!).  This also works if (e.g.) addr is defined on the command line.





To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: cpp change breaks ipfw

2000-02-28 Thread Gregory Bond


I wrote:

 when fed through an ANSI preprocessor (i.e. not "gcc -E" and not /usr/bin/cpp
 on 3.x!).  This also works if (e.g.) addr is defined on the command line.

and of course I _meant_ to write "(i.e. "gcc -E" and not /usr/bin/cpp..."
gcc -E _is_ an ANSI cpp.



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: More ld-elf.so.1: assert failed messages

2000-02-28 Thread John Polstra

In article [EMAIL PROTECTED],
Donn Miller  [EMAIL PROTECTED] wrote:
 This time it happens with a recent cvs version of wine (about 1 week
 old).
 
 $ wine -desktop 780x560 ./iew31.exe 
 Could not stat /mnt/fd0, ignoring drive A:
 ld-elf.so.1: assert failed: /usr/src/libexec/rtld-elf/lockdflt.c:54
 wine: can't exec './iew31.exe': invalid exe file
 Terminated
 
 My version of -current is from Feb 24.  Hmmm...  maybe there's still
 some problems there?  Wine is the only app I've seen that still does
 this.

Crud. :-(

When the assert fails it should generate a core dump if the
permissions of the working directory allow it.  If you can get a
core dump and use gdb to get a stack trace, that would help me a
lot.  Otherwise it's almost impossible for me to diagnose this.

If you can tell me precisely how to duplicate the problem then I'll
try.  Assume I know nothing about wine.

Thanks,
John
-- 
  John Polstra   [EMAIL PROTECTED]
  John D. Polstra  Co., Inc.Seattle, Washington USA
  "Disappointment is a good sign of basic intelligence."  -- Chögyam Trungpa



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: More ld-elf.so.1: assert failed messages

2000-02-28 Thread Donn Miller

John Polstra wrote:
 
 In article [EMAIL PROTECTED],
 Donn Miller  [EMAIL PROTECTED] wrote:
  This time it happens with a recent cvs version of wine (about 1 week
  old).
 
  $ wine -desktop 780x560 ./iew31.exe
  Could not stat /mnt/fd0, ignoring drive A:
  ld-elf.so.1: assert failed: /usr/src/libexec/rtld-elf/lockdflt.c:54
  wine: can't exec './iew31.exe': invalid exe file
  Terminated

 When the assert fails it should generate a core dump if the
 permissions of the working directory allow it.  If you can get a
 core dump and use gdb to get a stack trace, that would help me a
 lot.  Otherwise it's almost impossible for me to diagnose this.
 
 If you can tell me precisely how to duplicate the problem then I'll
 try.  Assume I know nothing about wine.

Here's the backtrace from gdb:

(gdb) backtrace
#0  0x2805ce30 in kill () from /usr/libexec/ld-elf.so.1
#1  0x2805ca0d in abort () from /usr/libexec/ld-elf.so.1
#2  0x28053c6e in lockdflt_acquire () from /usr/libexec/ld-elf.so.1
#3  0x28053bc0 in _rtld_bind () from /usr/libexec/ld-elf.so.1
#4  0x28051205 in _rtld_bind_start () from /usr/libexec/ld-elf.so.1
#5  0x284ad3fc in SYSDEPS_StartThread () from
/usr/local/lib/libwine.so
#6  0x0 in ?? ()

Note:  I didn't compile wine with -g.  I'll do that if you want...

- Donn


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: ie0 and fe0 probes in 4.0-CURRENT GENERIC break ep0 probe

2000-02-28 Thread Matthew N. Dodd

On Sun, 27 Feb 2000, Robert Watson wrote:
 I've posted about this previously, and am still hoping for a useful answer
 :-).  I have a box with an ISA 3Com 3C509 Etherlink III card in it, but
 the ie0 and fe0 probes now come before the ep0 probe in the boot sequence.
 If those two probes are enabled, as they are on the same port (0x300) they
 leave ep0 in a state wherein the system crashes after the ep0 probe.
 I'm not sure what the right answer is here--reorder the probes?  Change
 the ep0 probe?  Either way, things are not very happy :-).  Suggestions
 welcome.

Disable the drivers you don't have hardware for.

I'm going to address this problem post 4.0 as its not something that will
be very easy to solve.

-- 
| Matthew N. Dodd  | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD  |
| [EMAIL PROTECTED] |   2 x '84 Volvo 245DL| ix86,sparc,pmax |
| http://www.jurai.net/~winter | This Space For Rent  | ISO8802.5 4ever |



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: [PATCH] Fix login.conf, expiration, BSD compatibility in OpenSSH

2000-02-28 Thread Brian Fundakowski Feldman

On Sun, 27 Feb 2000, Andrey A. Chernov wrote:

 This patch revive almost all login.conf and password/account expiration
 features, makes OpenSSH more FreeBSD login compatible and fix non-critical
 memory leak.
 
 Please review and commit.

I'm not very comfortable with this, to be honest.  I don't see why
everything got moved around, at the least.

-- 
 Brian Fundakowski Feldman   \  FreeBSD: The Power to Serve!  /
 [EMAIL PROTECTED]`--'



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: More ld-elf.so.1: assert failed messages

2000-02-28 Thread John Polstra

In article [EMAIL PROTECTED],
Donn Miller  [EMAIL PROTECTED] wrote:

 Here's the backtrace from gdb:
 
 (gdb) backtrace
 #0  0x2805ce30 in kill () from /usr/libexec/ld-elf.so.1
 #1  0x2805ca0d in abort () from /usr/libexec/ld-elf.so.1
 #2  0x28053c6e in lockdflt_acquire () from /usr/libexec/ld-elf.so.1
 #3  0x28053bc0 in _rtld_bind () from /usr/libexec/ld-elf.so.1
 #4  0x28051205 in _rtld_bind_start () from /usr/libexec/ld-elf.so.1
 #5  0x284ad3fc in SYSDEPS_StartThread () from
 /usr/local/lib/libwine.so
 #6  0x0 in ?? ()

Thanks!  I grabbed the 2227 snapshot of wine and looked at its
sources too, and I know what's going on now.  It's the dreaded rfork
threads. :-(

I'm going to think about this a little bit.  It may well be hard to
fix it in time to make Jordan feel good about letting it into 4.0.

 Note:  I didn't compile wine with -g.  I'll do that if you want...

Thanks, but it's not necessary at this point.

John
-- 
  John Polstra   [EMAIL PROTECTED]
  John D. Polstra  Co., Inc.Seattle, Washington USA
  "Disappointment is a good sign of basic intelligence."  -- Chögyam Trungpa



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: Installation floppies and USB

2000-02-28 Thread Phoenix


If it is the same kind of acer as I have you may be in luck,
hidden away on the back panel hidden behind a sticker and a
metal knockout there are 2 ps/2 style connectors. Pull the
top off of your box and see if you have them (near the parrellel
port) I have been running -current on this box for a month
with no problems other than having to use a normal keyboard for
the install.

also Nick Himba

Seeing that your USB controller fails to work properly when the FreeBSD
kernel takes over, I bet somewhere there is a problem with shared
interrupts.

Because a USB keyboard here works either with USB support or without USB
support compiled in.

I had the same problem on my box, Ie. the usb controler wont do
emulation at boot under freebsd, strangly the same box ran linux
for 6 months witout the usb stack loaded and the keyboard worked
fine, it just broke when I loaded the stack. works fine now as
long as my freebsd kernel has usb enabled.

Bob



On Feb 28, The Matrix made John Reynolds~ say,


[forwarded from -questions to the above groups because this seems to be a
legit "problem" and I wanted the "right eyes" in -current to see it. ]

--- start of forwarded message ---
From: "John Daniels" [EMAIL PROTECTED]
Subject: Installation floppies and USB
Date: Sun, 27 Feb 2000 21:19:50 EST

I have a system with only a *USB* keyboard port (no PS/2 or AT-style ports). 
  When I boot the installation floppies I get the message:
  keyboard:no
After reading errata,release notes, etc., I learned that I should hit
'enter' and type '-Dh' at the prompt, which I did.  Now the installation 
proceeds until the kernel is booted and the kernel configuration menu is 
displayed (with 3 options: skip config, full-screen, CLI-mode).  At that 
point my keyboard becomes unusable.  I believe that this may be because the 
kernel ('GENERIC'?) doesn't include USB support.  USB support is supposed to 
be compiled in *after* an install.

For my system, this is unacceptable.  I now have a catch-22: I can't get USB 
support until the kernel is recompiled, and I can't recompile the kernel 
unless I can use the keyboard to install FreeBSD.

My system was created by a major PC Manufacturer (Acer) and I'm sure that 
they have sold thousands like it.  I'm sure that they are not/will not be 
the only manufacturer to create USB-only systems.  My system uses Human 
Interface Devices (HID) USB.  It is *CRUCIAL* that USB keyboards be 
recognized "out-of-the-box" for current and future systems that only support
USB keyboards.

QUESTION: Are there work currently andy arounds/solutions in FreeBSD?  When 
can USB be available "out-of-the-box?" (I was hoping it would be in 4.0) 
Lastly, the NetBSD install floppy recognizes my keyboard and lets me use it 
during the install.  Is there any possible workaround that includes booting 
the NetBSD install disk, or installing FreeBSD over/after NetBSD?

NOTE: There has already been at least one other FreeBSD newbie who has 
encountered this problem (also with an Acer box), and there seems to be a 
fair amount of USB questions/discussion online.

Any info/help is greatly appreciated

John
[EMAIL PROTECTED]

__
Get Your Private, Free Email at http://www.hotmail.com



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message

--- end of forwarded message ---

-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
| John Reynolds   WCCG, CCE, Higher Levels of Abstraction   |
| Intel Corporation   MS: CH6-210   Phone: 480-554-9092   pgr: 602-868-6512 |
| [EMAIL PROTECTED]  http://www-aec.ch.intel.com/~jreynold/  |
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: Two queries [ KDE / XFree86 ]

2000-02-28 Thread Louis A. Mamakos

 Will Andrews wrote:
 
  On Mon, Feb 28, 2000 at 10:42:22PM +0200, Maxim Sobolev wrote:
   Do you have any plans to make XFree86-devel port of it? This let us to test
   it and refine before XF-4.0 will be released.
 
  I already made one. However, since XFree86 4.0's release is impending
  within the next three or four weeks (as per xfree86.org), I've left it on
  my website for those daring enough to try it out.
 
  http://www.psn.net/~andrews/XFree86-beta.tar.gz
 
 Thanks for pointing. What is your opinion about it (stability, compatability,
 performance etc)?

One compatability problem would seem to be lack of support for the
Number Nine I128 board, previously supported in 3.3.*.  This is very
disappointing, as I've got to use that board to drive my SGI
1600x1200 LCD display..  I guess I'll be using 3.3.6 a bit longer on
that machine :-(

I'd love to be proved wrong, but the release notes for the snapshots
have been pretty silent on support for this board.

louie




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Make World fails

2000-02-28 Thread jon

Hello all..

I'm attempting to upgrade from 3.2-Release to -current, got all the sources through 
anonymous cvs and went through the process.  Ran into a glitch that was solved by 
updating a module,, then all went well for about 45 minutes.  Then I got the error 
"Dont' know how to make argwatch.c"  It's a part of /src/gnu/usr.bin/cvs  I looked at 
the Makefiles and it was including two directories. Neither directory 
(/src/gnu/usr.bin/cvs/lib and /src/contrib/cvs/src) had the files that it is in 
/src/gnu/usr.bin/cvs/lib/Makefile .  I checked anonymous FTP and it was the same 
situation.  And I haven't received anythhing from the cvs-all mailing list regarding 
these files.  What do I do to get this to finish up?

Thanks,
Jon


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



ipv6?

2000-02-28 Thread Nawfal M. Rouyan

Is ipv6 fully supported in 4.0? I see that many ipv6 
options in the LINT file but there are no mentions of
ipv6 support in the release notes...

thanks
__
Do You Yahoo!?
Talk to your friends online with Yahoo! Messenger.
http://im.yahoo.com


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



consistent make -k buildworld crash with 2 swap partitions

2000-02-28 Thread Daniel Ortmann


Submitter-Id:   current-users
Originator: Daniel Ortmann
Organization:   N/A
Confidential:   no
Synopsis:   consistent "make -k buildworld" crash with 2 swap partitions
Severity:   critical
Priority:   high
Category:   kern
Release:FreeBSD 4.0-CURRENT i386
Class:  sw-bug
Environment: 

The /etc/fstab which enables the crash is the following.  To fix it
comment out the second swap.  Note they are on separate drives.

# DeviceMountpoint  FStype  OptionsDumpPass#
/dev/wd1s1b noneswapsw 0   0
/dev/wd2s1b noneswapsw 0   0
/dev/wd2s1a /   ufs rw 1   1
/dev/wd2s1d /home   ufs rw 2   2
/dev/wd1s1e /rootbakufs ro 2   2
/dev/wd0s2a /rootboot   ufs ro 2   2
/dev/wd1s1f /tmpufs rw 2   2
/dev/wd2s1f /usrufs rw 2   2
/dev/wd1s1h /usr/X11R6  ufs rw 2   2
/dev/wd1s1a /usr/local  ufs rw 2   2
/dev/wd2s1g /usr/objufs rw 2   2
/dev/wd2s1h /usr/ports  ufs rw 2   2
/dev/wd1s1d /usr/ports/distfilesufs rw 2   2
/dev/wd1s1g /usr/srcufs rw 2   2
/dev/wd2s1e /varufs rw 2   2
proc/proc   procfs  rw 0   0
kern/kern   kernfs  rw 0   0

My hardware is quite standard.  The kernel config file almost matches
GENERIC.  Here are the options in case you find information here:

options INET#InterNETworking
options INET6   #IPv6 communications protocols
options FFS #Berkeley Fast Filesystem
options FFS_ROOT#FFS usable as root device [keep this!]
options MFS #Memory Filesystem
options MD_ROOT #MD is a potential root device
options NFS #Network Filesystem
options MSDOSFS #MSDOS Filesystem
options CD9660  #ISO 9660 Filesystem
options CD9660_ROOT #CD-ROM usable as root, CD9660 required
options PROCFS  #Process filesystem
options COMPAT_43   #Compatible with BSD 4.3 [KEEP THIS!]
options UCONSOLE#Allow users to grab the console
options USERCONFIG  #boot -c editor
options VISUAL_USERCONFIG   #visual boot -c editor
options KTRACE  #ktrace(1) support
options SYSVSHM #SYSV-style shared memory
options SYSVMSG #SYSV-style message queues
options SYSVSEM #SYSV-style semaphores
options P1003_1B#Posix P1003_1B real-time extentions
options _KPOSIX_PRIORITY_SCHEDULING
options ICMP_BANDLIM#Rate limit bad replies
options AUTO_EOI_1
options AUTO_EOI_2
options COMPAT_LINUX
options CLK_CALIBRATION_LOOP
options CLK_USE_I8254_CALIBRATION
options CLK_USE_TSC_CALIBRATION
options ICMP_BANDLIM
options IPDIVERT
options IPFIREWALL
options IPFIREWALL_VERBOSE
options IPFIREWALL_VERBOSE_LIMIT=3
options KERNFS
options MD5
options NO_F00F_HACK
options PPP_DEFLATE
options PPP_FILTER
options SC_DISABLE_REBOOT
options SOFTUPDATES
options ATA_STATIC_ID   #Static device numbering

I should also mention that I am running softupdates.

Description: 

If both swap partitions are enabled then "make -k buildworld" crashes
the system with ABSOLUTE CONSISTENCY.

Since this behavior has been around for about a year (???) I assume my
system configuration must be unusual ... or surely this would have been
discovered and fixed earlier.

Several months ago a bug was found with dual swap partitions.  It
involved some cross-partition alignment problem.  When that bug was
fixed most of my crashes disappeared.  Except for this problem.
But "make -k buildworld" continued to crash the system.

How-To-Repeat: 

1) Edit fstab to use 2 separate swap partitions on 2 separate drives.
2) Run with softupdates.
3) Run "make -k buildworld"

Note 1: I don't know if the second partition *must* be on a different
drive to cause the crash, only that my system is set up that
way.

Note 2: I don't know if softupdates has anything to do with 

make world fails

2000-02-28 Thread jon

Sorry if this is a repeat, I don't think my letter was sent...

On attempting to upgrade from 3.2-RELEASE to -current, make world fails.  The problem 
lays with /src/gnu/usr.bin/cvs.  In /sr/gnu/usr.bin/cvs/lib/Makefile it's looking for 
files in /src/contrib/cvs/src and /src/gnu/usr.sbin/cvs/lib that do not exist.  I 
check the ftp site, they aren't there, and i've cvs up'd the modules.  On the web cvs 
browser, the files show up but are marked as Attic and have been removed.  How do i 
fix this?

Thanks,
Jon


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: ipv6?

2000-02-28 Thread Kris Kennaway

On Mon, 28 Feb 2000, Nawfal M. Rouyan wrote:

 Is ipv6 fully supported in 4.0? I see that many ipv6 
 options in the LINT file but there are no mentions of
 ipv6 support in the release notes...

Yes, it's an oversight (one of many :(

Kris


In God we Trust -- all others must submit an X.509 certificate.
-- Charles Forsythe [EMAIL PROTECTED]



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: Two queries [ KDE / XFree86 ]

2000-02-28 Thread Thomas Graichen

Cliff Rowley [EMAIL PROTECTED] wrote:

 Second:

 Using KDM in place of XDM, XFree86 just dies immediately, resulting in
 several attempts at launching, and then a 30 second pause.  XFree86 works
 perfectly otherwise.

i see the same problem here (with an kde build outside of the ports
but with all the relevant patches applied) - the sources built and
worked fine with 3.3 but when built with 4.0-current kdm core-
dumps ... ok so i tried to start debugging it - compiled it
with -g intead of -O2 and ... it worked - so i tried -O
... it crashed - without any optimisation options
it runs fine too - it looks a bit like a compiler
bug or some strange bug in kdm which arises from
the maybe changed optimisation in the current
gcc ... but before i built kde with the gcc
2.95 port (and that was the 3.3 working
version) - thus i'm a bit wondering
what this comes from but did not
have the time for further de-
bugging - any idea ?

t

-- 
[EMAIL PROTECTED]
innominate AG
networking people
fon: +49.30.308806-13 fax: -77 web: http://innominate.de pgp: /pgp/tg


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: ssh_host_key?

2000-02-28 Thread Jeffrey J. Mountin

At 01:30 PM 2/28/00 -0800, Kris Kennaway wrote:
On Mon, 28 Feb 2000, Chris Timmons wrote:

 
 I tried starting sshd via the rc.conf infrastructure after another
 buildworld/installworld this morning and still see the:
 
  sshd[166]: fatal: rsa_private_decrypt() failed
 
 error.  I thought perhaps some of Peter's changes might have helped, but
 it seems to still boil down to the need to start sshd after ldconfig runs
 in /etc/rc.

Yes, Mark (finally :) fixed this. Please resup, mergemaster and try
again.

This works now, but unless the .ssh directory has execute and the
authorized_keys has read for "other" RSA auth fails.

Looking at the code all is going well until auth_rsa() is called.  Guess it
is early on and turning StrictModes off (less code to check) and HUP'ing
resulted in:

RESTART FAILED: av0='sshd', error: No such file or directory.

No change regardless.


Jeff Mountin - [EMAIL PROTECTED]
Systems/Network Administrator
FreeBSD - the power to serve



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: RSA/openssl compile problem

2000-02-28 Thread Jordan K. Hubbard

 OK, I browsed through the source tree to locate something looking 
 like an RSA package and found  /usr/src/crypto/openssl

/usr/src/crypto is just like /usr/src/contrib - you *never* attempt
to build things out of it.  That will fail.

What you need is simply the rsaref package.  I think somebody was
supposed to improve the wording that the stubs emit, the version I
originally committed (but Peter now has sole responsibility for :)
having only place-holder text.  The real text should talk about
installing the rsaref package if you're in the US or the rsaintl
package if you're outside the US.  Of course, the rsaintl package
doesn't quite *exist* yet, but that's another story. :-)

In the meantime, I think you simply want the rsaref package even
though you're not technically forced to use it there in Germany.

- Jordan


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: OpenSSH /etc patch

2000-02-28 Thread Mark Murray

 OK, so now that we've settled this, can we get something into the
 startup files? :)

Coming!

I have patches to complete K5 (and K5-ise ssh). May I bring them in?

I also need to fix up the release area and sysinstall.

M
--
Mark Murray
Join the anti-SPAM movement: http://www.cauce.org


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: RSA/openssl compile problem

2000-02-28 Thread Kris Kennaway

On Mon, 28 Feb 2000, Jordan K. Hubbard wrote:

 What you need is simply the rsaref package.  I think somebody was
 supposed to improve the wording that the stubs emit, the version I
 originally committed (but Peter now has sole responsibility for :)

Yes, this was on my mental list of things to do tonight, but I forgot. I
just added a note on my paper list :-)

 having only place-holder text.  The real text should talk about
 installing the rsaref package if you're in the US or the rsaintl
 package if you're outside the US.  Of course, the rsaintl package
 doesn't quite *exist* yet, but that's another story. :-)

It exists in source form - you just need to build secure/lib/librsaintl
and install it.

 In the meantime, I think you simply want the rsaref package even
 though you're not technically forced to use it there in Germany.

This shouldn't be necessary.

Kris


"How many roads must a man walk down, before you call him a man?"
"Eight!"
"That was a rhetorical question!"
"Oh..then, seven!" -- Homer Simpson



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: RSA/openssl compile problem

2000-02-28 Thread Jordan K. Hubbard

 It exists in source form - you just need to build secure/lib/librsaintl
 and install it.

Perhaps, but according to the conversation I had with Peter, at least,
it also wants to be in the ports collection and build a package
version of itself. :)  Not everyone has source on their box.

- Jordan


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: cpp change breaks ipfw

2000-02-28 Thread David O'Brien

On Sun, Feb 27, 2000 at 12:48:53AM -0500, Jim Bloom wrote:
 but on a new version of current this expands to
 
   add pass tcp from 192.168.2.5 : 255.255.254.0 to any 25 setup
 
 Note the extra spaces around the colon.

This is required by the ANSI-C spec.  Tokens replaced by `cpp' shall be
seperated by white space.

 There are several options here:
 1) Fix cpp to not emit the extra spaces

Would break the ANSI-C spec.

 3) Document the cpp is not a valid preprocessor for ipfw on the manual page.

``cpp'' really isn't a general purpose pre-processor -- it is exclusively
designed with the needs and usage of C in mind.  ``m4'' is a much better
general purpose processor.

That said ``/usr/bin/cpp -traditional'' will do what you want it to do.

-- 
-- David([EMAIL PROTECTED])


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



buildworld fails at ncurses

2000-02-28 Thread Roland Jesse

I cvsupped -current at about 10.30 am (CET). Thats the last lines of
my buildworld log:

cc -o make_hash -O -pipe -I. -I/usr/src/lib/libncurses 
-I/usr/src/lib/libncurses/../../contrib/ncurses/ncurses 
-I/usr/src/lib/libncurses/../../contrib/ncurses/include -Wall -DFREEBSD_NATIVE 
-DNDEBUG -DHAVE_CONFIG_H -DTERMIOS -DMAIN_PROGRAM  
/usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c
In file included from 
/usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:43:
/usr/src/lib/libncurses/../../contrib/ncurses/include/tic.h:107: syntax error before 
`GCC_PRINTFLIKE'
/usr/src/lib/libncurses/../../contrib/ncurses/include/tic.h:252: syntax error before 
`GCC_PRINTFLIKE'
/usr/src/lib/libncurses/../../contrib/ncurses/include/tic.h:253: syntax error before 
`GCC_PRINTFLIKE'
/usr/src/lib/libncurses/../../contrib/ncurses/include/tic.h:254: syntax error before 
`GCC_PRINTFLIKE'
/usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:52: syntax 
error before string constant
/usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:54: warning: 
return-type defaults to `int'
/usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c: In function 
`MODULE_ID':
/usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:54: storage 
class specified for parameter `hash_function'
In file included from 
/usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/doalloc.c:41,
 from 
/usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:69:
/usr/src/lib/libncurses/curses.priv.h:20: storage class specified for parameter 
`sigaction_t'
/usr/src/lib/libncurses/curses.priv.h:48: storage class specified for parameter 
`newscr'
/usr/src/lib/libncurses/curses.priv.h:60: storage class specified for parameter 
`_outch'
/usr/src/lib/libncurses/curses.priv.h:61: storage class specified for parameter 
`init_acs'
/usr/src/lib/libncurses/curses.priv.h:62: storage class specified for parameter `tstp'
/usr/src/lib/libncurses/curses.priv.h:63: storage class specified for parameter 
`makenew'
/usr/src/lib/libncurses/curses.priv.h:64: storage class specified for parameter 
`timed_wait'
/usr/src/lib/libncurses/curses.priv.h:65: storage class specified for parameter 
`_nc_background'
/usr/src/lib/libncurses/curses.priv.h:66: storage class specified for parameter 
`_nc_render'
/usr/src/lib/libncurses/curses.priv.h:67: storage class specified for parameter 
`_nc_keypad'
/usr/src/lib/libncurses/curses.priv.h:68: storage class specified for parameter 
`_nc_scroll_window'
/usr/src/lib/libncurses/curses.priv.h:75: warning: structure defined inside parms
/usr/src/lib/libncurses/curses.priv.h:75: warning: empty declaration
/usr/src/lib/libncurses/curses.priv.h:91: warning: structure defined inside parms
/usr/src/lib/libncurses/curses.priv.h:92: warning: structure defined inside parms
/usr/src/lib/libncurses/curses.priv.h:92: storage class specified for parameter `SLK'
/usr/src/lib/libncurses/curses.priv.h:126: syntax error before `SLK'
/usr/src/lib/libncurses/curses.priv.h:129: warning: structure defined inside parms
/usr/src/lib/libncurses/curses.priv.h:129: warning: empty declaration
/usr/src/lib/libncurses/curses.priv.h:131: storage class specified for parameter `SP'
/usr/src/lib/libncurses/curses.priv.h:133: storage class specified for parameter 
`_slk_format'
In file included from 
/usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:69:
/usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/doalloc.c:46: syntax error 
before `{'
/usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:76: parameter 
`collisions' is initialized
/usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:78: syntax 
error before `for'
/usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:194: parameter 
`col' is initialized
/usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:196: syntax 
error before `if'
/usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:230: parameter 
`hash_table' is initialized
/usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:230: warning: 
implicit declaration of function `typeCalloc'
/usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:230: syntax 
error before `struct'
/usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:231: parameter 
`root_name' is initialized
/usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:232: parameter 
`column' is initialized
/usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:236: storage 
class specified for parameter `typenames'
/usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:236: parameter 
`typenames' is initialized
/usr/src/lib/libncurses/../../contrib/ncurses/ncurses/tinfo/comp_hash.c:236: warning: 
initialization from incompatible pointer type

Re: Machine is 'hanging'.

2000-02-28 Thread Dave J. Boers

It is rumoured that Stefan Schmidt had the courage to say:
 i have got a problem with a router running FreeBSD 3.4-REL:
 Every three days or so it hangs, whiche means that the console is not
 responding any more, open tcp ports don't respond == are timing-out just
 like they're filtered. I guess the machine is just unable to start a
 shell. Oh and well it is appearently able to route as the machines behind
 it are reachable, and it does repond to pings.

Are you by any chance running SMP? I am having very similar problems with
-current (time to die is approx 10 days) on a box which does firewalling
and nat. 

And by the way, I do have DDB in my kernel, but the hang is really hard.
The box just freezes and there's no way to get to the debugger. Even serial
console is dead. 

Regards, 

Dave Boers. 

-- 
  Dave Boers  djb @ relativity . student . utwente . nl 
  Don't let your schooling interfere with your education. (Mark Twain)


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



More ld-elf.so.1: assert failed messages

2000-02-28 Thread Donn Miller

This time it happens with a recent cvs version of wine (about 1 week
old).

$ wine -desktop 780x560 ./iew31.exe 
Could not stat /mnt/fd0, ignoring drive A:
ld-elf.so.1: assert failed: /usr/src/libexec/rtld-elf/lockdflt.c:54
wine: can't exec './iew31.exe': invalid exe file
Terminated

My version of -current is from Feb 24.  Hmmm...  maybe there's still
some problems there?  Wine is the only app I've seen that still does
this.



-- 
- Donn


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: cpp change breaks ipfw

2000-02-28 Thread Kai Großjohann

Jim Bloom [EMAIL PROTECTED] writes:

 On the old version of current this expands to
 
   add pass tcp from 192.168.2.5:255.255.254.0 to any 25 setup
 
 but on a new version of current this expands to
 
   add pass tcp from 192.168.2.5 : 255.255.254.0 to any 25 setup

You might wish to try this:

/
| #define rule(ADDR,MASK) \
| add pass tcp from ADDR ## : ## MASK to any 25 setup
| 
| rule(192.168.2.5,255.255.254.0)
\

Does it do what you want?  Somewhat clumsy, but it does seem to work.

kai
-- 
~/.signature: No such file or directory


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: USB NIC speed?

2000-02-28 Thread Nick Hibma



3.7 Mbit is about 450Kb/s. You should be able to get around 600kb/s in
big transfers.

But the ballpark figure is about right. The problem is the architecture
of the devices that basically incur a 1 ms delay once in a while to read
registers, which is a separate USB transfer which takes = 1ms.

Performance tuning will be done at some stage, but at the moment
stability is more important. The host scheduling errors are still not
handled properly for example.

Nick


On Sat, 26 Feb 2000, Mikko Työläjärvi wrote:

 
 Seeing that -current now supports USB network devices, I got a Linksys
 100TX "dongle".  Question is: what kind of speed is reasonable to
 expect with this thing?
 
 Some unsophisticated tests show that I get around 3.7 Mbit/sec under
 FreeBSD, and about 5.5 Mbit/sec under Windogs98.  This is on a Toshiba
 Portegé 3110CT (has a UHCI controller).  The "fxp" device that comes
 with the machine can transfer over 8Mbit/sec over the same network (a
 fairly idle 10 Mbit segment).
 
 Is this as good as USB networking gets?  Ok, I know that USB won't
 handle more than 12 Mbit, but right now it does not even reach one
 half that).
 
 At least the USB adapter is more comfortable for laptop use than the
 big ugly "docking station" thingie containing the fxp NIC :-)
 
Just curious,
/Mikko
 
  Mikko Työläjä[EMAIL PROTECTED]
  RSA Security
 
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with "unsubscribe freebsd-current" in the body of the message
 

--
[EMAIL PROTECTED]
[EMAIL PROTECTED]  USB project
http://www.etla.net/~n_hibma/



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: cpp change breaks ipfw

2000-02-28 Thread Jim Bloom

No.  It has the same bug.  That method of concatenation only works for strings.

Jim Bloom
[EMAIL PROTECTED]

Kai Großjohann wrote:
 /
 | #define rule(ADDR,MASK) \
 | add pass tcp from ADDR ## : ## MASK to any 25 setup
 |
 | rule(192.168.2.5,255.255.254.0)
 \
 
 Does it do what you want?  Somewhat clumsy, but it does seem to work.


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: cpp change breaks ipfw

2000-02-28 Thread Kai Großjohann

Jim Bloom [EMAIL PROTECTED] writes:

 No.  It has the same bug.  That method of concatenation only works
 for strings.

Well, I tried it and got the following:

/
| $ cat foo
| #define rule(ADDR,MASK) add pass tcp from ADDR ## : ## MASK to any 25 setup
| rule(192.168.2.5,255.255.254.0)
| $ type cpp
| cpp is hashed (/usr/bin/cpp)
| $ cpp foo
| # 1 "foo"
| 
| add pass tcp from  192.168.2.5:255.255.254.0  to any 25 setup 
| $ cpp --version
| 2.95.2
\

Note that there is no space in ``192.168.2.5:255.255.254.0''.  I
thought that this is what you wanted?  If this isn't what you wanted,
I'm sorry for the misunderstanding.

I cvsupped my -current on Friday or Saturday, is that too old?

kai
-- 
~/.signature: No such file or directory


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: cpp change breaks ipfw

2000-02-28 Thread Jim Bloom

Kai Großjohann wrote:
 
 /
 | $ cat foo
 | #define rule(ADDR,MASK) add pass tcp from ADDR ## : ## MASK to any 25 setup
 | rule(192.168.2.5,255.255.254.0)
 | $ type cpp
 | cpp is hashed (/usr/bin/cpp)
 | $ cpp foo
 | # 1 "foo"
 |
 | add pass tcp from  192.168.2.5:255.255.254.0  to any 25 setup
 | $ cpp --version
 | 2.95.2
 \
 
 Note that there is no space in ``192.168.2.5:255.255.254.0''.  I
 thought that this is what you wanted?  If this isn't what you wanted,
 I'm sorry for the misunderstanding.

That small test works fine, but doesn't solve the problem I was having.  Try
this small test case to see my problem:

#define addr 192.186.2.5
#define mask 255.255.240.0

#define rule(ADDR,MASK) add pass tcp from ADDR ## : ## MASK to any 25 setup
rule(addr,mask)

This also does not work if addr and mask are defined on the command line.  The
problem arises from using another defined value as the string being
concatenated.  The concatenation works for constants though.

Jim Bloom
[EMAIL PROTECTED]


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



ntpd hanging machine

2000-02-28 Thread Matthew Frost

I'm experiencing some problems with ntpd.  It would appear that a few
(10-15) minutes after I start it, the machine crashes completely...

Feb 28 14:10:02 egrorian ntpd[153]: ntpd 4.0.99b Mon Feb 28 12:12:17 GMT 2000 (1)
Feb 28 14:10:02 egrorian ntpd[153]: using kernel phase-lock loop 2040
Feb 28 14:10:02 egrorian ntpd[153]: using kernel phase-lock loop 2041

And then locked solid..

It's -CURRENT as of this morning (28/2/2000) but it's happened before
now...  Here's the syslogged dmesg (I'll be able to provide any other
information anyone wants once I can physically get to the machine to
reset it later)

I'll note it's a Soyo motherboard SY5SSM.  Any help appreciated.

Feb 28 14:09:35 egrorian /kernel: Copyright (c) 1992-2000 The FreeBSD Project.
Feb 28 14:09:35 egrorian /kernel: Copyright (c) 1982, 1986, 1989, 1991, 1993
Feb 28 14:09:35 egrorian /kernel: The Regents of the University of California. All 
rights reserved.
Feb 28 14:09:35 egrorian /kernel: FreeBSD 4.0-CURRENT #0: Mon Feb 28 13:40:01 GMT 2000
Feb 28 14:09:35 egrorian /kernel: [EMAIL PROTECTED]:/usr/src/sys/compile/NEWBOX
Feb 28 14:09:35 egrorian /kernel: Timecounter "i8254"  frequency 1193182 Hz
Feb 28 14:09:35 egrorian /kernel: CPU: AMD-K6(tm) 3D processor (400.91-MHz 586-class 
CPU)
Feb 28 14:09:35 egrorian /kernel: Origin = "AuthenticAMD"  Id = 0x58c  Stepping = 12
Feb 28 14:09:35 egrorian /kernel: 
Features=0x8021bfFPU,VME,DE,PSE,TSC,MSR,MCE,CX8,PGE,MMX
Feb 28 14:09:35 egrorian /kernel: AMD Features=0x8800SYSCALL,3DNow!
Feb 28 14:09:35 egrorian /kernel: real memory  = 65011712 (63488K bytes)
Feb 28 14:09:35 egrorian /kernel: avail memory = 60018688 (58612K bytes)
Feb 28 14:09:35 egrorian /kernel: Preloaded elf kernel "kernel" at 0xc02bd000.
Feb 28 14:09:35 egrorian /kernel: Preloaded userconfig_script "/boot/kernel.conf" at 
0xc02bd09c.
Feb 28 14:09:35 egrorian /kernel: md0: Malloc disk
Feb 28 14:09:35 egrorian /kernel: npx0: math processor on motherboard
Feb 28 14:09:35 egrorian /kernel: npx0: INT 16 interface
Feb 28 14:09:35 egrorian /kernel: pcib0: Host to PCI bridge on motherboard
Feb 28 14:09:35 egrorian /kernel: pci0: PCI bus on pcib0
Feb 28 14:09:35 egrorian /kernel: atapci0: SiS 5591 ATA33 controller port 
0x4000-0x400f,0x374-0x377,0x170-0x177,0x3f4-0x3f7,0x1f0-0x1f7 irq 14 at device 0.1 on 
pci0
Feb 28 14:09:35 egrorian /kernel: ata0: at 0x1f0 irq 14 on atapci0
Feb 28 14:09:35 egrorian /kernel: isab0: SiS 85c503 PCI-ISA bridge at device 1.0 on 
pci0
Feb 28 14:09:35 egrorian /kernel: isa0: ISA bus on isab0
Feb 28 14:09:35 egrorian /kernel: pci0: unknown card (vendor=0x1039, dev=0x0009) at 
1.1
Feb 28 14:09:35 egrorian /kernel: ohci0: OHCI (generic) USB controller mem 
0xdc90-0xdc900fff irq 12 at device 1.2 on pci0
Feb 28 14:09:35 egrorian /kernel: usb0: OHCI version 1.0, legacy support
Feb 28 14:09:35 egrorian /kernel: usb0: SMM does not respond, resetting
Feb 28 14:09:35 egrorian /kernel: usb0: OHCI (generic) USB controller on ohci0
Feb 28 14:09:35 egrorian /kernel: usb0: USB revision 1.0
Feb 28 14:09:35 egrorian /kernel: uhub0: (unknown) OHCI root hub, class 9/0, rev 
1.00/1.00, addr 1
Feb 28 14:09:35 egrorian /kernel: uhub0: 2 ports with 2 removable, self powered
Feb 28 14:09:35 egrorian /kernel: pcib2: PCI to PCI bridge (vendor=1039 device=0001) 
at device 2.0 on pci0
Feb 28 14:09:35 egrorian /kernel: pci1: PCI bus on pcib2
Feb 28 14:09:35 egrorian /kernel: pci1: SiS 530/620 SVGA controller at 0.0 irq 11
Feb 28 14:09:35 egrorian /kernel: ed0: NE2000 PCI Ethernet (RealTek 8029) port 
0xd000-0xd01f irq 10 at device 12.0 on pci0
Feb 28 14:09:35 egrorian /kernel: ed0: address 00:c0:f0:45:07:03, type NE2000 (16 bit) 
Feb 28 14:09:35 egrorian /kernel: pci0: unknown card (vendor=0x125d, dev=0x1969) at 
13.0 irq 10
Feb 28 14:09:35 egrorian /kernel: pcib1: SiS 5591 host to AGP bridge on motherboard
Feb 28 14:09:35 egrorian /kernel: pci2: PCI bus on pcib1
Feb 28 14:09:35 egrorian /kernel: fdc0: NEC 72065B or clone at port 
0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0
Feb 28 14:09:35 egrorian /kernel: fdc0: FIFO enabled, 8 bytes threshold
Feb 28 14:09:35 egrorian /kernel: fd0: 1440-KB 3.5" drive on fdc0 drive 0
Feb 28 14:09:35 egrorian /kernel: atkbdc0: keyboard controller (i8042) at port 
0x60-0x6f on isa0
Feb 28 14:09:35 egrorian /kernel: atkbd0: AT Keyboard irq 1 on atkbdc0
Feb 28 14:09:35 egrorian /kernel: vga0: Generic ISA VGA at port 0x3c0-0x3df iomem 
0xa-0xb on isa0
Feb 28 14:09:35 egrorian /kernel: sc0: System console on isa0
Feb 28 14:09:35 egrorian /kernel: sc0: VGA 16 virtual consoles, flags=0x200
Feb 28 14:09:35 egrorian /kernel: sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0
Feb 28 14:09:35 egrorian /kernel: sio0: type 16550A
Feb 28 14:09:35 egrorian /kernel: sio1 at port 0x2f8-0x2ff irq 3 on isa0
Feb 28 14:09:35 egrorian /kernel: sio1: type 16550A
Feb 28 14:09:35 egrorian /kernel: ppc0: Parallel port at port 0x378-0x37f irq 7 
flags 0x40 on isa0
Feb 28 14:09:35 egrorian /kernel: ppc0: SMC-like chipset 

Re: Streamlining FreeBSD installations across many machines

2000-02-28 Thread Pete Mckenna

Nik Clayton wrote:
 
 On Fri, Feb 25, 2000 at 10:23:37AM -0500, Forrest Aldrich wrote:
  I'm wondering if there might not be a way to streamline this install
  process, such that a boot floopy and script could be created to take a
  minimum amount of information, and then "do the right thing" as for the
  install.   Things like putting in the packet filters, the kernel, IP
  config, etc.
 
 See sysinstall(8);  you can script sysinstall.  See
 
 src/release/sysinstall/install.cfg

I built a pico floppy under 3.2 that uses sysinstall to do most of this. 
a search of my name in the pico mailing list should turn it up.

Pete 


-- 
Peter McKenna  U S WEST !NTERPRISE
[EMAIL PROTECTED] http://www.interprise.com/
 Main 612-664-4000
  FAX 612-664-4770


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: RSA/openssl compile problem

2000-02-28 Thread Peter Wemm

"Jordan K. Hubbard" wrote:
  OK, I browsed through the source tree to locate something looking 
  like an RSA package and found  /usr/src/crypto/openssl
 
 /usr/src/crypto is just like /usr/src/contrib - you *never* attempt
 to build things out of it.  That will fail.
 
 What you need is simply the rsaref package.  I think somebody was
 supposed to improve the wording that the stubs emit, the version I
 originally committed (but Peter now has sole responsibility for :)
 having only place-holder text.  The real text should talk about
 installing the rsaref package if you're in the US or the rsaintl
 package if you're outside the US.  Of course, the rsaintl package
 doesn't quite *exist* yet, but that's another story. :-)

librsaintl existed right from the start of the rsa (not rsaref) dlopen()
functionality, see src/secure/lib/librsaintl.

Cheers,
-Peter



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Installation floppies and USB

2000-02-28 Thread John Reynolds~


[forwarded from -questions to the above groups because this seems to be a
legit "problem" and I wanted the "right eyes" in -current to see it. ]

--- start of forwarded message ---
From: "John Daniels" [EMAIL PROTECTED]
Subject: Installation floppies and USB
Date: Sun, 27 Feb 2000 21:19:50 EST

I have a system with only a *USB* keyboard port (no PS/2 or AT-style ports). 
  When I boot the installation floppies I get the message:
  keyboard:no
After reading errata,release notes, etc., I learned that I should hit
'enter' and type '-Dh' at the prompt, which I did.  Now the installation 
proceeds until the kernel is booted and the kernel configuration menu is 
displayed (with 3 options: skip config, full-screen, CLI-mode).  At that 
point my keyboard becomes unusable.  I believe that this may be because the 
kernel ('GENERIC'?) doesn't include USB support.  USB support is supposed to 
be compiled in *after* an install.

For my system, this is unacceptable.  I now have a catch-22: I can't get USB 
support until the kernel is recompiled, and I can't recompile the kernel 
unless I can use the keyboard to install FreeBSD.

My system was created by a major PC Manufacturer (Acer) and I'm sure that 
they have sold thousands like it.  I'm sure that they are not/will not be 
the only manufacturer to create USB-only systems.  My system uses Human 
Interface Devices (HID) USB.  It is *CRUCIAL* that USB keyboards be 
recognized "out-of-the-box" for current and future systems that only support
USB keyboards.

QUESTION: Are there work currently andy arounds/solutions in FreeBSD?  When 
can USB be available "out-of-the-box?" (I was hoping it would be in 4.0) 
Lastly, the NetBSD install floppy recognizes my keyboard and lets me use it 
during the install.  Is there any possible workaround that includes booting 
the NetBSD install disk, or installing FreeBSD over/after NetBSD?

NOTE: There has already been at least one other FreeBSD newbie who has 
encountered this problem (also with an Acer box), and there seems to be a 
fair amount of USB questions/discussion online.

Any info/help is greatly appreciated

John
[EMAIL PROTECTED]

__
Get Your Private, Free Email at http://www.hotmail.com



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message

--- end of forwarded message ---

-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
| John Reynolds   WCCG, CCE, Higher Levels of Abstraction   |
| Intel Corporation   MS: CH6-210   Phone: 480-554-9092   pgr: 602-868-6512 |
| [EMAIL PROTECTED]  http://www-aec.ch.intel.com/~jreynold/  |
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: Installation floppies and USB

2000-02-28 Thread MAEKAWA Masahide

John Reynolds~ [EMAIL PROTECTED] wrote:
[forwarded from -questions to the above groups because this seems to be a
legit "problem" and I wanted the "right eyes" in -current to see it. ]

I have a system with only a *USB* keyboard port (no PS/2 or AT-style ports). 
  When I boot the installation floppies I get the message:

My machine has "USB keyboard support" in BIOS menu.
If your BIOS is AWARD's one, check your bios.
Maybe it's in Chipset Features Setup section.
BIOS uses USB keyboards as legacy.

--- MAEKAWA Masahide [EMAIL PROTECTED]
--- URL: http://kerberos.math.sci.kobe-u.ac.jp/~maekawa/
--- Kobe University (Faculty of Science, Department of Mathematics)
--- Powered by BSD/OS, FreeBSD, NetBSD, OpenBSD


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: Machine is 'hanging'.

2000-02-28 Thread Stefan Schmidt

On Mon, 28 Feb 2000, Dave J. Boers wrote:

 It is rumoured that Stefan Schmidt had the courage to say:
  i have got a problem with a router running FreeBSD 3.4-REL:
  Every three days or so it hangs, whiche means that the console is not
  responding any more, open tcp ports don't respond == are timing-out just
  like they're filtered. I guess the machine is just unable to start a
  shell. Oh and well it is appearently able to route as the machines behind
  it are reachable, and it does repond to pings.
 Are you by any chance running SMP? I am having very similar problems with
 -current (time to die is approx 10 days) on a box which does firewalling
 and nat. 
erm, no not really , it is a 486 dunno how fast actually but somewhere
over 100Mhz with PCI-Bus, two NICs on the PCI and one 10mbit card on the
ISA-Bus for outgoing traffic. It does some firewalling, stealth-forwarding
and softupdates.

 And by the way, I do have DDB in my kernel, but the hang is really hard.
 The box just freezes and there's no way to get to the debugger. Even serial
 console is dead. 
dito, i mean i didn't compile DDB into the kernel but all consoles are
dead.


Stefan Schmidt



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



No Subject

2000-02-28 Thread Carl Moberg

subscribe


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



kld problems.

2000-02-28 Thread David Gilbert

After stealing the /sys/netgraph/tee makefile (because I'm making a
netgraph node), I tried compiling it --- and that appeared to go
fine... however, when I tried to load it, I got:

[1:19:319]root@test:/u1/dgilbert kldload ./ng_l2tp.ko
kldload: can't load ./ng_l2tp.ko: Exec format error
Feb 28 05:59:51 test /kernel: link_elf: symbol _DefaultRuneLocale undefined
[1:20:320]root@test:/u1/dgilbert 

What am I doing wrong?

Dave.

-- 

|David Gilbert, Velocet Communications.   | Two things can only be |
|Mail:   [EMAIL PROTECTED] |  equal if and only if they |
|http://www.velocet.net/~dgilbert |   are precisely opposite.  |
=GLO


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



CardBus in current??

2000-02-28 Thread William Woods

I am running FreeBSD 4.0 -current on my IBM Thinkpad 600E, last nights cvsup and
make world and I herd a rumor that cardbus was supported? Is this true? I have
a adaptec SlimSCSI 1480A that I would love to get workingis there any hope?

If so, how would I get the system to see the external CDR that I have

--
E-Mail: William Woods [EMAIL PROTECTED]
Date: 28-Feb-00
Time: 08:19:23

This message was sent by XFMail
--


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: RSA/openssl compile problem

2000-02-28 Thread Christoph Kukulies

On Mon, Feb 28, 2000 at 11:47:22PM +0800, Peter Wemm wrote:
 "Jordan K. Hubbard" wrote:
   OK, I browsed through the source tree to locate something looking 
   like an RSA package and found  /usr/src/crypto/openssl
  
  /usr/src/crypto is just like /usr/src/contrib - you *never* attempt
  to build things out of it.  That will fail.

OK, I cvsup'ed from ftp.internat.freebsd.org cvs-crypto
Just for the record, FWIW:

# make -i
=== lib
=== lib/libcipher
=== lib/libtelnet
=== lib/libcrypto
=== lib/librsaglue
=== lib/libssl
=== lib/librsausa
Warning: Object directory not changed from original /usr/src/secure/lib/librsausa
=== lib/librsaintl
Warning: Object directory not changed from original /usr/src/secure/lib/librsaintl
=== lib/libssh
=== libexec
=== libexec/telnetd
=== usr.bin
=== usr.bin/bdes
=== usr.bin/telnet
=== usr.bin/openssl
cc -O -pipe -DMONOLITH -DNO_IDEA -I/usr/src/secure/usr.bin/openssl-o openssl 
apps.o asn1pars.o ca.o ciphers.o crl.o crl2p7.o dgst.o dh.o dsa.o dsaparam.o enc.o 
errstr.o gendh.o gendsa.o genrsa.o nseq.o openssl.o pkcs12.o pkcs7.o pkcs8.o req.o 
rsa.o s_cb.o s_client.o s_server.o s_socket.o s_time.o sess_id.o speed.o verify.o 
version.o x509.o  -lssl -lcrypto
speed.o: In function `speed_main':
speed.o(.text+0x5f7): undefined reference to `RSA_PKCS1'
*** Error code 1 (ignored)
=== usr.bin/scp
=== usr.bin/ssh
=== usr.bin/ssh-add
=== usr.bin/ssh-agent
=== usr.bin/ssh-keygen
=== usr.sbin
=== usr.sbin/sshd

Anyway, make -i install got around this and /usr/bin/ssh now works:

# ldd /usr/bin/ssh
/usr/bin/ssh:
libcrypto.so.1 = /usr/lib/libcrypto.so.1 (0x2807c000)
libutil.so.3 = /usr/lib/libutil.so.3 (0x28118000)
libz.so.2 = /usr/lib/libz.so.2 (0x28122000)
libc.so.4 = /usr/lib/libc.so.4 (0x2812f000)

  
  What you need is simply the rsaref package.  I think somebody was
  supposed to improve the wording that the stubs emit, the version I
  originally committed (but Peter now has sole responsibility for :)
  having only place-holder text.  The real text should talk about
  installing the rsaref package if you're in the US or the rsaintl
  package if you're outside the US.  Of course, the rsaintl package
  doesn't quite *exist* yet, but that's another story. :-)
 
 librsaintl existed right from the start of the rsa (not rsaref) dlopen()
 functionality, see src/secure/lib/librsaintl.
 
 Cheers,
 -Peter

-- 
Chris Christoph P. U. Kukulies [EMAIL PROTECTED]


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



panics and hangs under 4.0-current

2000-02-28 Thread Brian Beattie

I have gotten several panics while doing a "make release".  I have not
been able to get a dump, (not configure correctly or the kernel was too
scrod).  I have put two console logs up on my web server:
http:/www.aracnet.com/~beattie/FreeBSD

If anybody cares to look,  The last panic appears to really leave things
is a bad state, the console log is below.  I'll try to do a build world
tonoight.

Copyright (c) 1992-2000 The FreeBSD Project.
Copyright (c) 1982, 1986, 1989, 1991, 1993
The Regents of the University of California. All rights reserved.
FreeBSD 4.0-CURRENT #14: Thu Feb 24 02:05:29 PST 2000
[EMAIL PROTECTED]:/usr/src/sys/compile/RAVEN
Timecounter "i8254"  frequency 1193182 Hz
CPU: AMD-K6(tm) 3D processor (332.90-MHz 586-class CPU)
  Origin = "AuthenticAMD"  Id = 0x58c  Stepping = 12
  Features=0x8021bfFPU,VME,DE,PSE,TSC,MSR,MCE,CX8,PGE,MMX
  AMD Features=0x8800SYSCALL,3DNow!
real memory  = 83886080 (81920K bytes)
avail memory = 77217792 (75408K bytes)
Preloaded elf kernel "kernel" at 0xc03d8000.
md0: Malloc disk
npx0: math processor on motherboard
npx0: INT 16 interface
pcib0: Host to PCI bridge on motherboard
pci0: PCI bus on pcib0
isab0: VIA 82C586 PCI-ISA bridge at device 7.0 on pci0
isa0: ISA bus on isab0
atapci0: VIA 82C586 ATA33 controller port 0xd000-0xd00f at device 7.1 on
pci0
ata0: at 0x1f0 irq 14 on atapci0
adw0: AdvanSys 3550 Ultra SCSI Adapter port 0xd800-0xd83f mem
0xe6002000-0xe60020ff irq 11 at device 8.0 on pci0
adw0: SCSI ID 7, High  Low SE Term Enabled, Queue Depth 253
pci0: Matrox MGA 1024SG/1064SG/1164SG graphics accelerator at 9.0 irq 12
rl0: RealTek 8139 10/100BaseTX port 0xdc00-0xdcff mem
0xe600-0xe6ff irq 12 at device 10.0 on pci0
rl0: Ethernet address: 00:50:ba:d3:90:39
miibus0: MII bus on rl0
rlphy0: RealTek internal media interface on miibus0
rlphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
adv0: AdvanSys ASC3030/50 SCSI controller port 0xe000-0xe0ff mem
0xe6001000-0xe60010ff irq 12 at device 11.0 on pci0
adv0: AdvanSys Ultra SCSI Host Adapter, SCSI ID 7, queue depth 16
adv0: driver is using old-style compatability shims
pcib1: Host to PCI bridge on motherboard
pci1: PCI bus on pcib1
fdc0: NEC 72065B or clone at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0
fdc0: FIFO enabled, 8 bytes threshold
fd0: 1440-KB 3.5" drive on fdc0 drive 0
atkbdc0: keyboard controller (i8042) at port 0x60-0x6f on isa0
atkbd0: AT Keyboard irq 1 on atkbdc0
vga0: Generic ISA VGA at port 0x3c0-0x3df iomem 0xa-0xb on isa0
sc0: System console on isa0
sc0: VGA 16 virtual consoles, flags=0x0
sio0 at port 0x3f8-0x3ff irq 4 on isa0
sio0: type 16550A
sio1 at port 0x2f8-0x2ff irq 3 on isa0
sio1: type 16550A
sio2 at port 0x3e8-0x3ef irq 9 on isa0
sio2: type 16550A
sio3 at port 0x2e8-0x2ef irq 10 flags 0x10 on isa0
sio3: type 16550A, console
ppc0: Parallel port at port 0x378-0x37f irq 7 on isa0
ppc0: Generic chipset (EPP/NIBBLE) in COMPATIBLE mode
ppbus0: IEEE1284 device found /NIBBLE/ECP
Probing for PnP devices on ppbus0:
ppbus0: HEWLETT-PACKARD DESKJET 670C MLC,PCL,PML
ppi0: Parallel I/O on ppbus0
lpt0: Printer on ppbus0
lpt0: Interrupt-driven port
plip0: PLIP network interface on ppbus0
isa_compat: didn't get irq for lnc
unknown0: AUX0 on isa0
pcm0: OPTi931 at port 0x534-0x537,0x380-0x38b,0x220-0x22f,0xe0c-0xe0f
irq 5 drq 0,1 on isa0
AD_WAIT_INIT FAILED 1002 0xff
unknown1: Game Port at port 0x200 on isa0
unknown: MPU401 can't assign resources
acd0: CDROM CD-ROM DRIVE/F5A at ata0-master using PIO4
Waiting 15 seconds for SCSI devices to settle
pass4 at adv0 bus 0 target 4 lun 0
pass4:  Scanner 300A4 4.11 Fixed Scanner SCSI-2 device 
pass4: 3.300MB/s transfers

...

Doing initial network setup: hostname.
lo0: flags=8049UP,LOOPBACK,RUNNING,MULTICAST mtu 16384
inet 127.0.0.1 netmask 0xff00 
rl0: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST mtu 1500
inet 192.168.0.1 netmask 0xff00 broadcast 192.168.0.255
ether 00:50:ba:d3:90:39 
media: autoselect (none) status: active
supported media: autoselect 100baseTX full-duplex 100baseTX
10baseT/UTP full-duplex 10baseT/UTP 100baseTX hw-loopback
Starting ppp: 
IP packet filtering initialized, divert disabled, rule-based forwarding
disabled, default to deny, logging disabled
Kernel firewall module loaded.
Flushed all rules.
00100 allow ip from any to any via lo0
00200 deny ip from any to 127.0.0.0/8
65000 allow ip from any to any
Firewall rules loaded, starting divert daemons:.
Additional routing options: IP gateway=YES TCP keepalive=YES.
routing daemons:.
Mounting NFS file systems.
additional daemons: syslogd.
checking for core dump...savecore: /dev/rda0s1a: Device busy
Feb 27 23:40:48 raven savecore: /dev/rda0s1a: Device busy
Doing additional network setup: named ntpdate portmap.
Starting final network daemons: mountd nfsd rpc.statd.
setting ELF ldconfig path: /usr/lib /usr/lib/compat /usr/X11R6/lib
/usr/local/lib
setting a.out ldconfig path: /usr/lib/aout /usr/lib/compat/aout

RE: Problem with IBM Netfinity 5000 Server

2000-02-28 Thread Alejandro Ramirez

Hi,

  I have had problems with the 1st PCI slot in the IBM Netfinity 5000, it
  reboots my system constantly, I dont know why, but now Im not using this
  slot any more, and everything runs great.

 Could you tell me BIOS version and BIOS setting of your server ?
 Should I turn pnp,usb ... etc off?

Sorry about this missinformation, I have looked at the back of my server
cover and I have notice that the slot I was talking about it was the 5th
one, not the 1st one, it is the one that its nearest from the memory slots
the one that caused me the reboots in my system.

BTW I have not turned off PnP, and all my BIOS settings are the default one,
sorry I can give you the version of my BIOS right now, because I cant reboot
this server, but I will have to do it soon, and I will let you know this.

Greetings
Ales




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: RSA/openssl compile problem

2000-02-28 Thread Peter Wemm

Christoph Kukulies wrote:
 On Mon, Feb 28, 2000 at 11:47:22PM +0800, Peter Wemm wrote:
  "Jordan K. Hubbard" wrote:
OK, I browsed through the source tree to locate something looking 
like an RSA package and found  /usr/src/crypto/openssl
   
   /usr/src/crypto is just like /usr/src/contrib - you *never* attempt
   to build things out of it.  That will fail.
 
 OK, I cvsup'ed from ftp.internat.freebsd.org cvs-crypto
 Just for the record, FWIW:
 
 # make -i
 === lib
 === lib/libcipher
 === lib/libtelnet
 === lib/libcrypto
 === lib/librsaglue
 === lib/libssl
 === lib/librsausa
 Warning: Object directory not changed from original /usr/src/secure/lib/librs
ausa
 === lib/librsaintl
 Warning: Object directory not changed from original /usr/src/secure/lib/librs
aintl
 === lib/libssh
 === libexec
 === libexec/telnetd
 === usr.bin
 === usr.bin/bdes
 === usr.bin/telnet
 === usr.bin/openssl
 cc -O -pipe -DMONOLITH -DNO_IDEA -I/usr/src/secure/usr.bin/openssl-o open
ssl apps.o asn1pars.o ca.o ciphers.o crl.o crl2p7.o dgst.o dh.o dsa.o dsapa
ram.o enc.o errstr.o gendh.o gendsa.o genrsa.o nseq.o openssl.o pkcs12.o pk
cs7.o pkcs8.o req.o rsa.o s_cb.o s_client.o s_server.o s_socket.o s_time.o 
sess_id.o speed.o verify.o version.o x509.o  -lssl -lcrypto
 speed.o: In function `speed_main':
 speed.o(.text+0x5f7): undefined reference to `RSA_PKCS1'
 *** Error code 1 (ignored)
 === usr.bin/scp
 === usr.bin/ssh
 === usr.bin/ssh-add
 === usr.bin/ssh-agent
 === usr.bin/ssh-keygen
 === usr.sbin
 === usr.sbin/sshd

That's because you are trying to link openssl against the *old*
/usr/lib/libcrypto.  

In all cases, you need to build/install libraries and includes before trying
to compile and link against them.  The dependency rules of what depends on
what can be quite complex.  'buildworld' does this.

Cheers,
-Peter



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



international RSA code

2000-02-28 Thread Peter Wemm

I've added a port, ports/security/librsaintl, that should build and install
the librsaINTL.* files in /usr/lib, in case you did a binary install or
are stuck with the USA source.

The port is quite a hack, but I'd be interested to know how it works for folks.
Note that there have been several versions, so make sure you've got the current
version before trying to use it. :-)

This builds the optimized RSA code designed for use by the ssl code.  It
also is used by openssh.  RSAREF requires big number format conversion, this
code does not.  RSAREF is also limited to 1024 bit keys, this code has no
such limitation.

Cheers,
-Peter




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



ssh_host_key?

2000-02-28 Thread Nawfal M. Rouyan

Hi,
Sorry for asking a stupid question. 
I've successfully upgraded my system to current on
29th of February. I want to start sshd so I insert the

sshd_enable="YES" in the /etc/rc.conf but the server
won't start because its searching for the ssh_host_key
file. How do I generate that file?
I also compiled the apache with modssl but the server
won't start with this error:
/usr/libexec/ld-elf.so.1: /usr/lib/librsaUSA.so:
Undefined symbol "ERR_load_strings"
Why is this happening?

__
Do You Yahoo!?
Talk to your friends online with Yahoo! Messenger.
http://im.yahoo.com


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: RSA/openssl compile problem

2000-02-28 Thread Jordan K. Hubbard

  installing the rsaref package if you're in the US or the rsaintl
  package if you're outside the US.  Of course, the rsaintl package
^^^   ^^^
  doesn't quite *exist* yet, but that's another story. :-)
 
 librsaintl existed right from the start of the rsa (not rsaref) dlopen()
 functionality, see src/secure/lib/librsaintl.

Package, peter.  Package package package.. :)

- Jordan


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: cpp change breaks ipfw

2000-02-28 Thread Tony Finch

Jim Bloom [EMAIL PROTECTED] wrote:

That small test works fine, but doesn't solve the problem I was having.  Try
this small test case to see my problem:

#define addr 192.186.2.5
#define mask 255.255.240.0

#define rule(ADDR,MASK) add pass tcp from ADDR ## : ## MASK to any 25 setup
rule(addr,mask)

This also does not work if addr and mask are defined on the command line.  The
problem arises from using another defined value as the string being
concatenated.  The concatenation works for constants though.

You need to use a two-macro trick similar to the one for stringizing
in KR2:

$ gcc -E -
#define addr 1.2.3.4
#define mask 5.6.7.8
#define cat_helper(a,b) a ## : ## b
#define cat(a,b) cat_helper(a,b)
cat(addr,mask)
# 1 ""




  1.2.3.4:5.6.7.8 
$

Tony.
-- 
f.a.n.finch[EMAIL PROTECTED][EMAIL PROTECTED]
455 wetness and warmth for wussies


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: CardBus in current??

2000-02-28 Thread Will Andrews

On Mon, Feb 28, 2000 at 08:23:11AM -0800, William Woods wrote:
 I am running FreeBSD 4.0 -current on my IBM Thinkpad 600E, last nights cvsup and
 make world and I herd a rumor that cardbus was supported? Is this true? I have
 a adaptec SlimSCSI 1480A that I would love to get workingis there any hope?

No, CardBus isn't yet supported. The rumor you're hearing is probably
sprung off the fact that CardBus-PCI bridges do work, at least in PCMCIA
compatability mode.

CardBus will probably not be supported to any high extent until FreeBSD
4.2. There will probably be some support in 4.1, though. And that's just a
guess - it all depends on the amount of time people spend on these things.

-- 
Will Andrews [EMAIL PROTECTED]
GCS/E/S @d- s+:++:- a---+++ C++ UB P+ L- E--- W+++ !N !o ?K w---
?O M+ V-- PS+ PE++ Y+ PGP t++ 5 X++ R+ tv+ b++ DI+++ D+ 
G+ e- h! r--+++ y?


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: Installation floppies and USB

2000-02-28 Thread Nick Hibma


Seeing that your USB controller fails to work properly when the FreeBSD
kernel takes over, I bet somewhere there is a problem with shared
interrupts.

Because a USB keyboard here works either with USB support or without USB
support compiled in.

The only solution for you would be to compile a new kernel on a
different system that includes USB support, or use a module that you
load before the kernel is booted.

And yes, USB only machines will be supported at some stage. But at the
moment the USB kernel is too flakey to be in GENERIC.

Nick

On Mon, 28 Feb 2000, John Reynolds~ wrote:

 
 [forwarded from -questions to the above groups because this seems to be a
 legit "problem" and I wanted the "right eyes" in -current to see it. ]
 
 --- start of forwarded message ---
 From: "John Daniels" [EMAIL PROTECTED]
 Subject: Installation floppies and USB
 Date: Sun, 27 Feb 2000 21:19:50 EST
 
 I have a system with only a *USB* keyboard port (no PS/2 or AT-style ports). 
   When I boot the installation floppies I get the message:
   keyboard:no
 After reading errata,release notes, etc., I learned that I should hit
 'enter' and type '-Dh' at the prompt, which I did.  Now the installation 
 proceeds until the kernel is booted and the kernel configuration menu is 
 displayed (with 3 options: skip config, full-screen, CLI-mode).  At that 
 point my keyboard becomes unusable.  I believe that this may be because the 
 kernel ('GENERIC'?) doesn't include USB support.  USB support is supposed to 
 be compiled in *after* an install.
 
 For my system, this is unacceptable.  I now have a catch-22: I can't get USB 
 support until the kernel is recompiled, and I can't recompile the kernel 
 unless I can use the keyboard to install FreeBSD.
 
 My system was created by a major PC Manufacturer (Acer) and I'm sure that 
 they have sold thousands like it.  I'm sure that they are not/will not be 
 the only manufacturer to create USB-only systems.  My system uses Human 
 Interface Devices (HID) USB.  It is *CRUCIAL* that USB keyboards be 
 recognized "out-of-the-box" for current and future systems that only support
 USB keyboards.
 
 QUESTION: Are there work currently andy arounds/solutions in FreeBSD?  When 
 can USB be available "out-of-the-box?" (I was hoping it would be in 4.0) 
 Lastly, the NetBSD install floppy recognizes my keyboard and lets me use it 
 during the install.  Is there any possible workaround that includes booting 
 the NetBSD install disk, or installing FreeBSD over/after NetBSD?
 
 NOTE: There has already been at least one other FreeBSD newbie who has 
 encountered this problem (also with an Acer box), and there seems to be a 
 fair amount of USB questions/discussion online.
 
 Any info/help is greatly appreciated
 
 John
 [EMAIL PROTECTED]
 
 __
 Get Your Private, Free Email at http://www.hotmail.com
 
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with "unsubscribe freebsd-questions" in the body of the message
 
 --- end of forwarded message ---
 
 -- 
 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 | John Reynolds   WCCG, CCE, Higher Levels of Abstraction   |
 | Intel Corporation   MS: CH6-210   Phone: 480-554-9092   pgr: 602-868-6512 |
 | [EMAIL PROTECTED]  http://www-aec.ch.intel.com/~jreynold/  |
 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 
 
 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with "unsubscribe freebsd-current" in the body of the message
 

--
[EMAIL PROTECTED]
[EMAIL PROTECTED]  USB project
http://www.etla.net/~n_hibma/



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



-current NO_OPENSSH NO_OPENSSL buildworld fails in src/usr.sbin/ppp/chap_ms.c

2000-02-28 Thread Garrett Wollman

On Sun, 27 Feb 2000 15:43:52 -0800, Doug Barton [EMAIL PROTECTED] said:

   I'm not ready to play with the openssl/ssh stuff yet, but I wanted to
 test Soren's latest ATA stuff so I cvsup'ed and started a buildworld
 with the following make.conf options:

 My buildworld failed here in the 'make dependencies' stage:

That's because lots of things were broken in the NO_OPENSSL case by
combining the DES libraries with OpenSSL's libcrypto.  (I had been
hoping to avoid the entire OpenSSL PITA this way, but now my whole
universe is broken and I'm not going to be able to do a `make world'
until I figure out a fix.)

-GAWollman

--
Garrett A. Wollman   | O Siem / We are all family / O Siem / We're all the same
[EMAIL PROTECTED]  | O Siem / The fires of freedom 
Opinions not those of| Dance in the burning flame
MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



post install problems, ssh, vinum, install

2000-02-28 Thread Jeffrey J. Mountin

Have a few issues...
(pardon the laundry list :)

Background:

Fresh install of RC2 (4.0-2214-CURRENT).
Fresh meaning remove slices, create, yada...

After install, tweak some minor things while building an SMP kernel,
install pdksh and less from ports, and install CVSup.

Update source, check commit mail, update once more, wait a few hours, check
mail.  Nothing new or reported broken.  Good.

That was Sunday around 5am CST.

Build, install, new kernel, remake devices.

Good so far.  Not quite lunch now.

Reboot and neither ad1 or ad0 are seen.

Used the exact same kernel config file.  WTF?

A salute of the 3 finger style, interrupt boot, unload kernel, load
kernel.old, boot and all is well.

Same thing happened with Friday sources in the same scenario, but realized
the MAKEDEV part was forgotten.

The problem is that the newer kernels do not like my loader.conf file
entries and the only thing different is that I turned off a couple things:

autoboot_delay="5"
bootfile="/kernel,/kernel.old,/kernel.GENERIC"
cd9660_load="NO"
mfs_load="YES"
nfs_load="NO"
vinum_load="NO"

Except for vinum none of the other modules are compiled into the kernel,
but when mfs_load is "YES" ad(0|1) are not seen.  When "NO" the modules
still loads automagically, which is kind of nice and a new feature with 4.0.

Why would loading a module cause the kernel not to recognize the IDE drives?



Also found an install nit while trying the
on-my-floppies-still-called-novice install.  Both novice and custom will
not allow you to build a custom distribution.  Didn't try "express" yet,
but rebooting for each attempt failed forcing the choice of a predetermined
distribution.  This used to work and did so for 3.4R and RC1.



Next issue is with OpenSSH.

From the discussions here I inferred that doing a build and install and
*then* installing RSAref should "just work."

Happy to say that it does!

However...

$HOME/.ssh mode 510 owner: root group: user's group
$HOME/.ssh/authorized_keys mode 440 owner: root group: user's group

Same as it was when using ssh from the ports, but now with openssh if other
does not have execute permission on the dir and read on the file it will
fail, which is ironic considering this bit from sshd(8):

 $HOME/.ssh/authorized_keys
 Lists the RSA keys that can be used to log into the user's ac-
 count.  This file must be readable by root (which may on some ma-
 chines imply it being world-readable if the user's home directory
 resides on an NFS volume).  It is recommended that it not be ac-
 cessible by others.  The format of this file is described above.

Good suggestion, but it isn't working in practice unless $HOME is set
correctly.



Lastly it appears that Vinum is no longer shutting down when rebooting
(some processes... ps axl advised).  As per my messages to Greg this
happens with either 'shutdown -r now' or by doing a 'shutdown now' followed
by a 'shutdown -r now' from single user mode.  The latter displays it for
each shutdown and after the first the only daemon in addition to the normal
system ones for single user, is Vinum.  Unmounting any volumes before going
single user or after does not change this behaviour.

Except for the fact that I cannot induce a panic this is *exactly* what I
reported back in September and is once more 100% consistant.  The lack of a
panic and the filesystems being marked clean make this a minor issue.

To avoid this one can add 'umount volume(s)' and 'vinum stop' to
/etc/rc.shutdown.



Damn!  Time to step back to the (a) ssh problem.

After doing a few reboots to check if the Vinum issue is repeatable and
consistant with what the last time I diagnosed it...  Well, with nothing
other than a dozen or so reboots it is no longer possible to authenticate
with RSA.  The error is:

fatal: rsa_private_decrypt() failed

Saw this earlier when working out authenticatin failing, which meant I was
restarting sshd a few time.  Fresh boot and it fails.  Restart sshd and it
works.  Seem to recall something like this being discussed.


Just a wild guess, but it seems that something creeped in that is affecting
modules.  I'm seeing problems with loading mfs before the kernel and Vinum
isn't dying nicely.  Others have issues with loading them in a certain order.

Can't pinpoint the time for my 2 issues, but sometime in the sevenday
before the 25th.


Pardon the ramble, but I've been trying to nail down these problems and
have one more to look at, as well as a trace for Greg. sigh

Time to go out and watch the grass turn green.  8-)


Jeff Mountin - [EMAIL PROTECTED]
Systems/Network Administrator
FreeBSD - the power to serve



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: international RSA code

2000-02-28 Thread Bush Doctor

Out of da blue Peter Wemm aka ([EMAIL PROTECTED]) said:
 I've added a port, ports/security/librsaintl, that should build and install
 the librsaINTL.* files in /usr/lib, in case you did a binary install or
 are stuck with the USA source.
 
 The port is quite a hack, but I'd be interested to know how it works for folks.
 Note that there have been several versions, so make sure you've got the current
 version before trying to use it. :-)
 
 This builds the optimized RSA code designed for use by the ssl code.  It
 also is used by openssh.  RSAREF requires big number format conversion, this
 code does not.  RSAREF is also limited to 1024 bit keys, this code has no
 such limitation.
I'm still not clear on the issue of RSAREF :(  In the US do we need to have the
rsaref port installed in order to use openssl/openssh in the source tree?  If not
then in /etc/make.conf we can set "RSAREF=NO" and buildworld will DTRT with
respect to openssl/openssh?

thanxs ...

 
 Cheers,
 -Peter
 
 
 

#;^)
-- 
f u cn rd ths, u cn gt a gd jb n cmptr prgrmmng.

bush doctor
[EMAIL PROTECTED]


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Two queries [ KDE / XFree86 ]

2000-02-28 Thread Cliff Rowley

Greetings, I'm just wondering if anyone has encountered the following, and
what solutions you may have come up with / ideas you may have.

This may not be a FreeBSD problem, since I am using the latest XFree86
pre-4.0 snapshot.

First:

Almost every time I load a page in Netscape (latest port), I get the
message:

"XFree86-BigFont extension: shmat() failed, size = 4096, errno = 24"

Second:

Using KDM in place of XDM, XFree86 just dies immediately, resulting in
several attempts at launching, and then a 30 second pause.  XFree86 works
perfectly otherwise.

The main reason I'm asking this here is so that if it is a known problem
with -current, I'll have no need to investigate further, and i can just
wait until it's fixed.

If it is not a known problem, then I shall report my findings to the
relevant parties.

Cliff Rowley

- while (!asleep) { code(); }



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: international RSA code

2000-02-28 Thread Kris Kennaway

On Mon, 28 Feb 2000, Bush Doctor wrote:

 I'm still not clear on the issue of RSAREF :( In the US do we need to
 have the rsaref port installed in order to use openssl/openssh in the
 source tree?  If not then in /etc/make.conf we can set "RSAREF=NO" and
 buildworld will DTRT with respect to openssl/openssh?

Please reader chapter 6.5 in the handbook - it describes the now out of
date system, but the ideas behind it are the same. The bottom line is that
you need to install rsaref if you're in the US and want to use things like
openssh. If you don't fit the rsaref license you're out of luck.

Kris


"How many roads must a man walk down, before you call him a man?"
"Eight!"
"That was a rhetorical question!"
"Oh..then, seven!" -- Homer Simpson



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: ssh_host_key?

2000-02-28 Thread Kris Kennaway

On Mon, 28 Feb 2000, Nawfal M. Rouyan wrote:

 sshd_enable="YES" in the /etc/rc.conf but the server
 won't start because its searching for the ssh_host_key
 file. How do I generate that file?

Mark *still* needs to commit the /etc/rc* changes to make sshd generate a
hostkey (I'll do it tonight if he hasn't by then, since we were hoping for
a RC3 tomorrow).

The simple solution is:

/usr/bin/ssh-keygen -N "" -f /etc/ssh/ssh_host_key

 I also compiled the apache with modssl but the server
 won't start with this error:
 /usr/libexec/ld-elf.so.1: /usr/lib/librsaUSA.so:
 Undefined symbol "ERR_load_strings"
 Why is this happening?

It should be linking against /usr/lib/libcrypto.so which has this symbol.
Check what it's linking with with ldd.

Kris


"How many roads must a man walk down, before you call him a man?"
"Eight!"
"That was a rhetorical question!"
"Oh..then, seven!" -- Homer Simpson



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: Two queries [ KDE / XFree86 ]

2000-02-28 Thread Donn Miller

Cliff Rowley wrote:

 This may not be a FreeBSD problem, since I am using the latest XFree86
 pre-4.0 snapshot.

 "XFree86-BigFont extension: shmat() failed, size = 4096, errno = 24"

I've got the same problem also, and can confirm it is a
-current/XFree86-3.9.18 problem.  (Probabably mainly an XFree86
problem, I presume.)  Apparently, the XFree86 build process isn't
perfect either, since certain options in xc/config/cf/host.def can
cause the "make install" to fail.  One set of options I had in
host.def caused the make World to finish successfully.  But when I did
the ensuing "make install", it began compiling the aout shared libs,
which it didn't do during the make World.  (What the hell?)

So, it appears that this snapshot can be very "touchy" depending on
what you put in host.def.  Changing one minor thing can throw the
whole XFree86 distribution out of whack.  I finally got it right,
though, and I'm getting the errors you describe.

- Donn


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: adduser - broken?

2000-02-28 Thread Bruce Burden



   Sorry, gang, I just didn't realize how huge the netscape cache
   directory had become. No wonder it was taking soo long.

Bruce
-- 
---
  Bruce Burden[EMAIL PROTECTED] Tandem Computers Inc.
  512-432-8944Network Verification  14231 Tandem Blvd.
  Auto answer(4 rings)  Austin, TX 78726


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: ssh_host_key?

2000-02-28 Thread Jordan K. Hubbard

 Mark *still* needs to commit the /etc/rc* changes to make sshd generate a
 hostkey (I'll do it tonight if he hasn't by then, since we were hoping for
 a RC3 tomorrow).

Today.. :)  I'll be pretty busy tomorrow preparing for the trip and
have just gone and committing a fix.

- Jordan


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



That des nolinks thang..

2000-02-28 Thread Damieon Stark

Could somebody repost the flag intended for make.conf to
keep the des libs from taking over libcrypt's links?  Wrote it down, deleted 
it, lost the paper, and comenced feeling dumb ;)

Thanks for all of the hard work everybody!

Damieon Stark


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: That des nolinks thang..

2000-02-28 Thread Will Andrews

On Mon, Feb 28, 2000 at 02:21:33PM -0600, Damieon Stark wrote:
   Could somebody repost the flag intended for make.conf to
 keep the des libs from taking over libcrypt's links?  Wrote it down, deleted 
 it, lost the paper, and comenced feeling dumb ;)

Feel dumber when you go to actually look at the freebsd-current archives.
http://www.FreeBSD.org/search/ - have fun! ;-)

-- 
Will Andrews [EMAIL PROTECTED]
GCS/E/S @d- s+:++:- a---+++ C++ UB P+ L- E--- W+++ !N !o ?K w---
?O M+ V-- PS+ PE++ Y+ PGP t++ 5 X++ R+ tv+ b++ DI+++ D+ 
G+ e- h! r--+++ y?


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: Two queries [ KDE / XFree86 ]

2000-02-28 Thread Maxim Sobolev

Donn Miller wrote:

 Cliff Rowley wrote:

  This may not be a FreeBSD problem, since I am using the latest XFree86
  pre-4.0 snapshot.

  "XFree86-BigFont extension: shmat() failed, size = 4096, errno = 24"

 I've got the same problem also, and can confirm it is a
 -current/XFree86-3.9.18 problem.  (Probabably mainly an XFree86
 problem, I presume.)  Apparently, the XFree86 build process isn't
 perfect either, since certain options in xc/config/cf/host.def can
 cause the "make install" to fail.  One set of options I had in
 host.def caused the make World to finish successfully.  But when I did
 the ensuing "make install", it began compiling the aout shared libs,
 which it didn't do during the make World.  (What the hell?)

 So, it appears that this snapshot can be very "touchy" depending on
 what you put in host.def.  Changing one minor thing can throw the
 whole XFree86 distribution out of whack.  I finally got it right,
 though, and I'm getting the errors you describe.

Do you have any plans to make XFree86-devel port of it? This let us to test
it and refine before XF-4.0 will be released.

-Maxim



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: ssh_host_key?

2000-02-28 Thread Kris Kennaway

On Mon, 28 Feb 2000, Jordan K. Hubbard wrote:

  Mark *still* needs to commit the /etc/rc* changes to make sshd generate a
  hostkey (I'll do it tonight if he hasn't by then, since we were hoping for
  a RC3 tomorrow).
 
 Today.. :)  I'll be pretty busy tomorrow preparing for the trip and
 have just gone and committing a fix.

Hmm. Whats the status of the sysinstall changes we were talking
about? Namely, displaying rsaref on the correct vty during installation,
and teaching it to pick up the RSA packages?

Kris


"How many roads must a man walk down, before you call him a man?"
"Eight!"
"That was a rhetorical question!"
"Oh..then, seven!" -- Homer Simpson



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: That des nolinks thang..

2000-02-28 Thread Kris Kennaway

On Mon, 28 Feb 2000, Will Andrews wrote:

 On Mon, Feb 28, 2000 at 02:21:33PM -0600, Damieon Stark wrote:
  Could somebody repost the flag intended for make.conf to
  keep the des libs from taking over libcrypt's links?  Wrote it down, deleted 
  it, lost the paper, and comenced feeling dumb ;)
 
 Feel dumber when you go to actually look at the freebsd-current archives.
 http://www.FreeBSD.org/search/ - have fun! ;-)

Better to use http://www.freebsd.org/mail/

The flag was NO_DESCRYPTLINKS in the version of the patch I posted, but it
was called other names in other people's patches, and it's not yet in the
tree. Based on the sentiment of others it will probably be (sadly) renamed
to NODESCRYPTLINKS to conform to historical precedent.

Kris


"How many roads must a man walk down, before you call him a man?"
"Eight!"
"That was a rhetorical question!"
"Oh..then, seven!" -- Homer Simpson



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: Two queries [ KDE / XFree86 ]

2000-02-28 Thread Will Andrews

On Mon, Feb 28, 2000 at 10:42:22PM +0200, Maxim Sobolev wrote:
 Do you have any plans to make XFree86-devel port of it? This let us to test
 it and refine before XF-4.0 will be released.

I already made one. However, since XFree86 4.0's release is impending
within the next three or four weeks (as per xfree86.org), I've left it on
my website for those daring enough to try it out.

http://www.psn.net/~andrews/XFree86-beta.tar.gz

I will be submitting a XFree4 port once the release goes out. Until then,
people can hack it and let me know of any problems. I've tested twm with
the basic install. I do not know much about PC98/etc. so if patches could
be submitted to allow for easy PC98 integration in the port, please do
that. Thanks.

-- 
Will Andrews [EMAIL PROTECTED]
GCS/E/S @d- s+:++:- a---+++ C++ UB P+ L- E--- W+++ !N !o ?K w---
?O M+ V-- PS+ PE++ Y+ PGP t++ 5 X++ R+ tv+ b++ DI+++ D+ 
G+ e- h! r--+++ y?


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: ssh_host_key?

2000-02-28 Thread Jordan K. Hubbard

 Hmm. Whats the status of the sysinstall changes we were talking
 about? Namely, displaying rsaref on the correct vty during installation,
 and teaching it to pick up the RSA packages?

I'm going to do this tonite, before I roll RC#3.

- Jordan


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: ssh_host_key?

2000-02-28 Thread Kris Kennaway

On Mon, 28 Feb 2000, Jordan K. Hubbard wrote:

  Hmm. Whats the status of the sysinstall changes we were talking
  about? Namely, displaying rsaref on the correct vty during installation,
  and teaching it to pick up the RSA packages?
 
 I'm going to do this tonite, before I roll RC#3.

Good boy :-)

Kris



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: Two queries [ KDE / XFree86 ]

2000-02-28 Thread Will Andrews

On Mon, Feb 28, 2000 at 11:11:27PM +0200, Maxim Sobolev wrote:
 Thanks for pointing. What is your opinion about it (stability, compatability,
 performance etc)?

Haven't had time to screw with it any more than just a basic twm setup. I'd
have to reinstall most of my X apps to use it (and I already have a nice
3.3.6 setup right now).

I made it so I could try it out seriously sometime.. right now my priority
is getting other things ready for 4.0-RELEASE.

-- 
Will Andrews [EMAIL PROTECTED]
GCS/E/S @d- s+:++:- a---+++ C++ UB P+ L- E--- W+++ !N !o ?K w---
?O M+ V-- PS+ PE++ Y+ PGP t++ 5 X++ R+ tv+ b++ DI+++ D+ 
G+ e- h! r--+++ y?


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message



Re: Two queries [ KDE / XFree86 ]

2000-02-28 Thread Maxim Sobolev

Will Andrews wrote:

 On Mon, Feb 28, 2000 at 10:42:22PM +0200, Maxim Sobolev wrote:
  Do you have any plans to make XFree86-devel port of it? This let us to test
  it and refine before XF-4.0 will be released.

 I already made one. However, since XFree86 4.0's release is impending
 within the next three or four weeks (as per xfree86.org), I've left it on
 my website for those daring enough to try it out.

 http://www.psn.net/~andrews/XFree86-beta.tar.gz

Thanks for pointing. What is your opinion about it (stability, compatability,
performance etc)?

-Maxim



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message