Re: becoming a openbsd developer , any guides ?

2010-08-04 Thread Richard Toohey
On 4/08/2010, at 6:32 PM, Philip Guenther wrote:

> On Tue, Aug 3, 2010 at 10:50 PM, Aaron Lewis 
> wrote:
>>   I've been googled a lot , nothing interesting about this topic , can
>> anyone get me some ideas ?
undeadly and bsdtalk (http://bsdtalk.blogspot.com/) are great resources.

e.g. things like this one

http://www.undeadly.org/cgi?action=article&sid=20060317174014

HTH.
> 
> Find something that bugs you.  Submit a fix.  Lather, rinse, repeat.
> 
> Always remember that you're doing these fixes because *you* care about
> them.  It isn't about making yourself a better programmer, but about
> making the code better.
> 
> 
> Philip Guenther



Tecnicas Super Efectivas de Cobranza

2010-08-04 Thread Andrea Maza
TC)cnicas SC:per Efectivas de Cobranza

B!Descubra el modo rC!pido, fC!cil y legal de recuperar su dinero de
cuentas atrasadas! Usted conocerC! docenas de secretos que las empresas
mC!s efectivas usan para que los deudores paguen rC!pido, convierta el
telC)fono en su instrumento mC!s poderoso, cC3mo manejar cada excusa,
cC3mo tratar con gente enojada y abusiva y aprenda a escribir cartas que
le faciliten el trabajo.

AdemC!s, usted aprenderC! lo que tiene que saber para evitar pasos
legales en falso, recibirC! herramientas y tC)cnicas que necesita para
ser mC!s productivo, mC!s eficaz y  mC!s contundente, sin mencionar que
estarC! menos estresado en el trabajo. B!No deje pasar esta C:nica
oportunidad!

Entre los puntos a tratar se incluyen:

.CC3mo manejar excusas, mentiras y quejas de los deudores. 
.Calme a clientes furiosos e irracionales con tC)cnicas que trabajan como
un encanto.
.Mantenga su organizaciC3n fuera de problemas, sabiendo exactamente
cuC!les son sus derechos y lCmites legales.
.Haga que ingrese mC!s dinero con sus cartas de cobranza.
.Mantenga el control de la conversaciC3n telefC3nica cuando los deudores
tratan de conducirlo por otro lado.
.Sepa exactamente cuC!ndo y cC3mo usted deberCa considerar la demanda
judicial en   cuentas atrasadas.

Programado en:
Guadalajara 18 de agosto
MC)xico, D.F. 20 de agosto
Monterrey 26 de agosto

Desea obtener un folleto GRATUITO con mC!s informaciC3n?B4

Responda este correo con los siguientes datos:
Empresa:
Nombre:
Puesto:
Tel: (  )
E-mail:   misc@openbsd.org
Fecha de interC)s: ( ) Guadalajara  b  MC)xico, D.F. ( )  b 
Monterrey ( )

o Llame a nuestra lada sin costo: 01 800 250 10 20

Q U A L I T Y  T R A I N I N G  D E  M E X I C O

Para dar de baja su cuenta de correo y no recibir mC!s invitaciones
responda con el asunto wsuprim



Re: becoming a openbsd developer , any guides ?

2010-08-04 Thread Corey
 I would need to brush up on my C, and then figure out the whole 
cvs/diff/make/toolchain thing first.  But then again, I should because I 
could use some revision control in some  other things I'm working on.


Maybe better to start in testing and/or documentation :)

C

On 08/04/2010 01:32 AM, Philip Guenther wrote:

On Tue, Aug 3, 2010 at 10:50 PM, Aaron Lewis
wrote:

I've been googled a lot , nothing interesting about this topic , can
anyone get me some ideas ?

Find something that bugs you.  Submit a fix.  Lather, rinse, repeat.

Always remember that you're doing these fixes because *you* care about
them.  It isn't about making yourself a better programmer, but about
making the code better.


Philip Guenther




Re: UTF-8

2010-08-04 Thread Jordi Beltran Creix
2010/8/5 Matthew Dempsky :
> On Wed, Aug 4, 2010 at 6:22 AM, Jordi Beltran Creix
>  wrote:
>> ls(1) needs to use wcwidth(3) instead of just assuming 1 for alignment
>> and if I remember correctly it also mangles the strings using
>> isprint(3) or hardcoded values instead of iswprint(3) when printing to
>> terminal which is probably what you are seeing here. ed(1) is broken
>> by the latter and ksh(1) for both reasons.
>
> Is there any useful documentation that explains how you're supposed to
> write C code and what's changed under the i18n New World Order? B From
> your message, it sounds like we're going to have to rewrite nearly all
> of our user-space code...
>

Not everything, but utilities that do ls-like alignment with file
names and other user provided strings, do need small modifications if
they are to be made Unicode friendly. The names should still print
correctly as long as they aren't mangled but anything that uses 0 or 2
char-wide glyphs will be misaligned. Reading user input interactively
from terminal needs to account for glyph width as well, but that
mostly happens in the libraries.

String and input mangling occurs when the programs try to sanitize
control characters. In the case of UTF-8, terminal control sequences
over 0x80 can be a valid part of a printable character.

And then there is collation which means people get angry when IJ.txt
is listed after II.txt. However, many Unicode aware programs ignore it
and it is optional in POSIX regexes.

All programs that output raw strings, don't attempt alignment, and
don't work with glyphs or code points(stuff like regexes is out but
not simple matching and replacement), are safe from i18n. If you
ignore its features, UTF-8 is just like ASCII and nothing has to
change, no need to use Unicode functions for everything.

This old FAQ is the best resource there is by far about supporting
UTF-8 and locales in POSIX programs:

http://www.cl.cam.ac.uk/~mgk25/unicode.html

... and then there are many other implementations of the same
utilities that have been adapted to different degrees before.



Re: Most barebones pf.conf

2010-08-04 Thread Olivier Mehani
On Thu, Aug 05, 2010 at 02:17:35AM +0200, Robert wrote:
> > What would be the most barebones pf.conf for a OpenBSD 4.7 nat firewall
> > with 2 nics, that passes everything.
> ext_if="em0"
> table int_net const persist {10.10.1.0/24}
> match out on $ext_if from  to any nat-to ($ext_if)
> pass all

If I'm not mistaken, you could drop the bext_if="em0"b and just use
interface group begressb (which would be your only interface with a
default route in this case) in the match rule.

Similarly, assuming your local interface is in the same network as your
NATted clients, you could use b($int_if:network)b instead of the address
table. This would require declaring an $int_if variable.

Maybe a nicer way to do this would be to put your local interface in a
specific group using hostname.$int_if, then only use that group's name
in your pf.conf. This has the additional advantage that you can add
other local interfaces later on, and have the NAT set up directly for
them without modifying your pf.conf, but only their hostname.if.

Thus,

=== pf.conf ===
match out on egress from (ingress:network) to any nat-to (egress)
pass all
==

=== hostname.$int_if ===
...
group ingress
==

PS: I'm just saying that from the top of my head, and haven't tried
this. Particularly, I'm not sure whether the bnat-to (egress)b works. It
may need a bnat-to (egress:0)b instead, which may net even work either.
I tend to always try out interface group-based solutions first as I find
them more elegant.  Anyway, if you're keen, please test and tell us (:

--
Olivier Mehani 
PGP fingerprint: 4435 CF6A 7C8D DD9B E2DE  F5F9 F012 A6E2 98C6 6655

[demime 1.01d removed an attachment of type application/pgp-signature]



Re: Most barebones pf.conf

2010-08-04 Thread Robert
On Wed, 4 Aug 2010 15:32:39 -0700
"Peter Merritt"  wrote:
> What would be the most barebones pf.conf for a OpenBSD 4.7 nat firewall
> with 2 nics, that passes everything.

ext_if="em0"
table int_net const persist {10.10.1.0/24}
match out on $ext_if from  to any nat-to ($ext_if)
pass all

---
That's minimal (yes, you can write it shorter...), but it might not
be enough in every case.

"man pf.conf" and http://marc.info might also help...

regards,
Robert



Re: Most barebones pf.conf

2010-08-04 Thread Chris Cappuccio
he says NAT, so what about something like "match out from 192.168.0.0/16 to any 
nat-to 35.42.1.42" 

pf.conf and the faq should have plenty more info

Johan Beisser [...@caustic.org] wrote:
> "pass all"
> 
> On Wed, Aug 4, 2010 at 3:32 PM, Peter Merritt  
> wrote:
> > What would be the most barebones pf.conf for a OpenBSD 4.7 nat firewall
> > with 2 nics, that passes everything.
> >
> > Peter

-- 
I know nothing except the fact of my ignorance -Socrates



Re: Multi Route possible ?

2010-08-04 Thread Kevin Chadwick
> On 08/04/2010 06:36 PM, Kevin Chadwick wrote:
> > 
> > Correct me if I'm wrong again but another option for redundancy would be
> > to use two boxes for the connections with a trunk in failover mode.
> > (I'm guessing you don't want to increase bandwidth, if you've chosen
> > 3g?, or is this just a laptop or something?)
> > 
> 
> - --
> - ---- 3G (ppp0)
> - - OpenBSD Laptop -
> - ---- Cable (em0) (sometimes wlan0 with wireless)
> - --
> 
> Possible to gain double bandwidth ? I'm very curious.
> 

I was meaning for a network really. It's a lot easier by shuffling
connections or for failover. For a single connection, Udp might? work
alright, otherwise you'd need to do some connection tracking such as
timeouts or bandwidth etc, maybe tunneling to a proxy or through a dns
server (but that's just wrong, not to mention out of your control). I'm
sure that magic will be around somewhere, I've read something about it,
if I ever look into it. I can let you know. 

Roundrobin would probably be easy enough, but it wouldn't be optimal
and isn't 3g going to be expensive (not to mention the latency) for
anything other than when necessary, such as for failover anyway?



Re: Most barebones pf.conf

2010-08-04 Thread Johan Beisser
"pass all"

On Wed, Aug 4, 2010 at 3:32 PM, Peter Merritt  wrote:
> What would be the most barebones pf.conf for a OpenBSD 4.7 nat firewall
> with 2 nics, that passes everything.
>
> Peter



Most barebones pf.conf

2010-08-04 Thread Peter Merritt
What would be the most barebones pf.conf for a OpenBSD 4.7 nat firewall
with 2 nics, that passes everything.

Peter



Re: UTF-8

2010-08-04 Thread Matthew Dempsky
On Wed, Aug 4, 2010 at 6:22 AM, Jordi Beltran Creix
 wrote:
> ls(1) needs to use wcwidth(3) instead of just assuming 1 for alignment
> and if I remember correctly it also mangles the strings using
> isprint(3) or hardcoded values instead of iswprint(3) when printing to
> terminal which is probably what you are seeing here. ed(1) is broken
> by the latter and ksh(1) for both reasons.

Is there any useful documentation that explains how you're supposed to
write C code and what's changed under the i18n New World Order?  From
your message, it sounds like we're going to have to rewrite nearly all
of our user-space code...



Invitacion Nacional para Ejecutivos

2010-08-04 Thread Juan Ortiz
Quality Training de Mixico ! lleva los seminarios best seller a su
ciudad. !

Mirida
Guma de Comprensisn de Estados Financieros para Directores No
Financieros;  // 16 de Agosto de 2010
Ticnicas Szper Efectivas de Cobranza   // 17 de Agosto de 2010
El Nuevo Papel del Gerente Administrativo en las Empresas Modernas // 18
de Agosto de 2010
Csmo Optimizar el Control Interno para la Prevencisn de Fraudes // 19 de
Agosto de 2010

Puebla
-
Csmo Elaborar Manuales de Polmticas y Procedimientos // 16 de Agosto de
2010
Coaching, Consejos y Habilidades para Supervisores, Gerentes y Lmderes //
17 de Agosto de 2010
Csmo Pagar a la Fuerza de Ventas  // 18 de Agosto de 2010 ?Csmo Manejar
Gente Difmcil  // 19 de Agosto de 2010

Tampico
--
Ticnicas Modernas para Administrar Flotillas de Autotransporte // 16 de
Agosto de 2010
Mapeo, Analisis y Rediseqo de Procesos  // 17 de Agosto de 2010
Csmo Administrar y Optimizar sus Almacenes e Inventarios // 18 de Agosto
de 2010
Administracisn, Organizacisn y Control de un Departamento de Compras //
19 de Agosto de 2010

Veracruz
---
Guma de Comprensisn de Estados Financieros para Directores No Financieros
 // 16 de Agosto de 2010
Ticnicas Szper Efectivas de Cobranza // 17 de Agosto de 2010
El Nuevo Papel del Gerente Administrativo en las Empresas Modernas // 18
de Agosto de 2010
Csmo Optimizar el Control Interno para la Prevencisn de Fraudes // 19 de
Agosto de 2010

Villahermosa
Csmo Manejar Exitosamente Sucursales // 16 de Agosto de 2010
Csmo Cobrar como un Experto   // 17 de Agosto de 2010
El Gerente de Ventas como Administrador, Vendedor y Lmder // 18 de Agosto
de 2010
Habilidades de Vanguardia para la Asistente Extraordinaria  // 19 de
Agosto de 2010

Requiere un folleto GRATUITO con mas informacisn?

Responda este correo con los siguientes datos:
Seminario(s):
Empresa:
Nombre:
Puesto:
Tel: ( )
E-mail: misc@openbsd.org
Ciudad de interis: ( ) Mirida - ( ) Puebla - ( ) Tampico - ( ) Veracruz -
( ) Villahermosa

o Llame a nuestra lada sin costo: 01 800 701 35 05

Q U A L I T Y T R A I N I N G D E M E X I C O

Si no desea ser suscriptor, responda el correo con el asunto g-baja



�Estamos regalando dinero, viajes y premios!

2010-08-04 Thread Opiniolandia
?Te gusta opinar? Nosotros te recompensamos por tu opinisn.

!Gana tu dinero hoy mismo!

http://usa.carreerdaytoday.com/3546b5853b99363427211c75165b00b916b4a


Forma parte de Opiniolandia y sslo por compartir tus pensamientos y opiniones 
sobre muchos temas podras ganar premios  y dinero diarios.

 !Apzntate ya!

http://usa.carreerdaytoday.com/3546b5853b99363427212c75165b00b916b4a






Si usted ya no desea recibir promociones sobre nuestras ofertas especiales, 
haga clic aqum o envme un correo a la siguiente con la direccisn de correo 
electrsnico que desea eliminar.

http://usa.carreerdaytoday.com/3546b5853b99363427213c75165b00b916b4a

Click this link to unsubscribe: 
http://usa.carreerdaytoday.com/c75165b00b916b4a63546b5853b993634



Creating self-signed certificates for TLS in smtpd

2010-08-04 Thread klerfe [Bodegas]
Hi,

this is how i've been creating self signed certificates in the past for
TLS in smtpd:

openssl req -days 3650 -nodes -new -x509 -keyout \
/etc/ssl/private/ca.key \
-out /etc/ssl/ca.crt

openssl req -days 3650 -nodes -new -keyout \
/etc/postfix/ssl/private/server.key \
-out /etc/postfix/ssl/private/server.csr

openssl x509 -req -days 3650 -in /etc/postfix/ssl/private/server.csr \
-out /etc/postfix/ssl/server.crt -CA /etc/ssl/ca.crt \
-CAkey /etc/ssl/private/ca.key -CAcreateserial


Now it doesn't work. Mail client says "bad signature", maillog says:

postfix/smtpd[1366]: warning: TLS library problem:
1366:error:14094412:SSL routines:SSL3_READ_BYTES:sslv3 alert bad
certificate:/usr/src/lib/libssl/src/ssl/s3_pkt.c:1062:SSL a
lert number 42:

openssl verify -CAfile /etc/ssl/ca.crt /etc/postfix/ssl/server.crt says:

/etc/postfix/ssl/server.crt:
/C=**/ST=*/L=*/O=*/OU=*/CN=***.***.**
error 18 at 0 depth lookup:self signed certificate
/C=**/ST=*/L=*/O=*/OU=*/CN=***.***.**
error 7 at 0 depth lookup:certificate signature failure
8629:error:0407006A:rsa routines:RSA_padding_check_PKCS1_type_1:block
type is not 01:/usr/src/lib/libssl/src/crypto/rsa/rsa_pk1.c:100:
8629:error:04067072:rsa routines:RSA_EAY_PUBLIC_DECRYPT:padding check
failed:/usr/src/lib/libssl/src/crypto/rsa/rsa_eay.c:719:
8629:error:0D0C5006:asn1 encoding routines:ASN1_item_verify:EVP
lib:/usr/src/lib/libssl/src/crypto/asn1/a_verify.c:173:

This way of creating self signed certificates worked for me in the past,
i've never had this kind of problem before. I faced this problem
recently, when i decided to remake certificates because of host address
changes. I'm on 4.7, and i've successfully created those certs first
time, after installing os and configuring postfix. Looks like creating
certificates in this way worked only very first time for me, after fresh
install. All further attempts are failing. Anyone has a clue..?

Thanks in advance,

Paulie



Re: UTF-8

2010-08-04 Thread Jordi Beltran Creix
2010/8/4 Christopher Zimmermann :
> On 07/28/10 21:45, Christian Weisgerber wrote:
>> Christian Weisgerber  wrote:
>>
>>> == xterm ==
>>
>> What doesn't work: UTF-8 mode is incompatible with 8-bit control
>> sequences.  If that doesn't ring a bell for you, then you don't
>> need to worry about it. ;-)
>>
>> I only noticed because the RMC on my AlphaServer 800 inserts 8-bit
>> controls to set bold and blink attributes in its status output.
>
> ls(1) does not seem to be 100% UTF-8 ready:
>
>
> madro...@madthought:~% /bin/ls testb8-C4-D5-b/-\#
> testo?=o?=-C4-D5-o?=o?=-#
> madro...@madthought:~% /bin/ls testb8-C4-D5-b/-\# |cat
> testb8-C4-D5-b/-#
>
> still it is a great thing that UTF-8 is working that well now. Thanks
> very much to all people that have been involved with this update!!
>
>
> Christopher
>
>

ls(1) needs to use wcwidth(3) instead of just assuming 1 for alignment
and if I remember correctly it also mangles the strings using
isprint(3) or hardcoded values instead of iswprint(3) when printing to
terminal which is probably what you are seeing here. ed(1) is broken
by the latter and ksh(1) for both reasons.

wcwidth(3) doesn't seem to have been added yet, though.



Re: 4.7 base apache access file has strange characters

2010-08-04 Thread Devin Ceartas
This sort of thing is constant background noise. When it gets bad I write a
script to add offenders to a block table, but generally I ignore it. They are
generally targeted against weaknesses in other systems.

Devin Ceartas
Owner, NacreData L.L.C.
PO Box 646
Chapel Hill, NC 27514
(919) 442-8899
de...@nacredata.com
AIM or Skype IM: nacredata
Facebook, Twitter: nacredata

On Aug 4, 2010, at 1:35 AM, Siju George  wrote:

> Hi,
>
> I exposed the base apache chrooted on one of my 4.7 systems to the
> internet yesterday.
> I found these strange line in /var/www/logs/access_log
>
>
=
===
>
> 122.169.7.58 - - [04/Aug/2010:09:41:18 +0530]
>
"\x8e 400 299
> 122.175.77.144 - - [04/Aug/2010:09:41:27 +0530]
> "yo?=o?={6K\x1co?=P3o?=[K/=o?=eo?=x83o?=o?=o?=S\x06o?=" 501 -
> 122.173.243.140 - - [04/Aug/2010:09:44:44 +0530]
>
"\x9dU*\x81o?=\x134\x98o?=Io?=o?=\ro?=h\x85~jao?=x8f\x8b\x8e\x89o?=\x8eo?=o?=
u\vo?=o?=3YSr%\x85(o?=yjo?=x8b"
> 400 299
> 59.145.141.102 - - [04/Aug/2010:09:54:27 +0530]
> "\x83\x98o?=\x0fo?=o?=\x06o?=\x14\x91i,co?=Qo?=\x85o?=Vo?=o?=" 501 -
>
>
=

>
> What are they trying to access?
>
> in PF only 80 ( and not 443 ) port is exposed to the internet with the
rule.
>
> pass in log (all, to pflog5) quick on sk0 inet proto tcp from any to
> (sk0) port = www flags S/SA keep state label " # Restricted WWW access
> from outside"
>
> thanks :-)
>
> --Siju



Re: Multi Route possible ?

2010-08-04 Thread Aaron Lewis
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 08/04/2010 06:36 PM, Kevin Chadwick wrote:
> 
> Correct me if I'm wrong again but another option for redundancy would be
> to use two boxes for the connections with a trunk in failover mode.
> (I'm guessing you don't want to increase bandwidth, if you've chosen
> 3g?, or is this just a laptop or something?)
> 

- --
- -  --- 3G (ppp0)
- - OpenBSD Laptop -
- -  --- Cable (em0) (sometimes wlan0 with wireless)
- --

Possible to gain double bandwidth ? I'm very curious.

- -- 
Best Regards,
Aaron Lewis - PGP: 0x4A6D32A0
FingerPrint EA63 26B2 6C52 72EA A4A5 EB6B BDFE 35B0 4A6D 32A0
irc: A4R0NL3WI5 on freenode
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAkxZZSoACgkQvf41sEptMqByugCeJ0c+SVEqkvjLNDTlUrd/rerZ
PvwAoNGpH5cOkQZyeGV/m21XGMR9ziRR
=4e0X
-END PGP SIGNATURE-



Re: Multi Route possible ?

2010-08-04 Thread Kevin Chadwick
On Wed, 4 Aug 2010 09:35:27 + (UTC)
Stuart Henderson  wrote:

> On 2010-08-03, Kevin Chadwick  wrote:
> >> All right , let me put it straight , a have a 3G card , a cable with
> >> 1M bandwidth , i'd like to take use of them together , that's
> >> so-called double routes (maybe load balance) , don't know if it is
> >> possible.  
> >
> > I'm pretty sure the trunk interface (roundrobin or loadbalance mode)
> > will do what your looking for, if you have an interface for each
> > connection? The differing connection speeds, may be a concern however?
> >
> 
> nope, trunk is layer 2, this situation needs something at layer 3.
> ECMP (-mpath) routing table entries may work, or use route-to/reply-to
> in PF (which is nice if you want to classify traffic more closely e.g.
> send latency-sensitive traffic over cable rather than 3G). you can
> probably also do something with rtables in the mix, but i haven't
> worked out how yet.
> 
> N.B. if your providers follow best practices, typical subscriber
> connections will reject packets with the "wrong" source address (i.e. the
> source address from the other connection). this is especially likely with
> a 3G connection which, in most cases, will be stuck behind NAT, so even
> if your provider is too slack to intentionally implement BCP38, it
> still won't work. so:
> 
> **  if you have problems then use tcpdump and look carefully
> at which source addresses are used on each interface
> 
> (semi-related, uk-based readers might be interested to keep an eye
> on aaisp, who do 3g sims and plan on offering routed static IP  l2tp handoff at some time>, i suspect in conjunction with aql/three).
> 

right you are (ppp), Sound like this will help you deal with the
speed/latency/expense probs too.

Correct me if I'm wrong again but another option for redundancy would be
to use two boxes for the connections with a trunk in failover mode.
(I'm guessing you don't want to increase bandwidth, if you've chosen
3g?, or is this just a laptop or something?)



Re: Multi Route possible ?

2010-08-04 Thread Stuart Henderson
On 2010-08-03, Kevin Chadwick  wrote:
>> All right , let me put it straight , a have a 3G card , a cable with
>> 1M bandwidth , i'd like to take use of them together , that's
>> so-called double routes (maybe load balance) , don't know if it is
>> possible.  
>
> I'm pretty sure the trunk interface (roundrobin or loadbalance mode)
> will do what your looking for, if you have an interface for each
> connection? The differing connection speeds, may be a concern however?
>

nope, trunk is layer 2, this situation needs something at layer 3.
ECMP (-mpath) routing table entries may work, or use route-to/reply-to
in PF (which is nice if you want to classify traffic more closely e.g.
send latency-sensitive traffic over cable rather than 3G). you can
probably also do something with rtables in the mix, but i haven't
worked out how yet.

N.B. if your providers follow best practices, typical subscriber
connections will reject packets with the "wrong" source address (i.e. the
source address from the other connection). this is especially likely with
a 3G connection which, in most cases, will be stuck behind NAT, so even
if your provider is too slack to intentionally implement BCP38, it
still won't work. so:

**  if you have problems then use tcpdump and look carefully
at which source addresses are used on each interface

(semi-related, uk-based readers might be interested to keep an eye
on aaisp, who do 3g sims and plan on offering routed static IP , i suspect in conjunction with aql/three).



Re: HP laptops again

2010-08-04 Thread Michael Dexter
> A lot of folks will enjoy full suspend/resume in the upcoming 4.8
> release and more is sure to come in the future.

Top understatement I've heard this year.

Keep up the good work.

Michael



Acer 1410 4.8 beta sleep issue: no keyboard after wake

2010-08-04 Thread Michael Dexter
Hello all,

I've submitted a summary, dmesg info and sensor info to dmesg@ but
perhaps someone has a quick fix?

An Acer Aspire 1410/1810t Notebook with the August 3rd amd64 ISO
snapshot will suspend but upon wake, the keyboard will only allow
console switching. All other input is ignored either from the built-in
keyboard or a USB keyboard. Kernel messages such as the keyboard
insertion appear. If suspended from X11, keyboard input will go to the
error console but not be interpreted by the shell.

Any suggestions?

So close!

Michael

OpenBSD 4.8-beta (GENERIC.MP) #262: Tue Aug  3 14:47:13 MDT 2010
dera...@amd64.openbsd.org:/usr/src/sys/arch/amd64/compile/GENERIC.MP
RTC BIOS diagnostic error 80
real mem = 2073477120 (1977MB)
avail mem = 2004455424 (1911MB)
mainbus0 at root
bios0 at mainbus0: SMBIOS rev. 2.6 @ 0xe7d10 (35 entries)
bios0: vendor INSYDE version "v1.3308" date 01/05/2010
bios0: Acer Aspire 1410
acpi0 at bios0: rev 2
acpi0: tables DSDT FACP DMAR HPET APIC MCFG ASF! SLIC BOOT SSDT SSDT SSDT
acpi0: wakeup devices UHC0(S3) UHC1(S3) UHC2(S3) UHCR(S3) EHC1(S3)
UHC3(S3) UHC4(S3) UHC5(S3) EHC2(S3) PXSX(S4) EXP1(S4) PXSX(S4) EXP2(S4)
PXSX(S4) EXP3(S4) PXSX(S4) EXP4(S4) PXSX(S4) EXP5(S4) PXSX(S4) EXP6(S4)
acpitimer0 at acpi0: 3579545 Hz, 24 bits
acpihpet0 at acpi0: 14318179 Hz
acpimadt0 at acpi0 addr 0xfee0: PC-AT compat
cpu0 at mainbus0: apid 0 (boot processor)
cpu0: Genuine Intel(R) CPU U2300 @ 1.20GHz, 1197.17 MHz
cpu0:
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,SBF,SSE3,MWAIT,DS-CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,XSAVE,NXE,LONG
cpu0: 1MB 64b/line 4-way L2 cache
cpu0: apic clock running at 199MHz
cpu1 at mainbus0: apid 1 (application processor)
cpu1: Genuine Intel(R) CPU U2300 @ 1.20GHz, 1197.00 MHz
cpu1:
FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,SBF,SSE3,MWAIT,DS-CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,XSAVE,NXE,LONG
cpu1: 1MB 64b/line 4-way L2 cache
ioapic0 at mainbus0: apid 4 pa 0xfec0, version 20, 24 pins
ioapic0: misconfigured as apic 0, remapped to apid 4
acpiprt0 at acpi0: bus 0 (PCI0)
acpiprt1 at acpi0: bus 1 (EXP1)
acpiprt2 at acpi0: bus -1 (EXP2)
acpiprt3 at acpi0: bus -1 (EXP3)
acpiprt4 at acpi0: bus 2 (EXP4)
acpiprt5 at acpi0: bus -1 (EXP5)
acpiprt6 at acpi0: bus -1 (EXP6)
acpiec0 at acpi0
acpicpu0 at acpi0: C2, C1, PSS
acpicpu1 at acpi0: C2, C1, PSS
acpibtn0 at acpi0: PWRB
acpibtn1 at acpi0: LID0
acpibtn2 at acpi0: SLPB
acpibat0 at acpi0: BAT1 not present
acpiac0 at acpi0: AC unit offline
acpivideo0 at acpi0: OVGA
pci0 at mainbus0 bus 0
pchb0 at pci0 dev 0 function 0 "Intel GM45 Host" rev 0x07
vga1 at pci0 dev 2 function 0 "Intel GM45 Video" rev 0x07
wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation)
wsdisplay0: screen 1-5 added (80x25, vt100 emulation)
intagp0 at vga1
agp0 at intagp0: aperture at 0x8000, size 0x1000
inteldrm0 at vga1: apic 4 int 16 (irq 11)
drm0 at inteldrm0
"Intel GM45 Video" rev 0x07 at pci0 dev 2 function 1 not configured
uhci0 at pci0 dev 26 function 0 "Intel 82801I USB" rev 0x03: apic 4 int
16 (irq 11)
ehci0 at pci0 dev 26 function 7 "Intel 82801I USB" rev 0x03: apic 4 int
19 (irq 10)
usb0 at ehci0: USB revision 2.0
uhub0 at usb0 "Intel EHCI root hub" rev 2.00/1.00 addr 1
azalia0 at pci0 dev 27 function 0 "Intel 82801I HD Audio" rev 0x03: apic
4 int 22 (irq 11)
azalia0: codecs: Realtek ALC269, Intel/0x2802, using Realtek ALC269
audio0 at azalia0
ppb0 at pci0 dev 28 function 0 "Intel 82801I PCIE" rev 0x03: apic 4 int
17 (irq 255)
pci1 at ppb0 bus 1
alc0 at pci1 dev 0 function 0 "Attansic Technology L1C" rev 0xc0: apic 4
int 16 (irq 11), address 00:26:9e:80:2f:32
atphy0 at alc0 phy 0: F1 10/100/1000 PHY, rev. 11
ppb1 at pci0 dev 28 function 3 "Intel 82801I PCIE" rev 0x03: apic 4 int
19 (irq 255)
pci2 at ppb1 bus 2
iwn0 at pci2 dev 0 function 0 "Intel WiFi Link 1000" rev 0x00: apic 4
int 19 (irq 11), MIMO 1T2R, BGS, address 00:1e:64:16:12:54
uhci1 at pci0 dev 29 function 0 "Intel 82801I USB" rev 0x03: apic 4 int
23 (irq 11)
uhci2 at pci0 dev 29 function 1 "Intel 82801I USB" rev 0x03: apic 4 int
19 (irq 10)
uhci3 at pci0 dev 29 function 2 "Intel 82801I USB" rev 0x03: apic 4 int
16 (irq 11)
ehci1 at pci0 dev 29 function 7 "Intel 82801I USB" rev 0x03: apic 4 int
23 (irq 11)
usb1 at ehci1: USB revision 2.0
uhub1 at usb1 "Intel EHCI root hub" rev 2.00/1.00 addr 1
ppb2 at pci0 dev 30 function 0 "Intel 82801BAM Hub-to-PCI" rev 0x93
pci3 at ppb2 bus 3
pcib0 at pci0 dev 31 function 0 "Intel 82801IEM LPC" rev 0x03
pciide0 at pci0 dev 31 function 2 "Intel 82801I SATA" rev 0x03: DMA,
channel 0 configured to native-PCI, channel 1 configured to native-PCI
pciide0: using apic 4 int 19 (irq 10) for native-PCI interrupt
wd0 at pciide0 channel 0 drive 0: 
wd0: 16-sector PIO, LBA48, 152627MB, 312581808 sectors
wd0(pciide0:0:0): using PIO mode 4, Ultra-DMA mode 6
ichiic0 at pci0 dev 31 function 3 "Intel 82801I SMBus" r

Nuevo Reglamento de la Ley de Adquisiciones, Arrendamientos y Servicios del Sector Publico

2010-08-04 Thread Álvaro Gamboa
Nuevo Reglamento de la Ley de Adquisiciones, Arrendamientos y Servicios
del Sector PC:blico

Participe en este oportuno seminario que le darC! a conocer cuC!les son
los PUNTOS CRC
TICOS que se reforman, adicionan y derogan en el NUEVO
Reglamento de la Ley de Adquisiciones, Arrendamientos y Servicios del
Sector PC:blico, vigente a partir del 29 de julio de 2010.

B?Usted y su equipo estC!n preparados para cumplir con las nuevas
disposiciones normativas de forma estricta y oportuna?... No se arriesgue
a infringir la Ley y ser sancionado...

InscrCbase y comprenda ampliamente:

.B?CuC!les de los artCculos de la Ley  fueron reformados y cuC!les son
las nuevas disposiciones?
.B?QuC) artCculos fueron derogados?
.B?CuC!les son los nuevos procedimientos para convocar, licitar y
contratar?
.B?Existen nuevos procedimientos de gestiC3n y resoluciC3n de
inconformidades desde el C!mbito federal y estatal?
.Aportaciones y precisiones importantes para la transparencia y
efectividad de los contratos.

Programado en:
MC)xico, D.F. 19 de agosto

Para obtener un folleto GRATUITO con mC!s informaciC3n,

Responda este correo con los siguientes datos:
Empresa:
Nombre:
Puesto:
Tel: (  )
E-mail:  misc@openbsd.org

o Llame a nuestra lada sin costo: 01 800 250 10 20

Q U A L I T Y  T R A I N I N G  D E  M E X I C O

Si no desea recibir mC!s boletines de informaciC3n, responda con el
asunto zgob8