bioctl -cC -l /dev/sd1a softraid0 for encryption two disks RAID1 mirrored

2020-10-19 Thread Martin
Hi misc, I'd like to have two encrypted 1TB disks in RAID 1 mirror mode (no hardware RAID installed). Is it possible to use bioctl for that purpose or do I need to use HW RAID and encrypt mirrored disks with bioctl -cC -l /dev/sd1a softraid0 ? Please advice. Martin

Re: bioctl -cC -l /dev/sd1a softraid0 for encryption two disks RAID1 mirrored

2020-10-19 Thread Erling Westenvik
On Mon, Oct 19, 2020 at 06:28:50PM +, Martin wrote: > I'd like to have two encrypted 1TB disks in RAID 1 mirror mode (no hardware > RAID installed). Is it possible to use bioctl for that purpose or do I need > to use HW RAID and encrypt mirrored disks with bioctl -c

Re: amd64 cc error unknown argument '-msave-args'

2019-02-05 Thread Theo de Raadt
Anthony J. Bentley wrote: > Once again, the alternative is simple and well > documented: build -stable from -stable, build -current from snaps. Well said.

Re: amd64 cc error unknown argument '-msave-args'

2019-02-05 Thread Theo de Raadt
Jyri Hovila [Turvamies.fi] wrote: > > And since you are doing this with -current *ALL OVER THE PLACE* > > there are instructions that if you have trouble you should upgrade > > to a snapshot. > > Theo, with all due respect, there are many situations where upgrading to a > snapshot really isn't

Re: amd64 cc error unknown argument '-msave-args'

2019-02-05 Thread John Rigg
On Tue, Feb 05, 2019 at 07:23:59AM +0200, Jyri Hovila [Turvamies.fi] wrote: > I must ask though: is it really so difficult to at least > try and help people out, instead of lashing them? As the OP I found the replies to my post helpful. I made a mistake (missed out the release tag on the cvs comma

Re: amd64 cc error unknown argument '-msave-args'

2019-02-04 Thread Anthony J. Bentley
Jyri Hovila [Turvamies.fi] writes: > Theo, with all due respect, there are many situations where upgrading > to a snapshot really isn't an option. In such a situation, you shouldn't expect to be able to build -current all the time. And the advice you'll always get is: update to a snapshot, because

Re: amd64 cc error unknown argument '-msave-args'

2019-02-04 Thread Peter J. Philipp
On Tue, Feb 05, 2019 at 07:23:59AM +0200, Jyri Hovila [Turvamies.fi] wrote: > > > And since you are doing this with -current *ALL OVER THE PLACE* > > there are instructions that if you have trouble you should upgrade > > to a snapshot. > > Theo, with all due respect, there are many situations whe

Re: amd64 cc error unknown argument '-msave-args'

2019-02-04 Thread Jyri Hovila [Turvamies.fi]
> And since you are doing this with -current *ALL OVER THE PLACE* > there are instructions that if you have trouble you should upgrade > to a snapshot. Theo, with all due respect, there are many situations where upgrading to a snapshot really isn't an option. > Those instructions to exist the

Re: amd64 cc error unknown argument '-msave-args'

2019-02-03 Thread John Rigg
On Sun, Feb 03, 2019 at 02:51:08PM -0700, Theo de Raadt wrote: > John Rigg wrote: > > > I'm trying to compile a GENERIC.MP kernel on amd64 > > 6.4 -stable. > > No way, you are not. Only -current has that, as of a few days ago. I used the wrong cvs command and didn't spot it. Stupid mistake. So

Re: amd64 cc error unknown argument '-msave-args'

2019-02-03 Thread Theo de Raadt
t; > be appreciated.=20 > > > > John > > > > > > cat /usr/src/sys/arch/amd64/amd64/genassym.cf /usr/src/sys/arch/amd64/amd64= > > /genassym.cf | sh /usr/src/sys/kern/genassym.sh cc -no-integrated-as -g -W= > > error -Wall -Wimplicit-function-de

Re: amd64 cc error unknown argument '-msave-args'

2019-02-03 Thread Theo de Raadt
n unknown argument: '-msave-args' > error. I've copied the compiler messages and dmesg > below. Suggestions for a cure or workaround would > be appreciated.=20 > > John > > > cat /usr/src/sys/arch/amd64/amd64/genassym.cf /usr/src/sys/arch/amd64/amd64= > /

amd64 cc error unknown argument '-msave-args'

2019-02-03 Thread John Rigg
uggestions for a cure or workaround would be appreciated.=20 John cat /usr/src/sys/arch/amd64/amd64/genassym.cf /usr/src/sys/arch/amd64/amd64= /genassym.cf | sh /usr/src/sys/kern/genassym.sh cc -no-integrated-as -g -W= error -Wall -Wimplicit-function-declaration -Wno-uninitialized -Wno-pointe=

cc: dereference NULL pointer inside switch brackets and no exception

2018-09-04 Thread Denis Buga
> As far as I know, since there is no explicit cases in the switch > statement, the value is not used at all, and the compiler never generates code to dereference the pointer. ... That is true. Thank you all for answers and for link. http://blog.llvm.org/2011/05/what-every-c-programmer-should-k

Re: cc: dereference NULL pointer inside switch brackets and no exception

2018-09-03 Thread Jacqueline Jolicoeur
> No ? "Contrary to popular belief, dereferencing a null pointer in C is undefined. It is not defined to trap, and if you mmap a page at 0, it is not defined to access that page." http://blog.llvm.org/2011/05/what-every-c-programmer-should-know.html

Re: cc: dereference NULL pointer inside switch brackets and no exception

2018-09-03 Thread Andreas Kusalananda Kähäri
On Mon, Sep 03, 2018 at 01:53:41PM +0200, Denis Buga wrote: > int main() > { > char * ptr = NULL; > switch( *ptr ) > { > default: > fprintf(stderr, > > "where is exception ? default label exist for" > "exclusive value, not for non-existent ! " > > "it can be security issue, when dereferencing NULL

Re: cc: dereference NULL pointer inside switch brackets and no exception

2018-09-03 Thread Daniel Dickman
On Mon, Sep 3, 2018 at 7:53 AM, Denis Buga wrote: > int main() > { > char * ptr = NULL; > switch( *ptr ) > { > default: > fprintf(stderr, > > "where is exception ? default label exist for" > "exclusive value, not for non-existent ! " > > "it can be security issue, when dereferencing NULL " > "in s

cc: dereference NULL pointer inside switch brackets and no exception

2018-09-03 Thread Denis Buga
int main() { char * ptr = NULL; switch( *ptr ) { default: fprintf(stderr, "where is exception ? default label exist for" "exclusive value, not for non-existent ! " "it can be security issue, when dereferencing NULL " "in switch formally pass and we go to default label\n"); } } No ? 6.3 GENERIC.

sigfillsiz 1: cc

2016-05-26 Thread Paul de Weerd
Hi all, I noticed something interesting in my dmesg that I hadn't seen before: "sigfillsiz 1: cc" (I was just scanning dmesg for W^X violations). It's reported immediately after 'root on sd0a'. I'm including the syslog copy of dmesg to show the timing. May

Re: Quoting ${CC} expansion in libiberty Makefile

2016-01-19 Thread Stuart Henderson
On 2016-01-18, Andreas Kusalananda Kähäri wrote: > Hi, > > I tried running the base system build with CC="ccache cc" and it broke > while compiling libiberty due to an unquoted expansion of ${CC} in the > Makefile ("${MAKE} ${GNUCFLAGS} CC=${CC} needed-list"). &

Quoting ${CC} expansion in libiberty Makefile

2016-01-18 Thread Andreas Kusalananda Kähäri
Hi, I tried running the base system build with CC="ccache cc" and it broke while compiling libiberty due to an unquoted expansion of ${CC} in the Makefile ("${MAKE} ${GNUCFLAGS} CC=${CC} needed-list"). I know I won't save much time by using ccache since the compiler is r

Re: Licensing OpenBSD artwork as CC-BY-SA?

2013-02-21 Thread Martin Schröder
2013/2/22 Theo de Raadt : > It is not allowed. I thought the same. So https://commons.wikimedia.org/wiki/File:Openbsd2.svg is really a violation? Best Martin

Re: Licensing OpenBSD artwork as CC-BY-SA?

2013-02-21 Thread Theo de Raadt
ad for > http://meta.unix.stackexchange.com/q/1105/9454 for OpenBSD with an > image from http://www.openbsd.org/art2.html > > One of the conditions is that the images must be uploaded to their > network (via imgur), which requires a licensing as CC-BY-SA. > > This doesn't seem to be compatibl

Licensing OpenBSD artwork as CC-BY-SA?

2013-02-21 Thread Martin Schröder
Hi, I'm thinking about creating a community ad for http://meta.unix.stackexchange.com/q/1105/9454 for OpenBSD with an image from http://www.openbsd.org/art2.html One of the conditions is that the images must be uploaded to their network (via imgur), which requires a licensing as CC-BY-SA.

Re: kill/sigsuspend vs. cc -pthread?

2010-07-27 Thread Jay K
Thanks David, done. - Jay > Date: Tue, 27 Jul 2010 09:28:10 +0200 > Subject: Re: kill/sigsuspend vs. cc -pthread? > From: dco...@gmail.com > To: jay.kr...@cornell.edu > CC: misc@openbsd.org > > On Tue, Jul 27, 2010 at 9:21 AM, Jay K

Re: kill/sigsuspend vs. cc -pthread?

2010-07-27 Thread David Coppa
On Tue, Jul 27, 2010 at 9:21 AM, Jay K wrote: > Following 163 lines are reduced from a "very portable" way to implement > threads in usermode, > without hacking jmpbuf, using sigaltstack to set the stack pointer. > > > On OpenBSD 4.6 x86 and powerpc it hangs if I use -pthread, but otherwise does >

kill/sigsuspend vs. cc -pthread?

2010-07-27 Thread Jay K
Following 163 lines are reduced from a "very portable" way to implement threads in usermode, without hacking jmpbuf, using sigaltstack to set the stack pointer. On OpenBSD 4.6 x86 and powerpc it hangs if I use -pthread, but otherwise does not. The hang is in the while(..) sigsuspend(), not too s

cc

2010-05-28 Thread Chic Choc
cc

Re: This list: CC and TO fields

2007-12-07 Thread Antoine Jacoutot
On Fri, 7 Dec 2007, Markus Hennecke wrote: Hm, I could not find the file tech-notes.txt which was distributed with pine. It is missing from the PLIST in the port. Apparently the option character-set was replaced. The manual (the man page) does not provide this information. Below is a patch that

Re: This list: CC and TO fields

2007-12-07 Thread Markus Hennecke
On Fri, 7 Dec 2007, Antoine Jacoutot wrote: On Fri, 7 Dec 2007, Markus Hennecke wrote: If I set the xterm to UTF-8 it works here too, but no way on the console. It did work with pine without setting this option. Oh, common. I don't want to sound harsh or anything, but please read the manual.

Re: This list: CC and TO fields

2007-12-07 Thread Antoine Jacoutot
On Fri, 7 Dec 2007, Markus Hennecke wrote: If I set the xterm to UTF-8 it works here too, but no way on the console. It did work with pine without setting this option. Oh, common. I don't want to sound harsh or anything, but please read the manual. Setting "display-character-set=ISO-8859-1" in

Re: This list: CC and TO fields

2007-12-07 Thread Markus Hennecke
On Tue, 4 Dec 2007, Antoine Jacoutot wrote: On Tue, 4 Dec 2007, Markus Hennecke wrote: But since it replaced pine the UTF-8 support is broken for me, and the arrow UTF-8 works fine here. If I set the xterm to UTF-8 it works here too, but no way on the console. It did work with pine without

Re: This list: CC and TO fields

2007-12-04 Thread Antoine Jacoutot
On Tue, 4 Dec 2007, Markus Hennecke wrote: But since it replaced pine the UTF-8 support is broken for me, and the arrow UTF-8 works fine here. -- Antoine

Re: This list: CC and TO fields

2007-12-04 Thread Markus Hennecke
On Mon, 3 Dec 2007, xSAPPYx wrote: On Dec 3, 2007 5:04 AM, ropers <[EMAIL PROTECTED]> wrote: On 03/12/2007, L <[EMAIL PROTECTED]> wrote: I can't find the 'reply only to group' feature my mail client yet.. but I just started using this email client recently. It is Mozilla Thunderbird. Reply t

Re: This list: CC and TO fields

2007-12-03 Thread xSAPPYx
On Dec 3, 2007 5:04 AM, ropers <[EMAIL PROTECTED]> wrote: > On 03/12/2007, L <[EMAIL PROTECTED]> wrote: > > I can't find the 'reply only to group' feature my mail client yet.. but > > I just started using this email client recently. It is Mozilla Thunderbird. > > Reply to all. > > Alpine is anothe

Re: This list: CC and TO fields

2007-12-03 Thread Marco Peereboom
mutt! On Mon, Dec 03, 2007 at 01:39:29PM -0700, L wrote: > Julian Leyh wrote: >> On 20:59 Sun 02 Dec , L wrote: >>> I can't find the 'reply only to group' feature my mail client yet.. but I >>> just started using this email client recently. It is Mozilla Thunderbird. >> >> Try mutt... it has

Re: This list: CC and TO fields

2007-12-03 Thread L
Julian Leyh wrote: On 20:59 Sun 02 Dec , L wrote: I can't find the 'reply only to group' feature my mail client yet.. but I just started using this email client recently. It is Mozilla Thunderbird. Try mutt... it has a nice list-reply function :) Regards, Julian I was using Sylpheed cl

Re: This list: CC and TO fields

2007-12-03 Thread Julian Leyh
On 20:59 Sun 02 Dec , L wrote: > I can't find the 'reply only to group' feature my mail client yet.. but I > just started using this email client recently. It is Mozilla Thunderbird. Try mutt... it has a nice list-reply function :) Regards, Julian -- If you don't remember something, it nev

Re: This list: CC and TO fields

2007-12-03 Thread ropers
On 03/12/2007, L <[EMAIL PROTECTED]> wrote: > I can't find the 'reply only to group' feature my mail client yet.. but > I just started using this email client recently. It is Mozilla Thunderbird. Reply to all.

Re: This list: CC and TO fields

2007-12-02 Thread L
Nick Holland wrote: L wrote: On my mailing lists that I manage I always turn this option off.. so that anyone who replies to the list only replies to the list but not the actual person too. Not a big deal, just wondering if this is by design and on purpose Sometimes, people WISH to m

Re: This list: CC and TO fields

2007-12-02 Thread Nick Holland
L wrote: > When I reply to the group.. it puts the person's address and the groups > address in TO/CC fields. > > Is it possible for the server to just send mail to the TO field to the > group only, and not have a CC ? anything is possible... Not going to happen, howev

Re: This list: CC and TO fields

2007-12-01 Thread NetOne - Doichin Dokov
L ??: When I reply to the group.. it puts the person's address and the groups address in TO/CC fields. Is it possible for the server to just send mail to the TO field to the group only, and not have a CC ? Is this on purpose, so that incase the list is ever down, the person get

This list: CC and TO fields

2007-12-01 Thread L
When I reply to the group.. it puts the person's address and the groups address in TO/CC fields. Is it possible for the server to just send mail to the TO field to the group only, and not have a CC ? Is this on purpose, so that incase the list is ever down, the person gets the mail a

Re: Please send email directly to misc@openBSD.org (no cc please)

2007-11-17 Thread Edd Barrett
On 16/11/2007, Piet Slaghekke <[EMAIL PROTECTED]> wrote: > Please send email To misc@openBSD.org and do not CC it to this address. Hilerious

Re: Please send email directly to misc@openBSD.org (no cc please)

2007-11-17 Thread Julian Leyh
eply function of mutt. cu Julian On 00:28 Fri 16 Nov , Piet Slaghekke wrote: > I like to filter my openBSD emails and the only way I can do it is if everyone > send their email with misc@openBSD.org in the " To " field. > > Please send email To misc@openBSD.org and

Re: Please send email directly to misc@openBSD.org (no cc please)

2007-11-16 Thread Frank Bax
Piet Slaghekke wrote: I like to filter my openBSD emails and the only way I can do it is if everyone send their email with misc@openBSD.org in the " To " field. Please send email To misc@openBSD.org and do not CC it to this address. Why has no-one mentioned filtering on X-Loo

Re: Please send email directly to misc@openBSD.org (no cc please)

2007-11-16 Thread Piet Slaghekke
e/han/Mail' # Drop all messages to misc@ in their own specific mailbox. if (/^Sender:[EMAIL PROTECTED]/) to $R/openbsd-misc # You don't want to miss you are CC-ed after all. You just don't # want them in your maildir. if ( /^(Cc|To).*(openbsd|misc|tech|bugs|gnats|source-changes

Re: Please send email directly to misc@openBSD.org (no cc please)

2007-11-16 Thread Piet Slaghekke
R='/home/han/Mail' # Drop all messages to misc@ in their own specific mailbox. if (/^Sender:[EMAIL PROTECTED]/) to $R/openbsd-misc # You don't want to miss you are CC-ed after all. You just don't # want them in your maildir. if ( /^(Cc|To).*(openbsd|misc|tech|bug

Re: Please send email directly to misc@openBSD.org (no cc please)

2007-11-16 Thread Han Boetes
Piet Slaghekke wrote: > I like to filter my openBSD emails and the only way I can do it > is if everyone send their email with misc@openBSD.org in the " > To " field. > > Please send email To misc@openBSD.org and do not CC it to this > address. > > Thanks! I

Re: Please send email directly to misc@openBSD.org (no cc please)

2007-11-16 Thread Nick Holland
Piet Slaghekke wrote: > I like to filter my openBSD emails and the only way I can do it is if everyone > send their email with misc@openBSD.org in the " To " field. > > Please send email To misc@openBSD.org and do not CC it to this address. > > Thanks! wow. You

Re: Please send email directly to misc@openBSD.org (no cc please)

2007-11-16 Thread mvdeventer
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Weldon Goree Sent: 16 November 2007 08:20 AM To: Piet Slaghekke Cc: misc@openbsd.org Subject: Re: Please send email directly to misc@openBSD.org (no cc please) On Fri, 2007-11-16 at 00:28 -0500, Piet

Re: Please send email directly to misc@openBSD.org (no cc please)

2007-11-16 Thread Richard Toohey
On 16/11/2007, at 7:20 PM, Weldon Goree wrote: If only there were mail clients that allowed one to filter on To: or Cc:... And automatically added dripping tags?

Re: Please send email directly to misc@openBSD.org (no cc please)

2007-11-16 Thread Weldon Goree
On Fri, 2007-11-16 at 00:28 -0500, Piet Slaghekke wrote: > I like to filter my openBSD emails and the only way I can do it is if everyone > send their email with misc@openBSD.org in the " To " field. > > Please send email To misc@openBSD.org and do not CC it to this add

Re: Please send email directly to misc@openBSD.org (no cc please)

2007-11-16 Thread Karl Sjodahl - dunceor
To " field. > > > > Please send email To misc@openBSD.org and do not CC it to this address. > > > > Thanks! > > If only there were mail clients that allowed one to filter on To: or > Cc:... > > Can people please only mail stuff to misc that I'm interested in? Doh.

Re: Please send email directly to misc@openBSD.org (no cc please)

2007-11-15 Thread Tonnerre LOMBARD
Salut, On Fri, Nov 16, 2007 at 12:28:09AM -0500, Piet Slaghekke wrote: > I like to filter my openBSD emails and the only way I can do it is if everyone > send their email with misc@openBSD.org in the " To " field. > > Please send email To misc@openBSD.org and do not

Please send email directly to misc@openBSD.org (no cc please)

2007-11-15 Thread Piet Slaghekke
I like to filter my openBSD emails and the only way I can do it is if everyone send their email with misc@openBSD.org in the " To " field. Please send email To misc@openBSD.org and do not CC it to this address. Thanks!