checksums and installer

2014-02-21 Thread frantisek holop
i have just installed the feb 20 snapshot on a personal netbook (not server). to install snapshots, i normally download the iso, copy the files from it to my home, and boot up bsd.rd and then select the sets from an already mounted partition. i feel the latest incarnation of the installer is a

Re: X11 graphics corruption on intel card

2014-02-21 Thread frantisek holop
for the archives: with the latest snapshot intel driver 2.99.910 this seems to be fixed. -f hmm, on Mon, Jan 06, 2014 at 04:53:38PM +0100, frantisek holop said that i am sad to report an intel driver regression: i have now gazillions of these in Xorg.0.log: [91.472] (EE) intel(0):

Generate hashed rootpw for native ldapd

2014-02-21 Thread Joel Carnat
Hi, I want to generate a hashed rootpw for native ldapd (on OBSD 5.4). I've tried various things like `echo secret | sha256` but I can't authenticate. If possible, I'd like not to install openldap-server just to get slappasswd. What is the (native) way to generate the SSHA hashed format for

tcpdump lying? wifi, WEP and dhclient

2014-02-21 Thread frantisek holop
i am on the road at the moment, staying at various hostels. more often than not, i can connect my openbsd netbook (run0) to these networks. the current hostel however is not one of those. i am staying here only until tomorrow, so i wont be able to test anything later but i still want to send

Re: tcpdump lying? wifi, WEP and dhclient

2014-02-21 Thread frantisek holop
forgot the dmesg: OpenBSD 5.5-beta (GENERIC.MP) #238: Thu Feb 20 15:00:18 MST 2014 dera...@i386.openbsd.org:/usr/src/sys/arch/i386/compile/GENERIC.MP cpu0: Intel(R) Atom(TM) CPU N570 @ 1.66GHz (GenuineIntel 686-class) 1.67 GHz cpu0:

Re: Printing problem

2014-02-21 Thread Jan Stary
On Feb 19 13:20:07, chrisbenn...@bennettconstruction.us wrote: I don't print from my laptop often, but all was fine until recently. I did not have any problems previously. I haven't made any changes either. I am using commands of lpr -Plp estimate_details_for_customer or lpr -Paps1

Re: Generate hashed rootpw for native ldapd

2014-02-21 Thread Marcus MERIGHI
j...@carnat.net (Joel Carnat), 2014.02.21 (Fri) 12:09 (CET): I want to generate a hashed rootpw for native ldapd (on OBSD 5.4). I've tried various things like `echo secret | sha256` but I can't authenticate. If possible, I'd like not to install openldap-server just to get slappasswd.

Re: Generate hashed rootpw for native ldapd

2014-02-21 Thread Joel Carnat
Hum, I tried it but it doesn't work. I have a slappasswd else where to test. And here's what I get : # print passphrase | openssl dgst -sha1 -binary | openssl enc -base64 | awk '{print {SHA}$0}' {SHA}ZLvhLmLU88dUQwzfUgsq6IV8ZRE= # echo passphrase | openssl dgst -sha1 -binary | openssl enc

Re: Generate hashed rootpw for native ldapd

2014-02-21 Thread Abel Abraham Camarillo Ojeda
try not including newline: $ echo -n passphrase | openssl dgst -sha1 -binary | openssl enc -base64 | awk '{print {SHA}$0}' {SHA}YhAnRDQFLyD8uD4dD0kiBPyxGIQ= $ On Fri, Feb 21, 2014 at 6:31 AM, Joel Carnat j...@carnat.net wrote: Hum, I tried it but it doesn't work. I have a slappasswd else

Re: Generate hashed rootpw for native ldapd

2014-02-21 Thread Joel Carnat
Yep, that works! Thanks :) Le 21 févr. 2014 à 13:41, Abel Abraham Camarillo Ojeda acam...@verlet.org a écrit : try not including newline: $ echo -n passphrase | openssl dgst -sha1 -binary | openssl enc -base64 | awk '{print {SHA}$0}' {SHA}YhAnRDQFLyD8uD4dD0kiBPyxGIQ= $ On Fri, Feb

Re: Generate hashed rootpw for native ldapd

2014-02-21 Thread Claudio Jeker
On Fri, Feb 21, 2014 at 01:31:13PM +0100, Joel Carnat wrote: Hum, I tried it but it doesn't work. I have a slappasswd else where to test. And here's what I get : # print passphrase | openssl dgst -sha1 -binary | openssl enc -base64 | awk '{print {SHA}$0}' {SHA}ZLvhLmLU88dUQwzfUgsq6IV8ZRE=

Re: Generate hashed rootpw for native ldapd

2014-02-21 Thread Sébastien Marie
On Fri, Feb 21, 2014 at 01:31:13PM +0100, Joel Carnat wrote: Hum, I tried it but it doesn't work. I have a slappasswd else where to test. And here's what I get : # print passphrase | openssl dgst -sha1 -binary | openssl enc -base64 | awk '{print {SHA}$0}' {SHA}ZLvhLmLU88dUQwzfUgsq6IV8ZRE=

Re: Generate hashed rootpw for native ldapd

2014-02-21 Thread Matthew Weigel
On 2014-02-21 5:09, Joel Carnat wrote: What is the (native) way to generate the SSHA hashed format for rootpw ? Is there a particular reason you want to use SSHA? Here is a short script that should run fine on a stock OpenBSD machine to generate a bcrypt hash suitable for the userPassword

Re: Printing problem

2014-02-21 Thread Jeremy Evans
On Fri, Feb 21, 2014 at 3:54 AM, Jan Stary h...@stare.cz wrote: On Feb 19 13:20:07, chrisbenn...@bennettconstruction.us wrote: I don't print from my laptop often, but all was fine until recently. I did not have any problems previously. I haven't made any changes either. I am using

Re: Generate hashed rootpw for native ldapd

2014-02-21 Thread Matthew Weigel
On 2014-02-21 9:24, Matthew Weigel wrote: On 2014-02-21 5:09, Joel Carnat wrote: Here is a short script that should run fine on a stock OpenBSD machine to generate a bcrypt hash suitable for the userPassword attribute of ldapd. Nope nope nope. That script is incorrect in a couple of ways.

Re: mounting CVS tree read-only?

2014-02-21 Thread Theo de Raadt
After studying FAQ 5.3, I am contemplating mounting /usr/src and /usr/xenocara read-only through NFS so I can maintain a centralized tree for multiple platforms.  Is this possible?  Are all writes made to /usr/obj and /usr/xobj? That is the intent. From time to time, mistakes sneak in. If

Re: Generate hashed rootpw for native ldapd

2014-02-21 Thread Raimo Niskanen
On Fri, Feb 21, 2014 at 09:24:10AM -0600, Matthew Weigel wrote: On 2014-02-21 5:09, Joel Carnat wrote: What is the (native) way to generate the SSHA hashed format for rootpw ? Is there a particular reason you want to use SSHA? Here is a short script that should run fine on a stock

Re: checksums and installer

2014-02-21 Thread Kent Fritz
On Fri, Feb 21, 2014 at 2:24 AM, frantisek holop min...@obiit.org wrote: i have just installed the feb 20 snapshot on a personal netbook (not server). to install snapshots, i normally download the iso, copy the files from it to my home, and boot up bsd.rd and then select the sets from an

Re: checksums and installer

2014-02-21 Thread Theo de Raadt
On Fri, Feb 21, 2014 at 2:24 AM, frantisek holop min...@obiit.org wrote: i have just installed the feb 20 snapshot on a personal netbook (not server). to install snapshots, i normally download the iso, copy the files from it to my home, and boot up bsd.rd and then select the sets from

Re: Generate hashed rootpw for native ldapd

2014-02-21 Thread Matthew Weigel
On 2014-02-21 10:07, Raimo Niskanen wrote: I guess you can use 'openssl passwd' for that, or 'openssl passwd -1' for MD5 password however that is tagged if allowed in LDAP... It doesn't look like openssl passwd knows about bcrypt at all (either internally, or via crypt()). While I think

Re: Generate hashed rootpw for native ldapd

2014-02-21 Thread Theo de Raadt
I guess you can use 'openssl passwd' for that, or 'openssl passwd -1' for MD5 password however that is tagged if allowed in LDAP... It doesn't look like openssl passwd knows about bcrypt at all (either internally, or via crypt()). While I think ldapd would be fine with either the old

Re: mounting CVS tree read-only?

2014-02-21 Thread Fred Snurd
On Friday, February 21, 2014 11:14 AM, Theo de Raadt dera...@cvs.openbsd.org wrote: After studying FAQ 5.3, I am contemplating mounting /usr/src and /usr/xenocara read-only through NFS so I can maintain a centralized tree for multiple platforms.  Is this possible?  Are all writes made to

Re: mounting CVS tree read-only?

2014-02-21 Thread Janne Johansson
You can mount an mfs or a tmpfs there to solve that Den 21 feb 2014 21:00 skrev Fred Snurd fredsn...@yahoo.com: On Friday, February 21, 2014 11:14 AM, Theo de Raadt dera...@cvs.openbsd.org wrote: After studying FAQ 5.3, I am contemplating mounting /usr/src and /usr/xenocara read-only

Re: mounting CVS tree read-only?

2014-02-21 Thread Christian Weisgerber
On 2014-02-21, Fred Snurd fredsn...@yahoo.com wrote: After studying FAQ 5.3, I am contemplating mounting /usr/src and /usr/xenocara read-only through NFS so I can maintain a centralized tree for multiple platforms.  Is this possible? The last time I tried to mount the source trees read-only,

Re: mounting CVS tree read-only?

2014-02-21 Thread Ted Unangst
On Fri, Feb 21, 2014 at 11:59, Fred Snurd wrote: In FAQ 5.3.4, config(8) is being used to populate the /usr/src/sys/arch/platform/compile/GENERIC directory. Am I correct in thinking this directory should be mounted read/write? kernels don't have to be built there. From anywhere you like:

Re: Acer aspire one 722 snapshot

2014-02-21 Thread Alexey Kurinnij
I install 5.3 i386 and ZZZ works. 5.3, 5.4 amd64 not work ZZZ. Now I downloading 5.5 i386 snapshot and test it soon. 2014-02-18 0:04 GMT+02:00 Alexey Kurinnij alexey.kurin...@gmail.com: 2014-02-17 9:29 GMT+02:00 Mike Larkin mlar...@azathoth.net: On Sun, Feb 16, 2014 at 11:46:47AM +0200,

Re: Acer aspire one 722 snapshot

2014-02-21 Thread Alexey Kurinnij
ZZZ and zzz in 5.5 i386 snapshot work. And not work on amd64 at all. 2014-02-21 22:52 GMT+02:00 Alexey Kurinnij alexey.kurin...@gmail.com: I install 5.3 i386 and ZZZ works. 5.3, 5.4 amd64 not work ZZZ. Now I downloading 5.5 i386 snapshot and test it soon. 2014-02-18 0:04 GMT+02:00 Alexey