Re: Working on suspend/resume

2013-05-29 Thread Jiri B
What is general way how to help debugging hanged OS after resume?
This happends all the time on my Lenovo T500 if X is running. It
seems to work better if I'm in virtual terminal.

jirib



Re: Is it possible to do with pf?

2013-05-29 Thread Jiri B
On Tue, May 28, 2013 at 02:11:58PM -0500, Mark Felder wrote:
 Yes, it's in the man page for pf.conf. Search for user.
 

On limitation, you cannot redirect outgoing traffic being
from the host itself back to the host itself :(

Example: if you want to redirect all traffic of user 'foo'
via Tor's TransPort, you are out of luck.

j.



Re: From the military propaganda department

2013-05-29 Thread Christiano F. Haesbaert
I wonder why you're all surprised with this duder, after all

http://cdn.memegenerator.net/instances/400x/38221244.jpg



Fujitsu Siemens Amilo Pro V2030

2013-05-29 Thread Jan Lambertz
Hi,

i got Hands on an old Amilo Pro V2030. Hardware seems working. Celeron
1,4GHz, 40 gig HD, 1024 Ram. Tried to install 5.3 with built in disc drive.
Immediately hangs at boot with entry Point 
I found some topics about ACPI but there is no BIOS Option for deactivating
this.
boot -c stops at same point. Any pointers ?


Jan



You people just don't understand

2013-05-29 Thread Justin Lindberg
I am mainly a USER of OpenBSD.  Not particularly interested in developing
I just hate it when shitty code starts showing up, drug money appears in my
bank account, ladies and gentlemen start hanging around all the wrong places,
and I can no longer get an undistrurbed night's sleep anywhere on the face of
the earth.

I do financial analysis, which sometimes involves some pretty deep math to
figure out where my clients' money is disappearing to.

Come on now, is this a secure operating system, or a gang of cat burglars,
identity thieves, sex offenders, and drug addicts?  When you start digging into
my bank account, and hacking my clients' brokerage accounts, without
permission and without a warrant from lawful authorities, YOU WILL
BE SHOT TO DEATH.

Yes, I know.  I made a death threat on a public mailing list.  I used to do 
payroll.
And guess what.  If you mind your own business, you don't have to worry about
any death threats from me.


Just like anyone else, when I get too much spam in my Yahoo account, I get
another one.  Same with my bank account.  When too many fraudulent
transactions appear, I close it and open a new one with a different number.



Re: current/macppc on Mac Mini

2013-05-29 Thread Martin Pieuchot
On 23/05/13(Thu) 17:00, Miod Vallat wrote:
  Were you thinking of something like that? It works for me (c) tm, with
  my PowerBooks (disk@0/wd0), I haven't tried NFS boot yet.
 
 Not exactly, but your version is probably better than what I was
 thinking of. However, it will not allow for root on the second wd disk
 of a controller, or on any secondary pciide controller.
 
 Borrowing the sparc64 logic is a larger work but less error-prone.

Indeed it is, but until someone does it, here's a slightly improved
version that adds a check for the drive number.

Jan does is still work for you?

Index: macppc//autoconf.c
===
RCS file: /cvs/src/sys/arch/macppc/macppc/autoconf.c,v
retrieving revision 1.39
diff -u -p -r1.39 autoconf.c
--- macppc//autoconf.c  11 Nov 2010 17:58:21 -  1.39
+++ macppc//autoconf.c  29 May 2013 23:17:42 -
@@ -62,13 +62,12 @@
 
 #include sys/disk.h
 #include scsi/scsi_all.h
-#include scsi/scsi_disk.h
 #include scsi/scsiconf.h
-#include scsi/sdvar.h
+#include dev/ata/atavar.h
 
 void   dumpconf(void);
 static struct devmap *findtype(char **);
-void   makebootdev(char *cp);
+void   parseofwbp(char *);
 intgetpno(char **);
 
 /*
@@ -79,6 +78,9 @@ int   getpno(char **);
 intcold = 1;   /* if 1, still working on cold-start */
 char   bootdev[16];/* to hold boot dev name */
 struct device *bootdv = NULL;
+enum devclass bootdev_class = DV_DULL;
+intbootdev_type = 0;
+intbootdev_unit = 0;
 
 struct dumpmem dumpmem[VM_PHYSSEG_MAX];
 u_int ndumpmem;
@@ -165,9 +167,9 @@ findtype(char **s)
  *  '/ht@0,f200/pci@2/bcom5704@4/bsd'
  */
 void
-makebootdev(char *bp)
+parseofwbp(char *bp)
 {
-   int unit, ptype;
+   int ptype;
char   *dev, *cp;
struct devmap *dp;
 
@@ -184,6 +186,8 @@ makebootdev(char *bp)
} while((dp-type  T_IFACE) == 0);
 
if (dp-att  dp-type == T_IFACE) {
+   bootdev_class = DV_IFNET;
+   bootdev_type = dp-type;
strlcpy(bootdev, dp-dev, sizeof bootdev);
return;
}
@@ -193,24 +197,9 @@ makebootdev(char *bp)
ptype = dp-type;
dp = findtype(cp);
if (dp-att  dp-type == T_DISK) {
-   unit = getpno(cp);
-   if (ptype == T_SCSI) {
-   struct device *dv;
-   struct sd_softc *sd;
-
-   TAILQ_FOREACH(dv, alldevs, dv_list) {
-   if (dv-dv_class != DV_DISK ||
-   strcmp(dv-dv_cfdata-cf_driver-cd_name, 
sd))
-   continue;
-   sd = (struct sd_softc *)dv;
-   if (sd-sc_link-target != unit)
-   continue;
-   snprintf(bootdev, sizeof bootdev,
-   %s%c, dv-dv_xname, 'a');
-   return;
-   }
-   }
-   snprintf(bootdev, sizeof bootdev, %s%d%c, dev, unit, 'a');
+   bootdev_class = DV_DISK;
+   bootdev_type = ptype;
+   bootdev_unit = getpno(cp);
return;
}
printf(Warning: boot device unrecognized: %s\n, bp);
@@ -239,25 +228,43 @@ getpno(char **cp)
 void
 device_register(struct device *dev, void *aux)
 {
+   const char *drvrname = dev-dv_cfdata-cf_driver-cd_name;
+   const char *name = dev-dv_xname;
+
+   if (bootdv != NULL || dev-dv_class != bootdev_class)
+   return;
+
+   switch (bootdev_type) {
+   case T_SCSI:
+   if (strcmp(drvrname, sd) == 0) {
+   struct scsi_attach_args *sa = aux;
+
+   if (sa-sa_sc_link-target == bootdev_unit)
+   bootdv = dev;
+   }
+   case T_IDE:
+   if (strcmp(drvrname, wd) == 0) {
+   struct ata_atapi_attach *aa = aux;
+
+   if (aa-aa_drv_data-drive == bootdev_unit)
+   bootdv = dev;
+   }
+   break;
+   case T_IFACE:
+   if (strcmp(name, bootdev) == 0)
+   bootdv = dev;
+   break;
+   default:
+   break;
+   }
 }
 
-/*
- * Now that we are fully operational, we can checksum the
- * disks, and using some heuristics, hopefully are able to
- * always determine the correct root disk.
- */
 void
 diskconf(void)
 {
-   dev_t temp;
-   int part = 0;
-
printf(bootpath: %s\n, bootpath);
-   makebootdev(bootpath);
 
-   /* Lookup boot device from boot if not set by configuration */
-   bootdv = parsedisk(bootdev, strlen(bootdev), 0, temp);
-   setroot(bootdv, part, RB_USERREQ);
+   setroot(bootdv, 0, RB_USERREQ);
dumpconf();
 }
 
Index: 

Hackathon

2013-05-29 Thread Scott McEachern
As a person who was born and raised in Toronto, and currently lives a 
bit outside of the city, I wanted to extend a warm welcome to our 
OpenBSD hackathon guests!


I hope the major storm that happened last night, which caused some 
flooding complicating commutes, didn't inconvenience you too badly.


Please enjoy the city, and if you happen to read any local media, have a 
laugh.  We currently have a handful of local and provincial scandals 
unfolding, which if it weren't for the costs involved, would be almost 
as entertaining as the most recent troll on @misc. (Please don't feed 
the trolls.)


Have fun, and thanks for the work you're putting in.  Just out of 
curiosity, what is the focus of this hackathon?  I don't know what 
t2k13 means.


Cheers to all involved,

--
Scott McEachern

https://www.blackstaff.ca

Those who would give up essential liberty to purchase a little temporary safety 
deserve neither liberty nor safety. -- Benjamin Franklin



Re: Hackathon

2013-05-29 Thread Kenneth R Westerback
On Wed, May 29, 2013 at 07:54:39PM -0400, Scott McEachern wrote:
 As a person who was born and raised in Toronto, and currently lives
 a bit outside of the city, I wanted to extend a warm welcome to our
 OpenBSD hackathon guests!
 
 I hope the major storm that happened last night, which caused some
 flooding complicating commutes, didn't inconvenience you too badly.
 
 Please enjoy the city, and if you happen to read any local media,
 have a laugh.  We currently have a handful of local and provincial
 scandals unfolding, which if it weren't for the costs involved,
 would be almost as entertaining as the most recent troll on @misc.
 (Please don't feed the trolls.)
 
 Have fun, and thanks for the work you're putting in.  Just out of
 curiosity, what is the focus of this hackathon?  I don't know what
 t2k13 means.

t == toronto

2k == 2000

13 == 13

 Ken

 
 Cheers to all involved,
 
 -- 
 Scott McEachern
 
 https://www.blackstaff.ca
 
 Those who would give up essential liberty to purchase a little temporary 
 safety deserve neither liberty nor safety. -- Benjamin Franklin



Re: Hackathon

2013-05-29 Thread Philip Guenther
On Wed, May 29, 2013 at 5:22 PM, Kenneth R Westerback
kwesterb...@rogers.com wrote:
 13 == 13

To clarify:
   13 == rot13(rot13(13))


Philip



Re: Hackathon

2013-05-29 Thread Scott McEachern

On 05/29/13 20:22, Kenneth R Westerback wrote:

On Wed, May 29, 2013 at 07:54:39PM -0400, Scott McEachern wrote:

Have fun, and thanks for the work you're putting in.  Just out of
curiosity, what is the focus of this hackathon?  I don't know what
t2k13 means.

t == toronto

2k == 2000

13 == 13



Sorry for not being clear.  I understood the 2k13 part, it was the t 
I was wondering about.  I feel a little dense for not putting the t 
with Toronto, which was also pointed out to me privately. Suddenly I 
feel like Homer Simpson. :)


So I guess it's a general hackathon then?  Please, no cute retorts or 
else I'll have to drive down there and buy a round.  And I *really* 
dislike driving back to the city.


--
Scott McEachern

https://www.blackstaff.ca

Those who would give up essential liberty to purchase a little temporary safety 
deserve neither liberty nor safety. -- Benjamin Franklin



Re: Hackathon

2013-05-29 Thread Kenneth R Westerback
On Wed, May 29, 2013 at 08:35:12PM -0400, Scott McEachern wrote:
 On 05/29/13 20:22, Kenneth R Westerback wrote:
 On Wed, May 29, 2013 at 07:54:39PM -0400, Scott McEachern wrote:
 Have fun, and thanks for the work you're putting in.  Just out of
 curiosity, what is the focus of this hackathon?  I don't know what
 t2k13 means.
 t == toronto
 
 2k == 2000
 
 13 == 13
 
 
 Sorry for not being clear.  I understood the 2k13 part, it was the
 t I was wondering about.  I feel a little dense for not putting
 the t with Toronto, which was also pointed out to me privately.
 Suddenly I feel like Homer Simpson. :)

It is a general. Doh, and I could have had a free beer.

 Ken

 
 So I guess it's a general hackathon then?  Please, no cute retorts
 or else I'll have to drive down there and buy a round.  And I
 *really* dislike driving back to the city.
 
 -- 
 Scott McEachern
 
 https://www.blackstaff.ca
 
 Those who would give up essential liberty to purchase a little temporary 
 safety deserve neither liberty nor safety. -- Benjamin Franklin



Fw: IC3 Complaint: I1305292157456181

2013-05-29 Thread Justin Lindberg
Do you people understand long sentences at the federal penitentiary?

With a fat blonde cellmate who never shuts her big mouth?

Because you can just keep your computer masturbathons, drugs, alcohol, and

forced and unwanted sex away from me.  I do not associate with identity thieves,
burglars, sex offenders, or people who hack into other people's computers where
they don't belong.  I don't like the johns that hang out with you people, 
either.

- Forwarded Message -
From: no-re...@ic3.gov no-re...@ic3.gov
To: zx006...@yahoo.com
Cc: 
Sent: Wednesday, May 29, 2013 6:58 PM
Subject: IC3 Complaint: I1305292157456181

Thank you for filing a complaint with the Internet Crime Complaint Center (IC3).

Your complaint has been successfully submitted. Please retain the following 
information for future contacts with the IC3: 

Complaint Id: 
Password: 

If you wish to view/download your complaint or have any additional information 
to provide to the IC3, please use the following link and login with the above 
complaint id and password.
http://complaint.ic3.gov/update

The IC3's mission is to serve as a vehicle to receive, develop, and refer 
criminal complaints regarding the rapidly expanding arena of cyber crime. The 
IC3 aims to give the victims of cyber crime a convenient and easy-to-use 
reporting mechanism. 

Complaint Status
The IC3 receives thousands of complaints each month and does not have the 
resources to respond to inquiries regarding the status of complaints. It is the 
IC3's intention to review all complaints and refer them to law enforcement and 
regulatory agencies having jurisdiction. Ultimately, investigation and 
prosecution are at the discretion of the receiving agencies.

Evidence
It is important that you maintain any evidence you may have relating to your 
complaint. Evidence may include canceled checks, credit card receipts, phone 
bills, mailing envelopes, mail receipts, a printed copy of a website, copies of 
emails, or similar items. Please keep the items in a safe location, in case you 
are requested to provide them for investigative purposes.


Additionally, to learn more about Internet schemes and ways to protect 
yourself, please visit www.lookstoogoodtobetrue.com.



Re: Hackathon

2013-05-29 Thread Patrick Mc(avery

Hi Everyone

I just joined the list 10 days ago or so. Where and when in Toronto will 
it be held?


My family situation is quite urgent and it's hard to be away from home 
for more then 30 minutes but it would be nice to be involved in some 
way, I am 30 minutes north of the city.


-Patrick



Re: Hackathon

2013-05-29 Thread Philip Guenther
On Wed, May 29, 2013 at 7:19 PM, Patrick Mc(avery
spell_gooder_...@spellingbeewinnars.org wrote:
 I just joined the list 10 days ago or so. Where and when in Toronto will it
 be held?

There may be some confusion about what is meant by hackathon.  Read
http://www.openbsd.org/hackathons.html

for background.


Philip Guenther