LSI Megaraid 8708EM2

2011-10-28 Thread Nils Anspach
Hello list,

I'm in need of a new RAID controller. Has anyone used the 

LSI Megaraid 8708EM2 

with success under OpenBSD and can share some words on his/her
experience?

According to the CVS logs this controller should be working since
it uses the SAS1078-Raid-on-chip which has been supported for some
years.  However, having some comments on this specific model would
be helpful before digging into the pocket.

Thanks
Nils



sed behavior

2011-06-12 Thread Nils Anspach
Hello list,

I have an issue with sed. Why does

echo 'ab' | sed -E 's/a|$/x/g'

give 'x' whereas

echo 'ab' | perl -e 'my $var = ; $var =~ s/a|$/x/g; print $var'

and GNU's sed yield 'xbx' (which I expected to be the result in the
first case)?

Thanks
Nils