pip install (python3) requires some development libraries

2018-08-26 Thread Максим
Hello. I'm trying to install some django components, which require development libraries be installed on the system to successfully compile. If it goes about Ubuntu I understand that I have to install something like "packet-dev" with the command "sudo apt install packet-dev" What are my steps to ma

Re: Let's Encrypt Error with cgit, httpd, acme-client

2018-08-26 Thread Parikh, Samir
Your suggestion of changing things up in my /etc/httpd.conf file did the trick! My initial version of the file, prior to initializing the account and requesting a new domain key ended up looking like this based on your suggestions: ext_ip="0.0.0.0" #server "localhost" { server "git.example.com" {

Re: getting scrollback buffer on OpenBSD 6.3

2018-08-26 Thread edgar
On Aug 26, 2018 3:18 PM, joshua stein wrote: > > On Sun, 26 Aug 2018 at 13:28:24 -0500, ed...@pettijohn-web.com wrote: > > I'm guessing > > > > dmesg | grep drm > > > > Should help since it won't work with inteldrm nor radeondrm. > > Just for the archives, scrollback support for rasops consol

Re: Deploy Django app - strategy?

2018-08-26 Thread Chris Narkiewicz
On 26/08/2018 21:01, Paul de Weerd wrote: Use python3 -m venv /path/to/venv to create a virtualenv using python3 and be done with it. Yeah, it did the trick. I'm going to deplrecate use of virtualenv, since it's no longer needed with Python 3.6. That will use a symlink to the actual python3

Re: getting scrollback buffer on OpenBSD 6.3

2018-08-26 Thread joshua stein
On Sun, 26 Aug 2018 at 13:28:24 -0500, ed...@pettijohn-web.com wrote: > I'm guessing > > dmesg | grep drm > > Should help since it won't work with inteldrm nor radeondrm. Just for the archives, scrollback support for rasops consoles (like inteldrm and radeondrm) was added after 6.3.

Re: Deploy Django app - strategy?

2018-08-26 Thread Paul de Weerd
Use python3 -m venv /path/to/venv to create a virtualenv using python3 and be done with it. That will use a symlink to the actual python3 binary in /usr/local, so no issues with the lack of wxallowed on /var. However, you'll have to deal with the chroot implications there... What webserver are yo

Re: APU2 and Spectre

2018-08-26 Thread Mike Larkin
On Sat, Aug 25, 2018 at 06:08:49PM +0300, Consus wrote: > Hi, > > Seems like APU2 board is vulnerable to Spectre: > > $ uname -r > 6.3 > $ dmesg | grep cpu0 | grep AMD > cpu0: AMD GX-412TC SOC, 998.27 MHz > $ git clone https://github.com/crozone/SpectrePoC > $

Deploy Django app - strategy?

2018-08-26 Thread Chris Narkiewicz
I'm deploying a Django app on OpenBSD 6.3 and I'm strugging to wrap my head around the best practices here. On Linux we just bootstrap virtualenv in home directory and start uwsgi (or altenative), but on OpenBSD it seems to be a bit more complicated: core# mkdir /var/www/app core# cd /var/www/ap

Re: Need an advice: Raspberry Pi3 B+ or Pine64 ROCK64

2018-08-26 Thread Carlos Cardenas
On Sun, Aug 26, 2018 at 05:50:02PM +0200, David Bern wrote: > On Sun, 26 Aug 2018 15:52:48 +0200 > Patrick Wildt wrote: > > > On the MacchiatoBin we don't support the onboard ethernet yet. On the > > EspressoBin we do support the ethernet controller, but the connected > > switch is a mess that I

Re: getting scrollback buffer on OpenBSD 6.3

2018-08-26 Thread edgar
On Aug 26, 2018 12:40 PM, Alceu Rodrigues de Freitas Junior wrote: > > Hello folks, > > I'm running OpenBSD 6.3 over a Aspire One netbook, and looking for > enabling the "scrollback buffer" mentioned in the related FAQ > (http://www.openbsd.org/faq/faq7.html#Scrollback). > > Unfortunately, it

Re: SuperMicro A2SDi-4C-HLN4F

2018-08-26 Thread Alexander Hall
On August 25, 2018 1:59:55 PM GMT+02:00, Rupert Gallagher wrote: > wrote: > >> This vendor addresses hardware & firmware faults like the other >enterprise vendors, they DON'T past year two. BIOS and BMC firmwares >are not updated after this even with the long term lifetime products, >you are o

getting scrollback buffer on OpenBSD 6.3

2018-08-26 Thread Alceu Rodrigues de Freitas Junior
Hello folks, I'm running OpenBSD 6.3 over a Aspire One netbook, and looking for enabling the "scrollback buffer" mentioned in the related FAQ (http://www.openbsd.org/faq/faq7.html#Scrollback). Unfortunately, it doesn't mention which combination of platforms and hardware combinations it is su

Re: netstat - process names

2018-08-26 Thread he...@ezaquarii.com
On 26/08/2018 14:27, Claudio Jeker wrote: What linux offers is at best best-effort and sometimes wrong. I was actually looking for a Linux netstat -tpna equivalent, but the trick with fstat is better. Thanks for the background explaination - it was very helpful. Best regards, Chris

Re: Need an advice: Raspberry Pi3 B+ or Pine64 ROCK64

2018-08-26 Thread David Bern
On Sun, 26 Aug 2018 15:52:48 +0200 Patrick Wildt wrote: > On the MacchiatoBin we don't support the onboard ethernet yet. On the > EspressoBin we do support the ethernet controller, but the connected > switch is a mess that I don't dare to support. Got other stuff to do. > Though I am working on

Re: Need an advice: Raspberry Pi3 B+ or Pine64 ROCK64

2018-08-26 Thread Patrick Wildt
On Sun, Aug 26, 2018 at 11:00:26AM +, Stuart Henderson wrote: > On 2018-08-26, Carlos López wrote: > > > > > > On 26/08/2018 11:46, Joel Wirāmu Pauling wrote: > >> netboot works fine. However almost all of the Arm platforms including > >> the Rpi3 make terrible gateways and in general l3 packe

Re: netstat - process names

2018-08-26 Thread Claudio Jeker
On Sun, Aug 26, 2018 at 01:19:05PM +0100, he...@ezaquarii.com wrote: > Hi, > > I'm looking for a way to see which processes are listening > on incoming tcp/udp connections. > > So, here is my output of netstat -f inet -p udp -l > > Proto Recv-Q Send-Q Local Address Foreign Address

Re: netstat - process names

2018-08-26 Thread Thomas Bohl
Hi, > I'm looking for a way to see which processes are listening > on incoming tcp/udp connections. fstat | grep internet > Second, how can I verify what process is listening on ports > 5022,8806 and 21164? fstat | grep -e ":5022" -e ":8806" -e "21164"

netstat - process names

2018-08-26 Thread he...@ezaquarii.com
Hi, I'm looking for a way to see which processes are listening on incoming tcp/udp connections. So, here is my output of netstat -f inet -p udp -l Proto Recv-Q Send-Q Local Address Foreign Address(state) udp 0 0 core.5022 lithium.constant.ntp udp

Re: Need an advice: Raspberry Pi3 B+ or Pine64 ROCK64

2018-08-26 Thread Mohamed Fouad
Hi Carlos, i have a similar requirement and i am considering testing a banana pi router at this moment. On Sun, 26 Aug 2018, 11:30 am Carlos López, wrote: > Hi all, > > I am considering to buy an ARM based device to use it with OpenBSD as > a personal/portable firewall, IDS and Tor gateway. >

Re: Need an advice: Raspberry Pi3 B+ or Pine64 ROCK64

2018-08-26 Thread Joel Wirāmu Pauling
Still IME best bang for buck is n3160 ATOM based mini-pc's there are several vendors (Jetway/Qotom) and you can get an AES-NI capable 4 core machine with dual NICs that will do 5Gbit Duplex on the nose for less than 90$ USD. I know intel isn't the flavour of the month, but these machines lack Mana

Re: SuperMicro A2SDi-4C-HLN4F

2018-08-26 Thread Stuart Henderson
On 2018-08-26, Mihai Popescu wrote: >> OpenBSD is not ready for enterprise. > > Fantastic intuition here [1]. > > [1] https://marc.info/?l=openbsd-misc&m=153385998722067&w=2 > > Would you mind fixing your thread headers please? My killfile entry for threads with 'protonmail.com' in references doe

Re: Need an advice: Raspberry Pi3 B+ or Pine64 ROCK64

2018-08-26 Thread Stuart Henderson
On 2018-08-26, Carlos López wrote: > > > On 26/08/2018 11:46, Joel Wirāmu Pauling wrote: >> netboot works fine. However almost all of the Arm platforms including >> the Rpi3 make terrible gateways and in general l3 packet path >> machines. >> >> I have a bunch of various SBC and they all suck pre

Re: wifi gui manager

2018-08-26 Thread Dumitru Moldovan
Stefan Sperling wrote: > On Wed, Aug 22, 2018 at 06:38:11PM -0700, Chris Bennett wrote: > > Well, there are probably additional reasons too, but my father > > happily runs OpenBSD. Of course, he needs to be able to turn the > > computer off. > > I would recommend using doas(1) to grant 'shutdo

Re: Need an advice: Raspberry Pi3 B+ or Pine64 ROCK64

2018-08-26 Thread Carlos López
On 26/08/2018 11:46, Joel Wirāmu Pauling wrote: netboot works fine. However almost all of the Arm platforms including the Rpi3 make terrible gateways and in general l3 packet path machines. I have a bunch of various SBC and they all suck pretty bad for network tasks. Fine for random server ta

Re: Need an advice: Raspberry Pi3 B+ or Pine64 ROCK64

2018-08-26 Thread Joel Wirāmu Pauling
netboot works fine. However almost all of the Arm platforms including the Rpi3 make terrible gateways and in general l3 packet path machines. I have a bunch of various SBC and they all suck pretty bad for network tasks. Fine for random server tasks but don't put them in your network path unless yo

Re: Need an advice: Raspberry Pi3 B+ or Pine64 ROCK64

2018-08-26 Thread Alfredo “Fred” Vogel
Hi hola, The raspi is fiddly for installing openbsd. One needs a special usb cable to install obsd because there is no driver for the sdcard booting device! Regards Alfredo On 26 Aug 2018, 10:30 +0100, Carlos López , wrote: > Hi all, > > I am considering to buy an ARM based device to use it with O

Need an advice: Raspberry Pi3 B+ or Pine64 ROCK64

2018-08-26 Thread Carlos López
Hi all, I am considering to buy an ARM based device to use it with OpenBSD as a personal/portable firewall, IDS and Tor gateway. My only requirements are: a/ OpenBSD well hardware's supported b/ Best network throughput It seems Raspberry 3 B+ maybe the best option, but I am not pretty s

Re: SuperMicro A2SDi-4C-HLN4F

2018-08-26 Thread Rupert Gallagher
Popescu, obsd does not always work. Hiding the bugs, instead of showing them on git issues or bugzilla, it does not make obsd any better. Sent from ProtonMail Mobile

iridium --enable-unveil and extensions

2018-08-26 Thread Adam Steen
Hi all I think i must be missing something, i am unable to get extensions working in Iridium with "--enable-unveil". unveil.main has "~/.config rwc" and i thought extensions live under ".config/iridium/Default/Extensions" so thought maybe that should be enough, its not. as a hack i added "~/.

Re: Atom CPU is clear of L1TF

2018-08-26 Thread Rupert Gallagher
https://marc.info/?l=openbsd-misc&m=153443566603373&w=2 Sent from ProtonMail Mobile On Sat, Aug 25, 2018 at 22:07, Rupert Gallagher wrote: > The fact that obsd works on your x7-Z8750 says nothing on the fact that it > does not work on my c3558. > > On Sat, Aug 25, 2018 at 15:48, Benjamin Baier