acpidump: RSDT entry 3 is corrupt

2018-04-30 Thread meg...@r53sound.com
I'm seeing "acpidump: RSDT entry 3 is corrupt" in my boot messages on 6.3/amd64. The motherboard is an ASUS P5Q Pro Turbo with a Q6600. IIRC, there's a way to extract the table so someone clueful can come-up with a workaround for ASUS's failure to comply with the standard? Meghan

Re: Problem with OpenBSD as nfs client

2018-04-30 Thread philipper01
Thank you so much Eike mount_nfs -T works perfectly. So i added TCP option in my fstab and all my shares are automatically mounted. Philippe -- Sent from: http://openbsd-archive.7691.n7.nabble.com/openbsd-user-misc-f3.html

Re: Troubleshooting rl instability on OpenBSD 6.1

2018-04-30 Thread Stuart Longland
On 01/05/18 11:10, Nick Holland wrote: > Here's the thing. There are rules to the game with every OS. With > OpenBSD, if you have to stay up to date -- the support tail is only > about a year long, and that is really only security issues. I accept this, no problem with that whatsoever, you

Re: Troubleshooting rl instability on OpenBSD 6.1

2018-04-30 Thread Nick Holland
On 04/30/18 18:04, Stuart Longland wrote: > On 01/05/18 03:00, Solene Rapenne wrote: >> >> Stuart Longland writes: >> >>> On 29/04/18 18:08, Solene Rapenne wrote: Stuart Longland writes: > Hi all, > > I've got an Advantech UNO-1150G industrial PC running OpenBSD 6.1

Re: Best Practices python virtualenv

2018-04-30 Thread IL Ka
The only difference is venv creates link to python, it does not copy binary itself. You now have python3 -> /usr/local/bin/python3 in your venv. Since /usr/local/ has wxallowed by default (see your /etc/fstab) it works. Does it affect security? In theory -- yes, because python can now create WX

Re: Best Practices python virtualenv

2018-04-30 Thread Ken M
Not to disagree but if using python3 -m venv in home works and home is not mounted as wxallowed is there still a security issue with this workflow? Granted at this point talking about a development workstation and not a server. So while I am at it I guess I should ask is what you are saying more

Re: Best Practices python virtualenv

2018-04-30 Thread IL Ka
It is up to you, but I still belive that best solution is to rebuild python without of wxneeded. 1) It improves security 2) It fixes your virtualenv issue. If you do not use packages that need WX, why do you need wxneed?

Re: Best Practices python virtualenv

2018-04-30 Thread Ken M
I happen to like python and will be the first I reach for for many simple or even some bigger tasks. Nothing against those other languages. I actually have a special place in my heart for perl, but with the perl 5 vs 6 thing I wonder on the longer term future of the language. Honestly I need to

Re: Best Practices python virtualenv

2018-04-30 Thread Ken M
Thanks for all the responses but it seems an alternate solution presented by another user in a direct reply is to use python3 - m venv. Basically using the venv built in to python3 as opposed to the legacy method of py-virtualenv that I typically only have to use for older python 2 code bases.

Re: Problem with OpenBSD as nfs client

2018-04-30 Thread Rupert Gallagher
> /home/filip/Documents 192.168.1.1238 1238?

Re: Best Practices python virtualenv

2018-04-30 Thread Dave Voutila
Ken MacKenzie writes: > Is there a recommended best practice when setting up an environment with > python > virtualenv with regards to wxallowed. AFAIK nothing official. > > My typical workflow is under my home directory I have a > dev/language/project/.venv type structure. I

Re: Best Practices python virtualenv

2018-04-30 Thread IL Ka
Hello. Short answer: if you do not need py-cryptography and QtWebKit, just rebuild python from ports disabling USE_WXNEEDED. I run Django using virtualenv in my $HOME and it works. Long answer: To use mmap(2) with PROT_EXEC | PROT_WRITE you need to link binary with -z wxneeded (See ld(1)). It

Re: Troubleshooting rl instability on OpenBSD 6.1

2018-04-30 Thread Stuart Longland
On 01/05/18 03:00, Solene Rapenne wrote: > > Stuart Longland writes: > >> On 29/04/18 18:08, Solene Rapenne wrote: >>> >>> Stuart Longland writes: >>> Hi all, I've got an Advantech UNO-1150G industrial PC running OpenBSD 6.1 acting as an ADSL router, public NTP server and DNS

ThinkPad T480s - Elantech v4 clickpad configuration

2018-04-30 Thread Ryan Lennox
Hi, I've got a ThinkPad T480s that comes with an Elantech v4 Clickpad + Trackpoint (firmware version 0x7f3001). Out of the box, this firmware version is unsupported and cannot be configured, but it does attach as a basic PS/2 mouse input. Unfortunately for me, this means "tap-to-click" is

Re: swi-pl : tiny edition!

2018-04-30 Thread Elias M. Mariani
Hi, I think that you can build your own package of swi-prolog by modifying the Makefile in the ports tree, just read here: http://www.swi-prolog.org/build/prerequisites.html About what each of the dependencies do, remove the ones that you don't want from LIB_DEPENDS and make a new PLIST for the

Re: ICMPv6 Neighbor Advertisement PF Weirdness

2018-04-30 Thread Joe Crivello
I solved the problem described in my last email. The problem was that we copy pasted the IPv6 address for each vlan interface, and then changed part of the address for each interface, but failed to change the prefix length to 64. This meant that each vlan interface had a different address, but

Re: Plans to port the amdgpu(4) driver? (=to support Radeons made 2014/2015 and after.) Hardware/other donations needed?

2018-04-30 Thread Patrick Harper
I have a FirePro V5900 (Cayman part from the Northern Islands family) which I run with EXA acceleration on 6.2. H264 video with a resolution of 3840x2160 and 25fps play flawlessly with the OpenGL acceleration in mpv (on a WSXGA+ display). Ostensibly this card can drive UHD monitors at their

Re: Best Practices python virtualenv

2018-04-30 Thread Kevin Chadwick
On Mon, 30 Apr 2018 16:46:49 + > Is there a recommended best practice when setting up an environment > with python > virtualenv with regards to wxallowed. sthen@ mentioned a compiler option and that only some modules actually require RWX memory. I don't know the details as to why python

ICMPv6 Neighbor Advertisement PF Weirdness

2018-04-30 Thread Joe Crivello
Hello -- While configuring a new firewall, I noticed that pflog0 was showing that some ICMPv6 neighbor advertisement packets were being blocked in on vlan51, which is a sub-interface of vmx1 (a vmxnet3 interface using VGT). I added a PF rule allowing this traffic to pass. However, even after

Re: Troubleshooting rl instability on OpenBSD 6.1

2018-04-30 Thread Solene Rapenne
Stuart Longland writes: > On 29/04/18 18:08, Solene Rapenne wrote: >> >> Stuart Longland writes: >> >>> Hi all, >>> >>> I've got an Advantech UNO-1150G industrial PC running OpenBSD 6.1 acting >>> as an ADSL router, public NTP server and DNS server. dmesg info: >>> OpenBSD 6.1 (GENERIC)

Best Practices python virtualenv

2018-04-30 Thread Ken MacKenzie
Is there a recommended best practice when setting up an environment with python virtualenv with regards to wxallowed. My typical workflow is under my home directory I have a dev/language/project/.venv type structure. I guess the simple solution is to mount /home as wxallowed in /etc/fstab, but is

relayd as websocket proxy?

2018-04-30 Thread Andre Ruppert
Hello @misc, is it possible to configure relayd to act as a websocket proxy with v6.2/v6.3? I set up relayd as ssl accelerator: excerpt from relayd.conf: http protocol "httpfilter2" { tcp { nodelay, sack, socket buffer 65536, backlog 100 } return error match request

Re: CPU Affinity

2018-04-30 Thread Elias M. Mariani
Thanks for the reply Peter. May I ask why is not available to userland? Is just a developers decision or is because no one is interested in that functionality? Elias. 2018-04-30 3:32 GMT-03:00 Peter Hessler : > On 2018 Apr 29 (Sun) at 22:07:18 -0300 (-0300), Elias M. Mariani

Re: Installboot uses wrong device for secondary boot loader

2018-04-30 Thread Maurice McCarthy
On 29/04/18 08:39, Eric Zylstra wrote: > I???m following the documentation in OpenBSD FAQ: disk setup. > > I???m inclined to think there is a code issue since I specified device > sd4 and installboot used that device for the first stage and then seems > to have defaulted to sd0 for the second

repeated set of messages about usb mouse

2018-04-30 Thread Rudolf Sykora
Hello misc, I am (on 6.3, amd64) repeatedly getting these messages every now and then: --- uhub4 at uhub3 port 5 configuration 1 interface 0 "Genesys Logic USB2.0 Hub" rev 2.00/88.32 addr 3 uhidev1 at uhub4 port 1 configuration 1 interface 0 "Logitech USB Optical Mouse" rev

Re: Problem with OpenBSD as nfs client

2018-04-30 Thread Eike Lantzsch
On Sunday, April 29, 2018 10:36:22 AM -04 philipper01 wrote: > I had a cpy/paste mistake > > my exports file is : > > /home/filip/Documents 192.168.1.128 (rw) > > /home/filip/Public 192.168.1.128 (rw) To be sure that I misunderstand you correctly: 192.168.1.128 is the ip of your OpenBSD 6.3

Re: Problem with OpenBSD as nfs client

2018-04-30 Thread vandung
Hi Philipper01, I am no expert in NFS. Your OpenBSD NFS client looks to call a different IP that the described Fedora workstation. Cheers, Van Dung -- Sent from: http://openbsd-archive.7691.n7.nabble.com/openbsd-user-misc-f3.html

Re: Problem with OpenBSD as nfs client

2018-04-30 Thread Stuart Longland
On 29/04/18 19:22, philipper01 wrote: > First, im new with OpenBSD 6.3 that i run in Virtualbox. > > I try to setup a NFS share : > server is Fedora workstation 28 > - exports file looks like this > /home/filip/Documents 192.168.1.1238 (rw) > /home/filip/Public 192.168.1.128 (rw) > Of course NFS

Re: Raid offline when newfs

2018-04-30 Thread Mimoza
Le 30/04/2018 à 04:14, Nick Holland a écrit : Did you disable the RAID functionality of this card? If not, the BIOS probably tried to "rebuild" one disk onto the other, causing you all kinds of pain. softraid has to do everything for this to work properly. Nick. Hi, I will check that

Re: PCI passthrough for VMM thoughts?

2018-04-30 Thread Mike Larkin
On Sun, Apr 29, 2018 at 07:17:08AM -0400, Joseph Mayer wrote: > Hi Mike, > > First, thanks for vmm! > > One practical question: > > Did you think about PCI passthrough? If so, what's your perspective on > it? > > There were no previous mentions of it on misc@ so here it is. Also I > have no

swi-pl : tiny edition!

2018-04-30 Thread Mayuresh Kathe
i don't have the skills nor the experience to accomplish this, so here. can there be a swi-pl-tiny edition of swi-prolog? as it stands today, swi-prolog has a whole lot of dependencies, as here; gmp, libexecinfo, pcre, ossp-uuid, jpeg, bzip2, lz, xz, libarchive, db, iodbc. it would be really

Re: CPU Affinity

2018-04-30 Thread Mike Larkin
On Mon, Apr 30, 2018 at 01:02:56AM -0300, Elias M. Mariani wrote: > Hi Anton, > The why is: > An increase in performance. > In this case I want to use some cores to do a very large operation and > it will be faster if the same core continues the same operation. > Maybe there's a library for doing

Re: CPU Affinity

2018-04-30 Thread Peter Hessler
On 2018 Apr 29 (Sun) at 22:07:18 -0300 (-0300), Elias M. Mariani wrote: :Hi, :I was trying to port mprime to OpenBSD. :The main issue is not finding any way to set affinity on cores. :Searching for how to do this on OpenBSD bring this result in undeadly: