Re: What are the disadvantages of soft updates?

2015-01-20 Thread Janne Johansson
2015-01-20 1:46 GMT+01:00 Currell Berry currellbe...@gmail.com: I was mainly curious as to why soft updates were not enabled by default if they have so many good qualities. Your answers explained this well. At least sun4c but also other memory starved machines (mostly those who do not have a

Re: What are the disadvantages of soft updates?

2015-01-20 Thread Alexandre Ratchov
On Mon, Jan 19, 2015 at 07:10:53PM +, Currell Berry wrote: I infer from your response that soft updates possess: 1. increased overhead over default FFS settings. 2. increased implementation complexity over default FFS settings. Also, I infer that journaling and soft updates provide

Re: Ruby 2.2.0 build fails on OpenBSD 5.5

2015-01-20 Thread opendaddy
On 19. januar 2015 at 6:45 PM, Jeremy Evans jeremyeva...@gmail.com wrote: Our make doesn't handle some syntax they used in that file. I'm not sure if it's an issue with our make or a bug in exts.mk. It's currently patched out in the lang/ruby/2.2 port. Great news -- thanks Josh and

Does portable NTPD use a drift file?

2015-01-20 Thread John Long
Does portable NTPD use a drift file? I didn't see one in the previous version and a new install of 5.7p1 doesn't seem to have one either. I didn't see any discussion of a drift file in the manpage for ntpd nor for ntpd.conf in the portable version, though it is mentioned in the man pages for the

Re: OpenBSD talk at ScotLUG, Glasgow

2015-01-20 Thread Peter N. M. Hansteen
Fred open...@crowsons.com writes: If anyone is in Glasgow on Thursday evening - I'm giving a talk at the Scottish Linux User Group (http://scotlug.github.io/) on Building redundant and transparent firewalls with OpenBSD. It's a relatively short hop from here, but my schedule doesn't cooperate

Re: Does portable NTPD use a drift file?

2015-01-20 Thread Brent Cook
On Tue, Jan 20, 2015 at 5:46 AM, John Long codeb...@inbox.lv wrote: Does portable NTPD use a drift file? I didn't see one in the previous version and a new install of 5.7p1 doesn't seem to have one either. I didn't see any discussion of a drift file in the manpage for ntpd nor for ntpd.conf in

Generic SFP+ recognition in Intel based Hotlava Cards Open BSD 5.6 / 5.7 beta

2015-01-20 Thread Tom Smyth
Hi Lads, I was building an intel server with 2x 6 Port SFP+ Hotlava Intel based 10GbE cards, running on 2x Intel E5 v2 6 core Xeon CPUs and with 24 GB Ram It appears that the OpenBSD detects them with the ix(4) driver however when I plug in a generic SFP+ Module ( MikroTIiK SFP+ 10km 1310 nm

Re: iked and isakmpd in parallel

2015-01-20 Thread Joe Crivello
We also have a need for this in our environment. We use transport mode IPSEC to protect gif(4) tunnels between our OpenBSD routers at our remote sites, and we would also ideally like one of these routers to act as a Win 7 road warrior IKEv2 gateway. We would just use iked for both scenarios, but

Re: Does portable NTPD use a drift file?

2015-01-20 Thread John Long
Hi, On Tue, Jan 20, 2015 at 08:21:32AM -0600, Brent Cook wrote: On Tue, Jan 20, 2015 at 5:46 AM, John Long codeb...@inbox.lv wrote: Does portable NTPD use a drift file? I didn't see one in the previous version and a new install of 5.7p1 doesn't seem to have one either. I didn't see any

iked and isakmpd in parallel

2015-01-20 Thread Fedor Piecka
Hello We need to support both IKEv1 and IKEv2 peers in our environment. Isakmpd.conf supports Listen-on directive. However I haven't found such a thing in iked.conf an iked manual pages. My first question now is how to instruct iked to listen only on a selected interface. The second question

Xorg hangs on startup on 5.6+ with Intel HD 4400 (Haswell) and Nvidia hybrid

2015-01-20 Thread VaZub
Everything worked fine on my Acer Aspire V5-573G laptop with 5.5-release, but starting with 5.6-release and on with the latest current 5.7-snapshot as of 19-Jan-2015 22:17, Xorg hangs on startup. I get a black screen and no keys seem work whatsoever. Therefore, I have to do a hard reboot. Steps

building ntop from ports with -w enabled

2015-01-20 Thread Alan McKay
Hey folks, I install ntop from ports and try to run it with -w and it tells me it is disabled due to security reasons. (1) I'd like to read more on those reasons, and (2) I'd like to enable that feature anyway at very least in my test setup to evaluate while also reading up on (1). Is there any

Re: Does portable NTPD use a drift file?

2015-01-20 Thread Brent Cook
On Jan 20, 2015, at 9:59 AM, John Long codeb...@inbox.lv wrote: though I should fix the the portable version to adjust the manpage to point where it actually gets configured for installation. Some packagers have already been patching this for their distributions. By default, it should get

Re: man shutdown 8 diff in BSDs

2015-01-20 Thread Remco
Christian Weisgerber wrote: --- shutdown.c 16 Jan 2015 06:40:01 - 1.38 +++ shutdown.c 19 Jan 2015 12:03:03 - @@ -134,6 +134,7 @@ main(int argc, char *argv[]) nosync = 1; break; case 'p': +dohalt = 1; dopower = 1; break; case 'r': I

Re: Does portable NTPD use a drift file? [fixed]

2015-01-20 Thread John Long
On Tue, Jan 20, 2015 at 12:26:35PM -0600, Brent Cook wrote: Note that a new drift file is not written immediately on start, only after the proper frequency adjustment has been determined. That might take a long time depending on the stability of your systems's clock (e.g. VMs) and how

Re: man shutdown 8 diff in BSDs

2015-01-20 Thread Ted Unangst
On Tue, Jan 20, 2015 at 19:29, Remco wrote: Christian Weisgerber wrote: --- shutdown.c 16 Jan 2015 06:40:01 - 1.38 +++ shutdown.c 19 Jan 2015 12:03:03 - @@ -134,6 +134,7 @@ main(int argc, char *argv[]) nosync = 1; break; case 'p': + dohalt = 1;

Re: Does portable NTPD use a drift file?

2015-01-20 Thread John Long
On Tue, Jan 20, 2015 at 12:26:35PM -0600, Brent Cook wrote: On Jan 20, 2015, at 9:59 AM, John Long codeb...@inbox.lv wrote: LOCALSTATEDIR /db/ntpd.drift Thanks, this helps. It was there, just not where I wanted since I install addons in /usr/local. Unfortunately now that I fixed

Re: man shutdown 8 diff in BSDs

2015-01-20 Thread Miod Vallat
Make -h, -p and -r distinct, incompatible, options. (removes support for -hp) Like FreeBSD, it seems reasonable to also mark -k as incompatible with the other three options. I hate this. I type shutdown -hp all the time. Ditto. I'm fine with -p implying -h, but don't break existing

Re: nginx question...

2015-01-20 Thread Alexander Hall
On 01/19/15 23:25, worik wrote: Summary: The files under /var/www/htdocs are by default it seems all owned by root:wheel. What are the issues with changing that to be a normal user? The long version My work flow involves building a directory structure on another machine and using 'rsync'

Re: ARM Firewall Hardware

2015-01-20 Thread Patrick Wildt
Am 16.01.2015 um 08:49 schrieb Jonathan Gray j...@jsg.id.au: On Fri, Jan 16, 2015 at 07:59:49AM +0100, Christer Solskogen wrote: On Wed, Jan 14, 2015 at 7:19 PM, Christer Solskogen christer.solsko...@gmail.com wrote: On Wed, Jan 14, 2015 at 3:39 PM, Jonathan Gray j...@jsg.id.au wrote: I've

Re: Please help advertise DigitalOcean on OpenBSD Misc (again)

2015-01-20 Thread Libertas
On 01/20/2015 09:12 PM, Steve Shockley wrote: On 1/19/2015 9:06 AM, openda...@hushmail.com wrote: So please stop by and give us your upvotes. So, is this advertising or SEO? Probably not. They're a cheap, common, and reliable provider, and a lot of people would like to run OpenBSD with

xterm initial tty weirdness

2015-01-20 Thread Alexander Hall
Hi! Short: Editing commands sometimes don't (seem to) work on the first shell prompt in newly opened xterm window: $ bar^A^E^Afoo ENTER foo bar ksh: foo: not found Long: Every now and then when I open up a new xterm window, the initial row I edit misbehaves in that it

Re: Please help advertise DigitalOcean on OpenBSD Misc (again)

2015-01-20 Thread Steve Shockley
On 1/19/2015 9:06 AM, openda...@hushmail.com wrote: So please stop by and give us your upvotes. So, is this advertising or SEO?

Re: Please help advertise DigitalOcean on OpenBSD Misc (again)

2015-01-20 Thread patric conant
On Tue, Jan 20, 2015 at 9:58 PM, Libertas liber...@mykolab.com wrote: On 01/20/2015 09:12 PM, Steve Shockley wrote: On 1/19/2015 9:06 AM, openda...@hushmail.com wrote: So please stop by and give us your upvotes. So, is this advertising or SEO? Probably not. They're a cheap, common,

Re: Please help advertise DigitalOcean on OpenBSD Misc (again)

2015-01-20 Thread Constantine A. Murenin
On 20 January 2015 at 18:12, Steve Shockley steve.shock...@shockley.net wrote: On 1/19/2015 9:06 AM, openda...@hushmail.com wrote: So please stop by and give us your upvotes. So, is this advertising or SEO? DigitalOcean is a shady provider with a lack of documentation, who doesn't even give

Re: current/amd64 on Asus J1800I-C

2015-01-20 Thread Jan Stary
On Jan 13 12:19:03, j...@jsg.id.au wrote: On Mon, Jan 12, 2015 at 11:11:27PM +0100, Jan Stary wrote: On Jan 13 00:03:12, j...@jsg.id.au wrote: On Sun, Jan 11, 2015 at 03:23:58PM +0100, Jan Stary wrote: (... now that I can boot it.) The Intel graphics is not recognized.

Re: current/amd64 on Asus J1800I-C

2015-01-20 Thread Jonathan Gray
On Tue, Jan 20, 2015 at 10:52:13PM +0100, Jan Stary wrote: On Jan 13 12:19:03, j...@jsg.id.au wrote: On Mon, Jan 12, 2015 at 11:11:27PM +0100, Jan Stary wrote: On Jan 13 00:03:12, j...@jsg.id.au wrote: On Sun, Jan 11, 2015 at 03:23:58PM +0100, Jan Stary wrote: (... now that I can

Re: man shutdown 8 diff in BSDs

2015-01-20 Thread Remco
Ted Unangst wrote: On Tue, Jan 20, 2015 at 19:29, Remco wrote: Christian Weisgerber wrote: --- shutdown.c 16 Jan 2015 06:40:01 - 1.38 +++ shutdown.c 19 Jan 2015 12:03:03 - @@ -134,6 +134,7 @@ main(int argc, char *argv[]) nosync = 1; break; case 'p': +