ETERNITY - 24th December at a cinema near you

2010-12-12 Thread Eternity
Dear Movie Lovers,

ETERNITY is a proudly South African produced feature film about vampires in
Johannesburg city.

The film stars Andre Frauenstein, Christina Storm, Rikki Brest, Hlomla
Dandala, Ian Roberts and David James from District 9.

Music used from Prime Circle, Autumn Sun, and Empery.

The movie will be released on the 24th December at a Cinema near you  ... so
watch this space ...

If you would like more information about the movie, visit the official
website: www.eternitymovie.co.za

or cut and paste or click on the link to view our official Trailer, of
Facebook and Twitter pages:
http://72.232.2.6/2010_11_22Eternity.html

Regards
The ETERNITY Movie Team
www.eternitymovie.co.za

see you this December in the movies.



Script for the creation of multiple user accounts

2010-12-12 Thread OpenBSD Geek
Hi,

I want to be able to create with a batch file multiple user accounts like
for example inca1,inca2 ... inca6

useradd -d /home/inca1 -s /bin/ksh -m -G incagroup -p passwordencrypted
user1
useradd -d /home/inca1 -s /bin/ksh -m -G incagroup -p passwordencrypted
user2
useradd -d /home/inca1 -s /bin/ksh -m -G incagroup -p passwordencrypted
user3
useradd -d /home/inca1 -s /bin/ksh -m -G incagroup -p passwordencrypted
user4
useradd -d /home/inca1 -s /bin/ksh -m -G incagroup -p passwordencrypted
user5
useradd -d /home/inca1 -s /bin/ksh -m -G incagroup -p passwordencrypted
user6

Is there a way more simple to achieve this task ?
Same password for all 6 accounts *
Thanks



Re: Script for the creation of multiple user accounts

2010-12-12 Thread Otto Moerbeek
This is not OpenBSD specific but check jot(1) and xargs(1).

Something like

jot -w user 6 | xargs -n 1 useradd ...

Will do.

-Otto

On Sun, Dec 12, 2010 at 02:30:25PM +0400, OpenBSD Geek wrote:

> Hi,
> 
> I want to be able to create with a batch file multiple user accounts like
> for example inca1,inca2 ... inca6
> 
> useradd -d /home/inca1 -s /bin/ksh -m -G incagroup -p passwordencrypted
> user1
> useradd -d /home/inca1 -s /bin/ksh -m -G incagroup -p passwordencrypted
> user2
> useradd -d /home/inca1 -s /bin/ksh -m -G incagroup -p passwordencrypted
> user3
> useradd -d /home/inca1 -s /bin/ksh -m -G incagroup -p passwordencrypted
> user4
> useradd -d /home/inca1 -s /bin/ksh -m -G incagroup -p passwordencrypted
> user5
> useradd -d /home/inca1 -s /bin/ksh -m -G incagroup -p passwordencrypted
> user6
> 
> Is there a way more simple to achieve this task ?
> Same password for all 6 accounts *
> Thanks



remove users from group

2010-12-12 Thread OpenBSD Geek
To remove users from example group "users", i usually do it by editing the
file /etc/group, and remove it manually.
Is there a way from command line to remove some users from a specific
group ?

I want to do a script like that :

list="1 2 3 4 5 6"
for i in $list
do
usermod -G wheel, staff username$i
done

This will add username[1-6] to group wheel and staff, but how can i do
like this script to remove them in staff group without editing the file
/etc/group ? 

thanks



Re: OpenBSD 4.8's bsd.mp doesn't detect 4GB Memory

2010-12-12 Thread Martin Schröder
2010/12/12 Predrag Punosevac :
> http://marc.info/?l=openbsd-misc&m=127593716916639&w=1

http://marc.info/?l=openbsd-misc&m=127601395920661&w=1
http://quigon.bsws.de/papers/2010/bsdcan-openbsdupdate/mgp2.html

Best
   Martin



Re: OpenBSD 4.8's bsd.mp doesn't detect 4GB Memory

2010-12-12 Thread Denise H. G.
On 2010/12/12 at 19:51, Martin Schrvder  wrote:
>
> 2010/12/12 Predrag Punosevac :
>> http://marc.info/?l=openbsd-misc&m=127593716916639&w=1
>
> http://marc.info/?l=openbsd-misc&m=127601395920661&w=1
> http://quigon.bsws.de/papers/2010/bsdcan-openbsdupdate/mgp2.html
>
> Best
>Martin
>
>
>

Well... any way thanks! I think that explans everything.

Thanks! haha.

--
Sale promotions don't.




Re: Donations

2010-12-12 Thread Jasper Valentijn
2010/12/10 Leonardo Rodrigues :
> To paraphrase Benjamin Franklin (an american! diplomat!):
>
> "Any society that would give up a little liberty to gain a little
> security will deserve neither and lose both."

Imho this Thomas Jefferson quote is better suited for the subject. ;-)

"If the American people ever allow private banks to control the issue
of their currency, first by inflation, then by deflation, the banks
and corporations that will grow up around them will deprive the people
of all property until their children wake up homeless on the continent
their Fathers conquered...I believe that banking institutions are more
dangerous to our liberties than standing armies... The issuing power
should be taken from the banks and restored to the people, to whom it
properly belongs."


--
We spend the first twelve months of our children's lives teaching
them to walk and talk and the next twelve telling them to sit down and
shut up.



Re: Donations

2010-12-12 Thread Johan Helsingius
Jasper,

> Imho this Thomas Jefferson quote is better suited for the subject. ;-)

http://www.snopes.com/quotes/jefferson/banks.asp

Julf



Re: remove users from group

2010-12-12 Thread Joachim Schipper
On Sun, Dec 12, 2010 at 03:44:18PM +0400, OpenBSD Geek wrote:
> To remove users from example group "users", i usually do it by editing the
> file /etc/group, and remove it manually.
> Is there a way from command line to remove some users from a specific
> group ?
> 
> I want to do a script like that :
> 
> list="1 2 3 4 5 6"
> for i in $list
> do
> usermod -G wheel, staff username$i
> done
> 
> This will add username[1-6] to group wheel and staff, but how can i do
> like this script to remove them in staff group without editing the file
> /etc/group ? 

Do some light scripting with an appropriate utility, e.g. userinfo(8).

Joachim

-- 
PotD: lang/expect,no_tk - sophisticated scripter based on Tcl/Tk
http://www.joachimschipper.nl/



Re: Donations

2010-12-12 Thread Jasper Valentijn
2010/12/12 Johan Helsingius :
> Jasper,
>
>> Imho this Thomas Jefferson quote is better suited for the subject. ;-)
>
> http://www.snopes.com/quotes/jefferson/banks.asp
>

This is my source:


--
We spend the first twelve months of our children's lives teaching
them to walk and talk and the next twelve telling them to sit down and
shut up.



Re: Donations

2010-12-12 Thread Johan Helsingius
> This is my source:
> 

That states "This quotation is at least partly spurious" :)

Julf



Pour Noël offrez une Vidéo à votre site Internet

2010-12-12 Thread stephan comelli
 code promo V11210

Offre valable jusqu'au 25 Dicembre 2010

Bonjour 





Vous aussi, vous pouvez avoir 

une vidio personnalisie de qualiti ` votre image !

 

pour un tarif tout ` fait abordable ( dhs 490  HT ) !

rifirencement dans une centaine de plateformes vidios possible ( 300  HT ). 

Pas de renouvellement ` payer tous les ans ! Vous payez une fois 

et la Vidio vous appartient !



Le principal intirjt de nos vidios et de la technologie 

que nous employons est d'amiliorer 

le rifirencement naturel de votre site internet 

car nos vidios sont reconnues par la majoriti des moteurs de recherche. 

 

De plus, en les publiant sur les plateformes sociales (youtube, facebook, 
dailymotion, TFI...) 

vous jtes quasi assuri d'jtre en 1hre page des moteurs de recherche ! 



Venez dicouvrir nos rialisations en Cliquant ICI. 



Contactez-nous dhs ` prisent en remplissant Ce Formulaire. 

Nous vous souhaitons une bonne visite

et sommes ` votre icoute pour tous vos projets



Trhs Cordialement



Stephan Comelli



Mon Agence de Pub.TV



Til   04 67 20 48 68

Mob 06 12 300  600

 

Pour Vos Parutions dans les Pages Jaunes 

Cliquez ICI

et dicouvrez nos PACKS Pages Jaunes 

+ Google Adwords + Google Adresse



 





  

  



*

Pour ne plus recevoir ce message cliquer sur le lien suivant:

http://www.stat-enreg-1.com/out/desinscrquestion.php?u=55515&b=K&c=18234&m=m...@openbsd.org&lng=fr

**

[demime 1.01d removed an attachment of type image/gif which had a name of 
video.gif]



Re: remove users from group

2010-12-12 Thread S Mathias
This works for me under Fedora 14:

# groups USERNAME
USERNAME : USERNAME GROUPNAME

# usermod -G $(id -Gn USERNAME | sed "s/GROUPNAME//g" | sed "s/ /,/g" | sed
"s/,,/,/g" | sed "s/,$//g") USERNAME

# groups USERNAME
USERNAME : USERNAME


--- On Sun, 12/12/10, Joachim Schipper  wrote:

From: Joachim Schipper 
Subject: Re: remove users from group
To: misc@openbsd.org
Date: Sunday, December 12, 2010, 1:22 PM

On Sun, Dec 12, 2010 at 03:44:18PM +0400, OpenBSD Geek wrote:
> To remove users from example group "users", i usually do it by editing the
> file /etc/group, and remove it manually.
> Is there a way from command line to remove some users from a specific
> group ?
>
> I want to do a script like that :
>
> list="1 2 3 4 5 6"
> for i in $list
> do
> usermod -G wheel, staff username$i
> done
>
> This will add username[1-6] to group wheel and staff, but how can i do
> like this script to remove them in staff group without editing the file
> /etc/group ?

Do some light scripting with an appropriate utility, e.g. userinfo(8).

Joachim

--
PotD: lang/expect,no_tk - sophisticated scripter based on Tcl/Tk
http://www.joachimschipper.nl/



Re: 4.8 breaks ral (hostap) for me

2010-12-12 Thread Snoop
Hi Stephen (and anyone else),
I'm experiencing your same problem. I was looking for a solution on the
web but I'd say unsuccessfully. I couldn't found any reply to his
complaint (that is in fact the only one I've found around) and I was
wondering if you received a solution or a tip in private.

Sorry for this late email, I usually don't like to disturb others and it
usually works (I found the solution on internet). But in this case I
didn't find anything at all! And this quite impressed me. I was thinking
that ral as AP was widely used too.

Thanks in advance, any tip/direction is more than welcome.

On Tue, 2010-11-30 at 03:33 +, Stephen Biggs wrote:
> Running 4.8 patch/stable with all updated, apm disable via config, upgraded 
> from
> 4.7 patch/stable.
> 
> Any time ral0 is initialized (in hostap mode) using, say, sh /etc/netstart, 
> the
> following message is shown on the console:
> ral0: timeout waiting for BBP
> 
> The code shows that when this happens, the device initialization is aborted 
> and
> EIO error is returned, making 4.8 patch/stable useless for running the box as 
> a
> wireless access point using ral.
> 
> This may ordinarily point to hardware failing except for two things:
> 1. checking the code shows that the busy bit is actually cleared because no
> "cannot read from BBP" message is seen, only a 0 is returned from the version
> flash read. My guess is that some firmware is being loaded wrong onto the
> hardware in 4.8?
> ...and
> 2. ral0 initializes just fine without the timeout using either my previous 4.7
> kernel, or the -current kernel which I am running now.
> 
> The relevant parts of dmesg (relevant imho; if there is more that is needed,
> please advise) are:
> ral0 at pci0 dev 14 function 0 "Ralink RT2561S" rev 0x00: irq 3, address 
> 00:24:1
> d:39:f6:84
> ral0: MAC/BBP RT2561C, RF RT2527
> 
> Also, pcidump -v shows for this device:
>  0:14:0: Ralink RT2561S
> 0x: Vendor ID: 1814 Product ID: 0301
> 0x0004: Command: 0017 Status ID: 0410
> 0x0008: Class: 02 Subclass: 80 Interface: 00 Revision: 00
> 0x000c: BIST: 00 Header Type: 00 Latency Timer: 20 Cache Line Size: 08
> 0x0010: BAR mem 32bit addr: 0xe380
> 0x0014: BAR empty ()
> 0x0018: BAR empty ()
> 0x001c: BAR empty ()
> 0x0020: BAR empty ()
> 0x0024: BAR empty ()
> 0x0028: Cardbus CIS: 0601
> 0x002c: Subsystem Vendor ID: 1458 Product ID: e934
> 0x0030: Expansion ROM Base Address: 
> 0x0038: 
> 0x003c: Interrupt Pin: 01 Line: 03 Min Gnt: 00 Max Lat: 00
> 0x0040: Capability 0x01: Power Management
> 
> I don't know what to do next here. I am understandably very apprehensive about
> running a -current kernel on top of a 4.8 stable userland.  I don't want to be
> running -current at all.
> 
> I was thinking about posting a bug using sendbug but that seems a bit 
> pointless
> considering that I am right now running the -current kernel.
> 
> The best case scenario would be for whomever knows what causes the -current
> kernel to work in this instance to post what relevant changes there are (or a
> patch?) or better yet, post a patch to the errata so I can go back to a 4.8
> stable kernel with the patch.
> 
> What is interesting about this is that I can't find any other mention of this
> problem anywhere else on the Internet.  I would have thought that a lot of
> people would be running ral0 as an access point and would have found this.
> 
> If this is only local to me, I would sure appreciate any advice on how to 
> track
> this down.
> 


 
 
 --
 Caselle da 1GB, trasmetti allegati fino a 3GB e in piu' IMAP, POP3 e SMTP 
autenticato? GRATIS solo con Email.it http://www.email.it/f
 
 Sponsor:
 Idee Regalo Personalizzate a partire da euro 3.90! Su MisterCupido.com alta 
qualit` a prezzi imbattibili... e questa settimana GRATIS per te, la confezione 
regalo!
 Clicca qui: http://adv.email.it/cgi-bin/foclick.cgi?mid=11027&d=12-12



Hard links details

2010-12-12 Thread Jean-Francois
Hi,

May someone help me to understand how exactly hard links works ? To some 
extend U understood that a hard link is indistinguishable from the "original" 
yet it must be so that the datas are linked-back to all the hard links 
pointing on it, correct ?
This means that it is safe to
a) create file.original
b) create a hard link to file.original called file.hardlink
c) destroy file.original
The datas remains.
Whereas if we would do only a) then c), the datas would be destroyed.

Is this correct ? Something to change or add ?

Tx a lot,
JF



anyone in Arlington / Dallas area?

2010-12-12 Thread Diana Eichert

If you are in the Arlington / Dallas area I need some help getting a
piece of hardware for a developer.  It is forsale on Dallas CL.

let me know if you can help out

diana



openssl chat

2010-12-12 Thread S Mathias
i can use "natively" openssl for anonymous chat:

# Chat:
# server side:
openssl req -x509 -nodes -days 365 -newkey rsa:8192 -keyout mycert.pem -out 
mycert.pem

# server side - generate a self-signed cert.
openssl s_server -accept 52310 -cert mycert.pem

# client side - "127.0.0.1" is the IP of the server
openssl s_client -connect 127.0.0.1:52310


1) but how can i set it to require username/password? it would be a great chat 
tool
2) how can i transfer files with openssl? [again: with username/password?]

thank you for any ideas :\

p.s.: or it will be a firewall rule, to restrict to ip addresses in a list? 
those, who are only allowed to connect..



Re: openssl chat

2010-12-12 Thread Ted Unangst
On Sun, Dec 12, 2010 at 11:47 AM, S Mathias  wrote:
> i can use "natively" openssl for anonymous chat:
>
> # Chat:
> # server side:
> openssl req -x509 -nodes -days 365 -newkey rsa:8192 -keyout mycert.pem -out 
> mycert.pem
>
> # server side - generate a self-signed cert.
> openssl s_server -accept 52310 -cert mycert.pem
>
> # client side - "127.0.0.1" is the IP of the server
> openssl s_client -connect 127.0.0.1:52310
>
>
> 1) but how can i set it to require username/password? it would be a great 
> chat tool
> 2) how can i transfer files with openssl? [again: with username/password?]

you write some code or use a different existing program designed for
the purpose.



Re: Hard links details

2010-12-12 Thread Ted Unangst
On Sun, Dec 12, 2010 at 12:31 PM, Jean-Francois  wrote:
> May someone help me to understand how exactly hard links works ? To some
> extend U understood that a hard link is indistinguishable from the "original"
> yet it must be so that the datas are linked-back to all the hard links
> pointing on it, correct ?

hard link is a misnomer.  All files are hard linked at least once,
some just have more than one link.

All data about a file except name including size, owner, date, etc.,
are stored in the inode.  A directory is just a list of names and
inodes.  If two names have the same inode, you have a hard link.
Neither name is more original or important than the other.  After the
fact, they cannot be distinguished.

rm (and unlink) simply delete a name from a directory, not a file.
The file itself is automatically deleted when the number of names
pointing to it goes it zero.



[Was: OT - gmail alternatives] PGP web mail anyone?

2010-12-12 Thread Alexander Shulgin
On Thu, Dec 9, 2010 at 17:01, lh  wrote:
> Hi,
>
> what are the good available alternatives (security/privacy) for gmail
> you're using?

I know it might sound funny, but what do you guys think about
feasibility of massively automatic PGP web mail with all
encryption/decryption done through javascript in the client's browser?

I've being thinking about this possiblity for a while now and it looks
really promissing to me.

As a proof of concept, there's already some effort to provide
OpenPGP-compatible implementation in javascript, here:
http://www.hanewin.net/encrypt/

The idea is that all mail sent through web interface will be
automatically encrypted (if recepient public key is available; if
recipient is @ our secure mail, we pick the public key automatically)
and signed, all this done on the client side and then uploaded to the
server.

If user's inbox contains any encrypted messages they will be decrypted
on the client side, as naturally only the client has the private key.

I can go into some further details of my vision on this if anyone
shows interest in it.

--
Cheers,
Alex



Re: [Was: OT - gmail alternatives] PGP web mail anyone?

2010-12-12 Thread Ingo Schwarze
> what do you guys think

Personally, ...

> web mail

... i consider that a contradiction, and stupid one.



Re: [Was: OT - gmail alternatives] PGP web mail anyone?

2010-12-12 Thread Ted Unangst
On Sun, Dec 12, 2010 at 1:16 PM, Alexander Shulgin
 wrote:
> I know it might sound funny, but what do you guys think about
> feasibility of massively automatic PGP web mail with all
> encryption/decryption done through javascript in the client's browser?

At some point you're going to realize that the javascript that
decrypts your mail has to come from someplace.



Re: [Was: OT - gmail alternatives] PGP web mail anyone?

2010-12-12 Thread Alexander Shulgin
On Sun, Dec 12, 2010 at 20:32, Ted Unangst  wrote:
> On Sun, Dec 12, 2010 at 1:16 PM, Alexander Shulgin
>  wrote:
>> I know it might sound funny, but what do you guys think about
>> feasibility of massively automatic PGP web mail with all
>> encryption/decryption done through javascript in the client's browser?
>
> At some point you're going to realize that the javascript that
> decrypts your mail has to come from someplace.

Ah, valid claim, thanks.  This part definitely needs re-thinking :)

As far as I understand, SSL can only guarantee you that javascript
came from the site you'd expect it come from, but there's nothing that
will stop the site admin/hijacker (if any) to alter the script in some
clever way.

At this point it boils down again to the privately owned server.

--
Alex



Strange behavior from poll() when interrupted by signal

2010-12-12 Thread Yarin
Hello,

As the documentation explains, when poll() is interrupted by a signal, it 
should return -1/EINTR.
However, I'm getting a return indicating that all of the polling descriptors 
are ready, but when I check their flags out, none of them are
ready. (Note that the same code behaves as expected on Linux)

This is on the Generic 4.7 release kernel.

Here's a snippet of code that I wrote to deal smoothly this behavior: 
(specifically, the last line)


   pollfd wait_fd[2];
   wait_fd[0].fd = sock_fd;
   wait_fd[0].events = POLLOUT;
   wait_fd[1].fd = abort_fd;
   wait_fd[1].events = POLLIN;
   int rfds;
   do
  rfds = poll(wait_fd, 2, NULL);
   while((rfds < 0 && errno == EINTR) || (rfds > 0 && !wait_fd[0].revents && 
!wait_fd[1].revents));


The thing is, I have no idea if this this is a feature or bug, or what. :-P

Thanks for any input,

Yarin



Re: Freeze with Western Digital Caviar Green HDD

2010-12-12 Thread David Vasek

On Fri, 10 Dec 2010, Nick Holland wrote:


Me?  I usually buy whatever is cheap and on sale.


Some manufacturers have the advantage of providing good documentation for 
their drives, some others do not have any at all.


Regards,
David



Re: Strange behavior from poll() when interrupted by signal

2010-12-12 Thread Remco
Yarin wrote:

> Hello,
> 
> As the documentation explains, when poll() is interrupted by a signal, it
> should return -1/EINTR. However, I'm getting a return indicating that all
> of the polling descriptors are ready, but when I check their flags out,
> none of them are ready. (Note that the same code behaves as expected on
> Linux)
> 
>   rfds = poll(wait_fd, 2, NULL);

What does that NULL do ?



Re: BitCoin on OpenBSD

2010-12-12 Thread patsy
On Sat, Dec 11, 2010 at 02:28:53PM +0100, Cato Auestad wrote:
> Is anyone working on a port for it?

It requires wxWidgets 2.9.0, the version in ports is 2.8.11 (it says not to 
even try with 2.8).

Patsy



Re: BitCoin on OpenBSD

2010-12-12 Thread Cato Auestad
On Sunday 12 December 2010 21:02:33 patsy wrote:
> On Sat, Dec 11, 2010 at 02:28:53PM +0100, Cato Auestad wrote:
> > Is anyone working on a port for it?
>
> It requires wxWidgets 2.9.0, the version in ports is 2.8.11 (it says
> not to even try with 2.8).

I know. 2.8.11 is the latest stable release of wxWidgets, while 2.9.1 is 
the latest development release. Not much point including a development 
release as a package, I guess.

Tried compiling 2.9.1 without alot of success. Sent some bugreport to 
their bugtracker.



-- 
|- Cato Auestad
|- bleakgadfly
|- 0x19ABF872
|- www.openbsd.org



Thinkpad X41 Tablet mic/headphone jacks

2010-12-12 Thread Anders Langworthy
Hello list,

The headphone and mic 3.5mm jacks on my Thinkpad X41 Tablet are
quirky.  I want to throw it all out there for reference to others, and
in case the quirks are actually bugs. I'm using a cheap analog
headset.

(I can record & play audio fine with the right mixerctl settings.
There isn't a "problem" here except odd behavior for some of the
knobs.)

I have to toggle the bluetooth softswitch (Fn+F5 on my laptop) the
first time in order to use the headphone jack.  Otherwise it just
outputs to speakers no matter the mixerctl settings or plug state.
Subsequent plug changes are detected ok.

The outputs.hp and outputs.hp.mute mixerctl settings have no effect on
the sound volume out the headset jack.  (Are they supposed to?)

The inputs.mic and inputs.mic.mute mixerctl settings have no
discernible effect on the sound volume/quality of a recorded sample
(Are they supposed to?).  A recording at inputs.mic=0/muted sounds the
same as one at inputs.mic=255/unmuted.  The two settings do however
affect the level of buzz/feedback I hear through the headphones from
the mic when they are plugged in (in the expected way--larger volume =
louder buzz; mute on silences the buzz).

The inputs.mic.preamp both increases the volume of the recorded audio
(significantly) and increases mic buzz, as expected.

The record.volume has an effect on recorded volume, but it is the
opposite of intuition (record.volume=0 causes the loudest recording;
record.volume=255 causes a recording so quiet it can barely be heard).
 The record.volume.mute does mute/unmute the mic as expected.

Cheers,
Anders.

dmesg:
OpenBSD 4.8-current (GENERIC) #429: Tue Oct 12 17:46:32 MDT 2010
dera...@i386.openbsd.org:/usr/src/sys/arch/i386/compile/GENERIC
cpu0: Intel(R) Pentium(R) M processor 1.60GHz ("GenuineIntel" 686-class) 599 MHz
cpu0: 
FPU,V86,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,TM,SBF,EST,TM2
real mem  = 1600614400 (1526MB)
avail mem = 1564430336 (1491MB)
mainbus0 at root
bios0 at mainbus0: AT/286+ BIOS, date 12/19/06, BIOS32 rev. 0 @
0xfd750, SMBIOS rev. 2.33 @ 0xe0010 (59 entries)
bios0: vendor IBM version "75ET60WW (2.06 )" date 12/19/2006
bios0: IBM 1866EG3
apm0 at bios0: Power Management spec V1.2
apm0: battery life expectancy 22%
apm0: AC off, battery charge high, estimated 0:35 hours
acpi at bios0 function 0x0 not configured
pcibios0 at bios0: rev 2.1 @ 0xfd6e0/0x920
pcibios0: PCI IRQ Routing Table rev 1.0 @ 0xfdec0/240 (13 entries)
pcibios0: PCI Interrupt Router at 000:31:0 ("Intel 82371FB ISA" rev 0x00)
pcibios0: PCI bus #5 is the last bus
bios0: ROM list: 0xc/0xf600! 0xcf800/0x1600 0xd1000/0x1000
0xdc000/0x4000! 0xe/0x1
cpu0 at mainbus0: (uniprocessor)
cpu0: Enhanced SpeedStep 599 MHz: speeds: 1600, 1500, 1400, 1300,
1200, 1100, 1000, 900, 800, 600 MHz
pci0 at mainbus0 bus 0: configuration mode 1 (bios)
mem address conflict 0x5f70/0x8
io address conflict 0x5800/0x8
io address conflict 0x5808/0x4
io address conflict 0x5810/0x8
io address conflict 0x580c/0x4
pchb0 at pci0 dev 0 function 0 "Intel 82915GM Host" rev 0x03
vga1 at pci0 dev 2 function 0 "Intel 82915GM Video" rev 0x03
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 0xc000, size 0x1000
inteldrm0 at vga1: no ifp : irq 11
drm0 at inteldrm0
"Intel 82915GM Video" rev 0x03 at pci0 dev 2 function 1 not configured
ppb0 at pci0 dev 28 function 0 "Intel 82801FB PCIE" rev 0x03: irq 11
pci1 at ppb0 bus 2
bge0 at pci1 dev 0 function 0 "Broadcom BCM5751M" rev 0x11, BCM5750 B1
(0x4101): irq 11, address 00:16:d3:28:a2:ca
brgphy0 at bge0 phy 1: BCM5750 10/100/1000baseT PHY, rev. 0
uhci0 at pci0 dev 29 function 0 "Intel 82801FB USB" rev 0x03: irq 11
uhci1 at pci0 dev 29 function 1 "Intel 82801FB USB" rev 0x03: irq 11
uhci2 at pci0 dev 29 function 2 "Intel 82801FB USB" rev 0x03: irq 11
uhci3 at pci0 dev 29 function 3 "Intel 82801FB USB" rev 0x03: irq 11
ehci0 at pci0 dev 29 function 7 "Intel 82801FB USB" rev 0x03: irq 11
usb0 at ehci0: USB revision 2.0
uhub0 at usb0 "Intel EHCI root hub" rev 2.00/1.00 addr 1
ppb1 at pci0 dev 30 function 0 "Intel 82801BAM Hub-to-PCI" rev 0xd3
pci2 at ppb1 bus 4
cbb0 at pci2 dev 0 function 0 "Ricoh 5C476 CardBus" rev 0x8d: irq 11
sdhc0 at pci2 dev 0 function 1 "Ricoh 5C822 SD/MMC" rev 0x13: irq 11
sdmmc0 at sdhc0
iwi0 at pci2 dev 2 function 0 "Intel PRO/Wireless 2915ABG" rev 0x05:
irq 11, address 00:16:6f:92:21:b5
cardslot0 at cbb0 slot 0 flags 0
cardbus0 at cardslot0: bus 5 device 0 cacheline 0x0, lattimer 0xb0
pcmcia0 at cardslot0
auich0 at pci0 dev 30 function 2 "Intel 82801FB AC97" rev 0x03: irq 5, ICH6 AC97
ac97: codec id 0x41445374 (Analog Devices AD1981B)
ac97: codec features headphone, 20 bit DAC, No 3D Stereo
audio0 at auich0
ichpcib0 at pci0 dev 31 function 0 "Intel 82801FBM LPC" rev 0x03: PM disabled
pciide0 at pci0 dev 31 function 2 "Intel 82801FBM SATA" rev 0x03: 

Quiere hacer publicidad por E-mail pero su servidor lo bloquea?

2010-12-12 Thread Agustina Walker
QUIERE HACER PUBLICIDAD POR E-MAIL PERO...
 
- SU SERVIDOR LO BLOQUEA?
- COMPRA BASES DE EMAILS QUE RESULTAN SER SOLO UN GASTO DE TIEMPO Y DINERO?
 
- PIERDE TIEMPO ENVIANDO SU PUBLICIDAD A DIRECCIONES DE EMAIL QUE NI SIQUIERA 
EXISTEN, O CREE ENVIAR EMAILS Y LOS MISMOS NO LLEGAN YA QUE SON FILTRADOS POR 
LOS ANTISPAM?
- GENERA MALHUMOR EN PERSONAS QUE NO DESEAN RECIBIR EMAILS PUBLICITARIOS, YA 
QUE DESCONOCE LAS TECNICAS PARA DICHA CLASE DE ENVIOS?
 
- NO TIENE LOS CONOCIMIENTOS NECESARIOS PARA REALIZAR ESTA TAREA, Y YA ESTA 
CANSADO DE PROBAR PROGRAMAS SIN NINGUN RESULTADO POSITIVO DE RESPUESTA?
- DESEA PUBLICITAR SU ACTIVIDAD PERO LA VERDAD, NO TIENE IDEA DE POR DONDE 
EMPEZAR?
 
SI RESPONDE A CUALQUIERA DE ESTOS PROBLEMAS, NOSOTROS SOMOS LA SOLUCION.
 
CONTAMOS CON UN EXCELENTE PACK A SOLO $ 200.-
 
DICHO PACK INCLUYE 10 MILLONES DE EMAILS ARGENTINOS SEGMENTADOS, TOTALMENTE 
VERIFICADOS Y ACTUALIZADOS Y TODO EL SOFT NECESARIO PARA ENVIOS MASIVOS, Y NO 
SOLO ESO, LO MAS IMPORTANTE, QUE UNA VEZ QUE COMPRA EL MATERIAL TENDRA UN 
CONTACTO DIRECTO CON NUESTROS ASESORES TECNICOS QUIENES LE DARAN TODA LA AYUDA 
NECESARIA PARA LA PUESTA EN MARCHA DE SU CAMPAQA PUBLICITARIA, LOGRANDO QUE 
ESTA SEA UN EXITO. MAS NO PUEDE PEDIR !!!
 
CONSULTAS Y/O PEDIDOS A:
pack.bases.inteligen...@gmail.com
 
MSN PARA CHAT:
soporte.tecnico.publicita...@hotmail.com
 
TIENE TODAS ESTAS FORMAS DE PAGO: PAGO FACIL - RAPI PAGO - BAPRO PAGOS
PROMOCION VALIDA SOLO PARA ARGENTINA - OTROS PAISES CONSULTE
ABONA Y DESCARGA EN SEGUNDOS TODO EL MATERIAL EN TU PC.
NO SE LO PIERDA...



Re: [Was: OT - gmail alternatives] PGP web mail anyone?

2010-12-12 Thread Marti Martinez
On Sun, Dec 12, 2010 at 11:32 AM, Ted Unangst  wrote:
> On Sun, Dec 12, 2010 at 1:16 PM, Alexander Shulgin
>  wrote:
>> I know it might sound funny, but what do you guys think about
>> feasibility of massively automatic PGP web mail with all
>> encryption/decryption done through javascript in the client's browser?
>
> At some point you're going to realize that the javascript that
> decrypts your mail has to come from someplace.
>
>

A better alternative would be a PGP browser addon, which I think
already exists (but I'm too lazy to check on). Granted, you still have
to trust your browser/addon maker to a certain extent, but presumably
if you're looking for web based mail encryption, you already do.



Re: [Was: OT - gmail alternatives] PGP web mail anyone?

2010-12-12 Thread Joel Wiramu Pauling
On 13 December 2010 16:13, Marti Martinez  wrote:
> On Sun, Dec 12, 2010 at 11:32 AM, Ted Unangst  wrote:
>> On Sun, Dec 12, 2010 at 1:16 PM, Alexander Shulgin
>>  wrote:
>>> I know it might sound funny, but what do you guys think about
>>> feasibility of massively automatic PGP web mail with all
>>> encryption/decryption done through javascript in the client's browser?
>>
>> At some point you're going to realize that the javascript that
>> decrypts your mail has to come from someplace.
>>
>>
>
> A better alternative would be a PGP browser addon, which I think
> already exists (but I'm too lazy to check on).

Certainly does: firegpg



Re: [Was: OT - gmail alternatives] PGP web mail anyone?

2010-12-12 Thread Travis King
On Mon, 13 Dec 2010 16:57:52 +1300
Joel Wiramu Pauling  wrote:
> On 13 December 2010 16:13, Marti Martinez 
> wrote:
> > On Sun, Dec 12, 2010 at 11:32 AM, Ted Unangst
> >  wrote:
> >>
> >> At some point you're going to realize that the javascript that
> >> decrypts your mail has to come from someplace.
> >
> > A better alternative would be a PGP browser addon, which I think
> > already exists (but I'm too lazy to check on).
> 
> Certainly does: firegpg

firegpg is the only way I can get friends and family to communicate
with me securely. I don't even know what the interface looks like, but
it does work (apparently).

-- 
end



Re: BitCoin on OpenBSD

2010-12-12 Thread Alexander Shulgin
On Sun, Dec 12, 2010 at 22:02, patsy  wrote:
> On Sat, Dec 11, 2010 at 02:28:53PM +0100, Cato Auestad wrote:
>> Is anyone working on a port for it?
>
> It requires wxWidgets 2.9.0, the version in ports is 2.8.11 (it says not to 
> even try with 2.8).

I guess it should still be possible to compile the daemon and console
ui, isn't it?



Re: easy snapshot updates

2010-12-12 Thread Amit Kulkarni
Thank you thank you thank you!

I am sure thousands of people out there would be grateful for this little
gem.

On Sun, Dec 12, 2010 at 3:49 AM, Ted Unangst  wrote:
> My home internet connection, for various reasons, tends to alternate
> between the two quality levels of "blows balls" and "blows giant
> balls".  This makes downloading and installing new snapshots an
> exercise in frustration.  I noticed that binary patches, as made by
> bsdiff (thank you Colin Percival), could reduce the download time
> significantly, if only there was patch generating machine in the sky
> (sorry, cloud).  So I made one.  Link below.
>
> I've been using this with i386 for a while now.  At first I more or
> less hand generated the updates, but now it's all automatic.  Even
> including amd64.
>
> Basically, it's a perl script that downloads a database of patches and
> applies them.  There's a little bit of labor involved in setting it
> up, but after that, you can run the script whenever you like and it
> will take care of business.  I generate snap diffs up to every day,
> but the script will download batches if you care to only update on
> weekends or something.
>
> The only real requirement (besides a few packages) is that you start
> off running a snapshot I have diffs for.  This goes back about a week
> for i386, and about 2 days for amd64.  And you need to have all the
> sets installed (including X), or there will be bitching and whining.
> Please pay attention to the part about creating
> /var/db/bluesnapper/etc and xetc directories.
>
> Note that these are not official, and about the only promise you'll
> get that I'm not secretly inserting trojans into everything is that
> it's not worth my time to do so.
>
> Anyway, more detailed instructions and a link to the actual script are
> below.  I think it works.
>
> http://www.tedunangst.com/snapper.html



Última Presentación: Taller de Finanzas para NO Financieros, México D.F.

2010-12-12 Thread LIc. Maria Robledo
[IMAGE]

Promociones Especiales para grupos!

Capacitacisn Impartida por: L.C.P. Gustavo Rangel L.

Pms Capacitacisn Efectiva de Mixico presenta:

Taller de Finanzas para NO Financieros.

Experto Consultor L.C.P. Gustavo Rangel L.

Empresa Registrada ante la STPS Reg. COLG640205CP30005

Mayores informes responda este correo electrsnico con los siguientes
datos.
Empresa:
Nombre:
Telifono:
Email:
Nzmero de Interesados:
Y en breve le haremos llegar la informacisn completa del evento. 
O bien comunmquense a nuestros telifonos  un ejecutivo con gusto le
atendera
Tels. (33) 8851-2365, (33)8851-2741.

Copyright (C) 2010, PMS Capacitacisn Efectiva de Mixico  S.C. Derechos
Reservados. PMS de Mixico, El logo de PMS de Mixico son marcas
registradas. ADVERTENCIA PMS de Mixico no cuenta con alianzas
estratigicas de ningzn tipo dentro de la Republica Mexicana. NO SE DEJE
ENGAQAR - DIGA NO A LA PIRATERIA. Todos los logotipos, marcas comerciales
e imagenes son propiedad de sus respectivas corporaciones y se utilizan
con fines informativos solamente.

Este Mensaje ha sido enviado a misc@openbsd.org  como usuario de Pms de
Mixico o bien un usuario le refiris para recibir este boletmn.
Como usuario de Pms de Mixico, en este acto autoriza de manera expresa
que Pms de Mixico le puede contactar vma correo electrsnico u otros
medios.
Si usted ha recibido este mensaje por error, haga caso omiso de el y
reporte su cuenta respondiendo este correo con el subject BAJAfinanzas

Unsubscribe to this mailing list, reply a blank message with the subject
UNSUBSCRIBE BAJAfinanzas
Tenga en cuenta que la gestisn de nuestras bases de datos es de suma
importancia y no es intencisn de la empresa la inconformidad del
receptor.

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
finanzas.jpg]