Re: Putting fifos in subshells into the background

2019-06-12 Thread Philip Guenther
On Wed, Jun 12, 2019 at 12:54 AM Richard Ulmer wrote: > while making the Kakoune editor work on OpenBSD, I encountered some > strange behaviour [1]. This little script doesn't work with the OpenBSD > sh, but works at least with dash, bash and zsh: > > mkfifo 'testfifo' > cat "$( > ( printf

Re: IPsec bandwidth perf on APU4C4

2019-06-12 Thread Stuart Henderson
On 2019-06-12, Stuart Henderson wrote: > If you're on an old BIOS revision for the APU (more than a couple of > months old), try updating, they have enabled "core performance boost" > which increases speed of a single core if the others are not under > heavy load. > > I haven't done network

Re: IPsec bandwidth perf on APU4C4

2019-06-12 Thread Stuart Henderson
If you're on an old BIOS revision for the APU (more than a couple of months old), try updating, they have enabled "core performance boost" which increases speed of a single core if the others are not under heavy load. I haven't done network benchmarks but there is a noticable improvement in some

cwm with multi head setup

2019-06-12 Thread Henry Jensen
Hello, I'm using OpenBSD Xenocara current with a multi head (dual monitor) setup. After using fluxbox and dwm I now wanted to try cwm. I like it so far, but is there a way I can move the current window from one monitor to the other with one single keybinding (i.e. like the "focusmon" command in

Multicast traffic on pflog0

2019-06-12 Thread Lévai , Dániel
Hi list! I was wondering if someone could explain this, because I've been scratching my head for a while now. I'm seeing multicast traffic logged on pflog0 for some reason -- they are 'igmp nreport' stuff from IPs in my internal network, totally legit by the way, they are supposed to do that,

Re: IPsec bandwidth perf on APU4C4

2019-06-12 Thread mabi
‐‐‐ Original Message ‐‐‐ On Wednesday, June 12, 2019 11:34 AM, Daniel Gracia wrote: > Those look like reasonable numbers for the given scenario. Improving > your IPsec bandwidth would take more horsepower than an APU box. > Improving site-to-site encrypted VPN speed, asuming two APU

How does OpenBSD probe for I/O devices?

2019-06-12 Thread
I've search for the answer to this question, but I can't find it. I also read the source code, but I still don't get how it works. Help pl0x

Re: [mark.kette...@xs4all.nl: Check your machdep.allowaperture setting]

2019-06-12 Thread Stephane HUC "PengouinBSD"
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Hi, In the french documentation on obsd4a's wiki, I wrote: "When to add this option? When you see into xorg.log: $ head /var/log/Xorg.0.log [33.839] (WW) checkDevMem: failed to open /dev/xf86 and /dev/mem (Operation not permitted)

relayd shows ssh sessions as idle

2019-06-12 Thread Joel Carnat
Hi, I have configured relayd(8) on my vmd(8) host so that I can connect to the running VMs using SSH. Using relayctl(8), I can see that those sessions have the same value for age and idle ; even when something happens in the SSH sessions. Is this expected or an error in my relayd.conf ?

Putting fifos in subshells into the background

2019-06-12 Thread Richard Ulmer
Hi, while making the Kakoune editor work on OpenBSD, I encountered some strange behaviour [1]. This little script doesn't work with the OpenBSD sh, but works at least with dash, bash and zsh: mkfifo 'testfifo' cat "$( ( printf 'foo\n' > testfifo 2>&1 ) > /dev/null 2>&1 & printf 'testfifo'

Re: IPsec bandwidth perf on APU4C4

2019-06-12 Thread Daniel Gracia
Those look like reasonable numbers for the given scenario. Improving your IPsec bandwidth would take more horsepower than an APU box. Improving site-to-site encrypted VPN speed, asuming two APU boxes, would require switching from IPsec to something like a WireGuard VPN, available on -current as a

Re: The su manual doesn't mention use root account by default

2019-06-12 Thread Ingo Schwarze
Hello Nan Xiao, Nan Xiao wrote on Wed, Jun 12, 2019 at 02:19:08PM +0800: > I read su manual (https://man.openbsd.org/su.1), but can't find words > which said if no account is provided, root is the default. The BUGS section says so indirectly, but i agree that is not sufficient. A manual page

The su manual doesn't mention use root account by default

2019-06-12 Thread Nan Xiao
Hi misc@, Greeting from me! I read su manual (https://man.openbsd.org/su.1), but can't find words which said if no account is provided, root is the default. But for doas(https://man.openbsd.org/doas.1), it has following words: -u userExecute the command as user. The default is root. I am