We invite you to work in your spare time for $ 100 per hour

2012-05-21 Thread kwm
We invite you to work in the remote assistant position. This work takes 2-3 hours per week and requires absolutely no investment. The essence of this work for incoming client requests in your city. The starting salary is about 2500 EUR per month + bonuses. You get paid your salary every 2 weeks

USB over IP

2012-05-21 Thread Daniel Braniss
I need to control some lab equipment with several usb based controllers (mostly serial) and was wondering if it can be done over IP, there is such a thing called usbip, but couldn't find what 'server' is needed. all the boxes I found are not cheep, but worse, only provide binaries for windows, or

Re: USB over IP

2012-05-21 Thread Uffe Jakobsen
Hi, On 2012-05-21 12:46, Daniel Braniss wrote: I need to control some lab equipment with several usb based controllers (mostly serial) and was wondering if it can be done over IP, there is such a thing called usbip, but couldn't find what 'server' is needed. all the boxes I found are not

Re: USB over IP

2012-05-21 Thread Daniel Braniss
Hi, On 2012-05-21 12:46, Daniel Braniss wrote: I need to control some lab equipment with several usb based controllers (mostly serial) and was wondering if it can be done over IP, there is such a thing called usbip, but couldn't find what 'server' is needed. all the boxes I found

Re: USB over IP

2012-05-21 Thread Daniel Grech
something similar is being done in the latest versions of qemu. There is a usb redirection module which is in the form of a client/server architecture where USB packets are sent over IP. These two modules communicate with eachother through a protocol developed specifically for the redirection of

Re: USB over IP

2012-05-21 Thread Daniel Braniss
--047d7b10ce794d5a1004c08b261e Content-Type: text/plain; charset=ISO-8859-1 something similar is being done in the latest versions of qemu. There is a usb redirection module which is in the form of a client/server architecture where USB packets are sent over IP. These two modules

PID/UID namespaces

2012-05-21 Thread David Windsor
Hi, While doing some research on FreeBSD jails, I came across an item in the jails' TODO: - be able to have a separate PID space for it - be able to specify a separate UID space for it In other projects, these goals have been accomplished using namespaces. I tried to see if PID/UID

Re: ARM + CACHE_LINE_SIZE + DMA

2012-05-21 Thread Ian Lepore
On Fri, 2012-05-18 at 16:13 +0200, Svatopluk Kraus wrote: On Thu, May 17, 2012 at 10:07 PM, Ian Lepore free...@damnhippie.dyndns.org wrote: On Thu, 2012-05-17 at 15:20 +0200, Svatopluk Kraus wrote: Hi, I'm working on DMA bus implementation for ARM11mpcore platform. I've looked at

Re: Need to revert behavior of OpenSSH to the old key order ...

2012-05-21 Thread Jason Usher
Folks, Is there a better list for this - perhaps freebsd-security ? I originally posted to -hackers because it *appears* that reverting rsa, then dsa to dsa, then rsa was a simple change to myproposal.h, but since that doesn't work, and since I haven't gotten any replies here ... Thoughts ?

Re: Please help me diagnose this crazy VMWare/FreeBSD 8.x crash

2012-05-21 Thread Mark Felder
OK guys I've been talking with another user who can recreate this crash and the last bit of information we've learned seems to be leaning towards interrupts/IRQ issues like someone (bz@ perhaps?) suggested. I'm still trying to test this myself, but the other user was able to recreate my

Something wrong with curs_threads(3X) ?

2012-05-21 Thread Yanhui Shen
Hi, In curs_threads(3X), at the beginning of the manual: typedef int (*NCURSES_WINDOW_CB)(WINDOW *, void *); typedef int (*NCURSES_SCREEN_CB)(SCREEN *, void *); int set_escdelay(int size); int set_tabsize(int size); int use_screen(SCREEN *scr,

Re: Please help me diagnose this crazy VMWare/FreeBSD 8.x crash

2012-05-21 Thread Andrew Boyer
On May 21, 2012, at 12:41 PM, Mark Felder wrote: OK guys I've been talking with another user who can recreate this crash and the last bit of information we've learned seems to be leaning towards interrupts/IRQ issues like someone (bz@ perhaps?) suggested. I'm still trying to test this

Re: Need to revert behavior of OpenSSH to the old key order ...

2012-05-21 Thread Jason Hellenthal
On Mon, May 21, 2012 at 09:18:32AM -0700, Jason Usher wrote: Folks, Is there a better list for this - perhaps freebsd-security ? I originally posted to -hackers because it *appears* that reverting rsa, then dsa to dsa, then rsa was a simple change to myproposal.h, but since that

We invite you to a remote job $ 100 per hour helping sick people

2012-05-21 Thread hackers
We invite you to work in the remote assistant position. This work takes 2-3 hours per week and requires absolutely no investment. The essence of this work for incoming client requests in your city. The starting salary is about 2500 EUR per month + bonuses. You get paid your salary every 2 weeks

Re: Please help me diagnose this crazy VMWare/FreeBSD 8.x crash

2012-05-21 Thread Mark Felder
On Mon, 21 May 2012 12:01:19 -0500, Andrew Boyer abo...@averesystems.com wrote: You could try switching mpt to MSI. MSI interrupts are never shared. Add this to /boot/device.hints: hint.mpt.0.msi_enable=1 Currently implementing this on the known crashy servers. I've been looking

Re: ARM + CACHE_LINE_SIZE + DMA

2012-05-21 Thread Daan Vreeken
Hi Ian (and list), just commenting on the mbuf part : On Monday 21 May 2012 18:20:21 Ian Lepore wrote: On Fri, 2012-05-18 at 16:13 +0200, Svatopluk Kraus wrote: On Thu, May 17, 2012 at 10:07 PM, Ian Lepore free...@damnhippie.dyndns.org wrote: On Thu, 2012-05-17 at 15:20 +0200, Svatopluk

Re: Need to revert behavior of OpenSSH to the old key order ...

2012-05-21 Thread Garance A Drosehn
I may have missed some emails in this thread, but did you try this suggestion: But have you tried it in this order ? HostKey /usr/local/etc/ssh/ssh_host_key HostKey /usr/local/etc/ssh/ssh_host_dsa_key HostKey /usr/local/etc/ssh/ssh_host_rsa_key HostKey

Re: Review of changes for getnetgrent.c

2012-05-21 Thread Guy Helmer
On May 18, 2012, at 6:09 PM, Xin Li wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 05/18/12 14:58, Guy Helmer wrote: To close PR bin/83340, I have this change worked up to resolve memory allocation failure handling and avoid creating bad entries in the grp list due to memory

Re: PID/UID namespaces

2012-05-21 Thread Julian Elischer
On 5/21/12 6:47 AM, David Windsor wrote: Hi, While doing some research on FreeBSD jails, I came across an item in the jails' TODO: - be able to have a separate PID space for it - be able to specify a separate UID space for it In other projects, these goals have been accomplished

Re: PID/UID namespaces

2012-05-21 Thread Chris Rees
On 21 May 2012 14:47, David Windsor dwind...@gmail.com wrote: Hi, While doing some research on FreeBSD jails, I came across an item in the jails' TODO:   - be able to have a separate PID space for it   - be able to specify a separate UID space for it In other projects, these goals have

Re: ARM + CACHE_LINE_SIZE + DMA

2012-05-21 Thread Mark Tinguely
On Mon, May 21, 2012 at 11:20 AM, Ian Lepore free...@damnhippie.dyndns.org wrote: On Fri, 2012-05-18 at 16:13 +0200, Svatopluk Kraus wrote: On Thu, May 17, 2012 at 10:07 PM, Ian Lepore free...@damnhippie.dyndns.org wrote: On Thu, 2012-05-17 at 15:20 +0200, Svatopluk Kraus wrote: Hi, I'm

Re: Review of changes for getnetgrent.c

2012-05-21 Thread Xin Li
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 05/21/12 12:02, Guy Helmer wrote: On May 18, 2012, at 6:09 PM, Xin Li wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 05/18/12 14:58, Guy Helmer wrote: To close PR bin/83340, I have this change worked up to resolve memory

Re: PID/UID namespaces

2012-05-21 Thread Poul-Henning Kamp
In message cadlo838vov_xi+a_wjd3h7e_d4qi+odjynhpoim5bbzawnx...@mail.gmail.com , Chris Rees writes: It would certainly prevent many common problems when setting up jails; UID collision is much more common than you'd think, given that the default UIDs remain the same. Uhm... jails have separate

Re: PID/UID namespaces

2012-05-21 Thread Chris Rees
On 21 May 2012 20:57, Poul-Henning Kamp p...@phk.freebsd.dk wrote: In message cadlo838vov_xi+a_wjd3h7e_d4qi+odjynhpoim5bbzawnx...@mail.gmail.com , Chris Rees writes: It would certainly prevent many common problems when setting up jails; UID collision is much more common than you'd think,

Re: Review of changes for getnetgrent.c

2012-05-21 Thread Guy Helmer
On May 21, 2012, at 2:29 PM, Xin Li wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 05/21/12 12:02, Guy Helmer wrote: On May 18, 2012, at 6:09 PM, Xin Li wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 05/18/12 14:58, Guy Helmer wrote: To close PR bin/83340, I

Re: Need to revert behavior of OpenSSH to the old key order ...

2012-05-21 Thread Jason Usher
--- On Mon, 5/21/12, Garance A Drosehn g...@freebsd.org wrote:    But have you tried it in this order ?    HostKey /usr/local/etc/ssh/ssh_host_key    HostKey /usr/local/etc/ssh/ssh_host_dsa_key    HostKey /usr/local/etc/ssh/ssh_host_rsa_key    HostKey

Re: ARM + CACHE_LINE_SIZE + DMA

2012-05-21 Thread Alexander Kabaev
On Thu, 17 May 2012 11:01:34 -0500 Mark Tinguely marktingu...@gmail.com wrote: On Thu, May 17, 2012 at 8:20 AM, Svatopluk Kraus onw...@gmail.com wrote: Hi, I'm working on DMA bus implementation for ARM11mpcore platform. I've looked at implementation in ARM tree, but IMHO it only works

Re: Need to revert behavior of OpenSSH to the old key order ...

2012-05-21 Thread Jason Hellenthal
On Mon, May 21, 2012 at 02:26:27PM -0700, Jason Usher wrote: --- On Mon, 5/21/12, Garance A Drosehn g...@freebsd.org wrote: ???But have you tried it in this order ? ???HostKey /usr/local/etc/ssh/ssh_host_key ???HostKey /usr/local/etc/ssh/ssh_host_dsa_key ???HostKey