Re: smtpd warn: not enough disk space

2024-07-06 Thread Jeremy Evans
ev=1.304=text/x-cvsweb-markup Jeremy

Re: smtpd warn: not enough disk space

2024-07-05 Thread Jeremy Mates
On 2024-07-05 05:19:01 +0200, Christian Schulte wrote: > I have never seen an application performing such kind of checks. Sendmail had a knob to refuse mail at a certain CPU load, on the assumption that if a system was "too busy" it's in a bad state and accepting mail would only make things

Re: Awk split()/array bug in 7.5

2024-05-30 Thread Jeremy Mates
On 2024-05-30 14:56:50 -0600, Todd C. Miller wrote: > This is not a bug. An awk associative array is effectively a hash > table so when you iterate over it like this you are not guaranteed > to get things in any particular order. In fact, our awk, mawk and > gawk all produce different output

Re: 7.5 /var/log/messages - vfprintf %s NULL in "%.*s"

2024-04-14 Thread Jeremy Mates
ither of those files and a sh or ksh or whatever is run in a suitable directory? On 2024-04-08 15:30:11 +, Jeremy Mates wrote: > 79510 ksh NAMI "none.db" > 79510 ksh RET open -1 errno 2 No such file or directory > 79510 ksh CALL mprotect(0x4e89f6

Re: 7.5 /var/log/messages - vfprintf %s NULL in "%.*s"

2024-04-08 Thread Jeremy Mates
Given logger foo;xterm -tn xterm-256color -e ktrace -di /bin/ksh the log message 'ksh: vfprintf %s NULL in "%.*s"' appears when ~/.terminfo/x/xterm/xterm-256color does not exist. The log message no longer appears after running cp /usr/share/terminfo/x/xterm-256color ~/.terminfo/x/ and

Re: Bash instead of ksh

2024-04-02 Thread Jeremy Mates
On 2024-04-02 15:34:56 -0400, Steve Litt wrote: > If you mean a shell with which to run shellscripts, I wouldn't do that. > Inside bash is a big old messy attack surface. There was a bash exploit > several years ago (was it heartbleed?) that caused me to change all > shellscript shebangs to

Re: TIP: wildcard in opening files

2024-02-10 Thread Jeremy Baxter
On Sun Feb 11, 2024 at 4:43 PM NZDT, Nowarez Market wrote: > For anyone late like me, I now found really liberatory (saving me from > typos and missing brackets mistakes) the possibility to use the wildcard > opening files by nano and vi as well, eg: > > having date-uuid-blog101.txt > > "nano

Re: ksh horizontal line scrolling

2024-02-10 Thread Jeremy Baxter
de to see if I can make some sort of improvement to it... thanks for the explanation. -Jeremy

ksh horizontal line scrolling

2024-02-08 Thread Jeremy Baxter
ot;disables" it for the most part but brings in other weird behaviours like massive gaps between lines when pressing ctrl-u and random newlines showing up when scrolling through history. -Jeremy

lilypond PDF builds broken in OpenBSD 7.4 following ghostscript-10.02.0->10.02.1 ?

2023-11-13 Thread Jeremy Mates
Nov 12 19:41:30 gear pkg_add: Added firefox-119.0->119.0.1 Nov 12 19:41:55 gear pkg_add: Added ghostscript-10.02.0->10.02.1 PDF builds fail, can someone confirm this isn't my system being wacky? $ ls test.* test.ly $ cat test.ly \version "2.22.2"

rare vi crash

2023-07-07 Thread Jeremy Mates
The crash happens maybe a few times per year, and eventually resolved to the following guard with the error "Tailq for buffer \xc8 is empty", but I'm not sure how \xc8 is getting there, maybe I'm lingering on a control key or something whilst flailing at the keyboard. Some idle testing with "p did

Re: vi - inability to search backwards for ?

2023-05-14 Thread Jeremy Mates
On 2023-05-13 20:53:01 -0700, Kastus Shchuka wrote: > Have you tried using ?[\?] in extended mode? It works for me. Yes, that's already in the blog posting and is a bit more to type and remember than a ?\?

Re: vi - inability to search backwards for ?

2023-05-13 Thread Jeremy Mates
On 2023-05-13 10:26:42 +0200, Andreas Kusalananda Kähäri wrote: > I'm assuming this is with the "extended" option set in vi, right? Yes.

vi - inability to search backwards for ?

2023-05-13 Thread Jeremy Mates
A search for /\/ is okay; this discards the \ and searches for "/" A search for ?\? is not okay; this discards the \ and searches for "?" which is an invalid regular expression, "RE error: repetition-operator operand invalid". A problematic bare leading ? on a backwards search can be escaped by

Re: ex/vi 100% CPU when STDIN_FILENO set to O_NONBLOCK

2022-12-12 Thread Jeremy Mates
On 2022-12-12 10:01:05 +0100, Claudio Jeker wrote: > I think this is the wrong way around. The callers need to be fixed to pass > a blocking stdin to programs since that is what every unix utility > expects. What you propose it to fix every unix utility to have such a check > at the start of main.

ex/vi 100% CPU when STDIN_FILENO set to O_NONBLOCK

2022-12-11 Thread Jeremy Mates
... 42136 ex RET read -1 errno 35 Resource temporarily unavailable 42136 ex CALL read(0,0x3d94b585400,0xff) 42136 ex RET read -1 errno 35 Resource temporarily unavailable 42136 ex CALL read(0,0x3d94b585400,0xff) ... this condition can

Re: embarrassing mail problem

2022-10-05 Thread Jeremy Mates
On Wed, Oct 05, 2022 at 10:04:36PM +0100, Steve Fairhead wrote: > For Sendmail, the error is "TLS handshake failed"; for smtpd, it's > "Network error on destination MXs". one "fix" would be to disable TLS for the domains in question, which at least would let the mail go through until the

Re: [new] sysutils/obsdpkgup - tools for creating and using a package index

2021-01-08 Thread Jeremy O'Brien
> On 2021/01/06 12:03, Stuart Henderson wrote: > Looking at this it's better than I thought it would be, there are some > problems though - > Hey thanks! > - The version number comparison using mcuadros/go-version is wrong, > it doesn't match packages-specs(5). > I took the time to learn some

Re: Bug in pkgtools version parsing logic?

2021-01-07 Thread Jeremy O'Brien
On Wed, Jan 6, 2021, at 17:16, Jeremy O'Brien wrote: > Hi there, > > I'm looking through the pkgtools code to determine how the version > comparison logic works, and I came across this block of code at > /usr/libdata/perl5/OpenBSD/PackageName.pm:385: > > sub from_st

Bug in pkgtools version parsing logic?

2021-01-06 Thread Jeremy O'Brien
parison where the 1.4.0 portion of the version doesn't change) a future version comparison with this package version will potentially be done alphabetically? Is this intentional? Or perhaps I'm missing something here or elsewhere with this code. Thank you, Jeremy

Re: OpenBSD + Firebird Server

2020-11-24 Thread Jeremy Evans
r_setpshared and pthread_mutexattr_setpshared, which OpenBSD doesn't implement. Thanks, Jeremy

Re: Conditions that can trigger a package upgrade?

2020-11-05 Thread Jeremy O'Brien
On Thu, Nov 5, 2020, at 03:38, Stuart Henderson wrote: > The current package on mirrors has changed since your downloaded file > (at least glib2 was updated) so maybe it's just because you're looking > at an old file. > Sigh. I double-checked my /etc/installurl. Apparently it’s set to

Re: Conditions that can trigger a package upgrade?

2020-11-04 Thread Jeremy O'Brien
On Wed, Nov 4, 2020, at 11:37, Chris Bennett wrote: > > You haven't supplied any information for answering this question well. > Are you running -current and updating to a new snapshot? > I upgraded to a new snapshot. > Easy answer. System libraries that these packages were built with have >

Conditions that can trigger a package upgrade?

2020-11-02 Thread Jeremy O'Brien
ror, and compared its signature to my currently installed version. The signatures and version match exactly, however pkg_add still updates the package. Does anyone know what scenario is triggering this update? Thanks, Jeremy

Re: Recent regression in SSL session reuse

2020-07-30 Thread Jeremy Evans
On 07/30 08:06, Theo Buehler wrote: > On Wed, Jul 29, 2020 at 02:57:33PM -0700, Jeremy Evans wrote: > > After an OpenBSD upgrade, one of Ruby's tests for SSL session > > reuse started to fail. After some debugging, I have found that > > if a maximum SSL version i

Recent regression in SSL session reuse

2020-07-29 Thread Jeremy Evans
avior changed between June 15 and July 8. If the Ruby program below is not sufficient to diagnose this issue, please let me know and I'll see if I can translate it to C. I checked and the min_version call is calling SSL_CTX_set_min_proto_version(3), and that is the only change it makes. Thanks, Jeremy

Re: New tool to (quickly) check for available package upgrades

2020-06-17 Thread Jeremy O'Brien
On Wed, Jun 17, 2020, at 13:45, Janne Johansson wrote: > Do think of what you call "the index file" in terms of "I check/replace some > 100+G of snapshots and packages every 24h", at which point do you replace > that single file, before, under or after none,most,all packages for your arch > are

Re: New tool to (quickly) check for available package upgrades

2020-06-17 Thread Jeremy O'Brien
On Wed, Jun 17, 2020, at 13:45, Janne Johansson wrote: > > Now if someone invents a decent piece of code to use http connection pooling, > quic/http3/rsync or whatever to speed up getting the required info, I'm sure > we mirror admins would be happy to add/edit our server programs to serve it.

Re: New tool to (quickly) check for available package upgrades

2020-06-17 Thread Jeremy O'Brien
On Wed, Jun 17, 2020, at 08:47, Marc Espie wrote: > On Wed, Jun 17, 2020 at 08:28:02AM -0400, Jeremy O'Brien wrote: > > On Tue, Jun 16, 2020, at 21:02, Marc Espie wrote: > > > > > > The concept you need to understand is snapshot shearing. > > > > >

Re: New tool to (quickly) check for available package upgrades

2020-06-17 Thread Jeremy O'Brien
On Tue, Jun 16, 2020, at 21:02, Marc Espie wrote: > > The concept you need to understand is snapshot shearing. > > A full package snapshot is large enough that it's hard to guarantee that > you will have a full snapshot on a mirror at any point in time. > > In fact, you will sometimes encounter

Re: New tool to (quickly) check for available package upgrades

2020-06-17 Thread Jeremy O'Brien
On Tue, Jun 16, 2020, at 21:02, Marc Espie wrote: > > The concept you need to understand is snapshot shearing. > > A full package snapshot is large enough that it's hard to guarantee that > you will have a full snapshot on a mirror at any point in time. > > In fact, you will sometimes encounter

Re: New tool to (quickly) check for available package upgrades

2020-06-16 Thread Jeremy O'Brien
On Tue, Jun 16, 2020, at 17:19, Daniel Jakots wrote: > I think if I wanted to compare packages between a machine of mine and a > mirror, I would compare the quirks package signature timestamps. On > your machine you can find it with > $ grep digital-signature /var/db/pkg/quirks*/+CONTENTS > and on

New tool to (quickly) check for available package upgrades

2020-06-16 Thread Jeremy O'Brien
the metadata contained within to determine if an upgrade is needed. If anyone knows of an alternative way to determine when a same-version package install is required, I would love to know of it. In the meantime, I hope someone else can make use of this tool as well. Thanks! Jeremy

IKEv2 multiple subnets

2019-10-25 Thread Jeremy
client, I would be very grateful if anybody could help me find out what is happening. Thank you ! -- Jeremy

Re: Two part question on httpd

2019-10-21 Thread Jeremy
dbs. Regards, -J On Mon, Oct 21, 2019 at 2:37 PM Justin Noor wrote: > Try these sites: > > https://learnbchs.org > https://kristaps.bsd.lv/kcgi > > On Mon, Oct 21, 2019 at 11:20 AM Jeremy wrote: > >> Hello, >> >> I am experimenting with httpd's cgi options

Two part question on httpd

2019-10-21 Thread Jeremy
Hello, I am experimenting with httpd's cgi options. Why when I run binaries written in C from /var/www/cgi-bin, it's allowed but if I use other compiled languages (ex: Haskell) I need to adjust the wxallowed options for where /var/www/cgi-bin is mounted? Is this due to where it says: "...The

Re: Software caused connection abort (53) squid 4.6 on OpenBSD 6.5

2019-05-23 Thread Jeremy Evans
te (which started working correctly after restarting). I'm considering downgrading squid locally to the version that shipped with 6.4 in order to work around the issue. Jeremy

Re: Criteria for errata

2019-05-10 Thread Jeremy O'Brien
On Fri, May 10, 2019, at 16:40, Jeremy O'Brien wrote: > On Fri, May 10, 2019, at 13:29, Sebastian Benoit wrote: > > Jeremy O'Brien(neut...@fastmail.com) on 2019.05.10 10:30:42 -0400: > > > On Fri, May 10, 2019, at 09:58, Jonathan Gray wrote: > > > > On Fri, May 10,

Re: Criteria for errata

2019-05-10 Thread Jeremy O'Brien
On Fri, May 10, 2019, at 17:33, Joe M wrote: > > > > That's how I understood the bug too, but when I enabled a debug build > > > > of xenocara and examined the core dump after a crash, I had the same > > > > "VGAarbiterSpriteMoveCursor" recursive-stack backtrace as in that bug > > > > report. >

Re: Criteria for errata

2019-05-10 Thread Jeremy O'Brien
On Fri, May 10, 2019, at 13:29, Sebastian Benoit wrote: > Jeremy O'Brien(neut...@fastmail.com) on 2019.05.10 10:30:42 -0400: > > On Fri, May 10, 2019, at 09:58, Jonathan Gray wrote: > > > On Fri, May 10, 2019 at 09:14:00AM -0400, Ted Unangst wrote: > > > > Jeremy

Re: Criteria for errata

2019-05-10 Thread Jeremy O'Brien
On Fri, May 10, 2019, at 09:58, Jonathan Gray wrote: > On Fri, May 10, 2019 at 09:14:00AM -0400, Ted Unangst wrote: > > Jeremy O'Brien wrote: > > > I've snagged the 6.5 xenocara.tar.gz, patched it with just that above > > > fix, and installed it on my system which ha

Criteria for errata

2019-05-10 Thread Jeremy O'Brien
into this issue on their 6.5 installs, and if so, is this something worth pushing a reliability errata out for? I'm unfamiliar with how the process traditionally works so please excuse me if the question is outlandish. Thanks, Jeremy

Re: X hangs again while on integrated

2019-05-08 Thread Jeremy O'Brien
On Wed, May 8, 2019, at 03:59, Gregory Edigarov wrote: > > On 07.05.19 11:39, Gregory Edigarov wrote: > > I've got some more info on this. > > > > tried to run X with tiling wms: spectrwm (my main wm), dwm, i3 - all > > hang absolutely the same way. (see my last mail with X backtraced) > > > >

Re: sound short stops in mpv when doing firefox stuff

2019-04-29 Thread Jeremy O'Brien
On Fri, Feb 1, 2019, at 05:45, Mihai Popescu wrote: > Hello, > > I use mpv with a network stream (radio) and in the same time I use > firefox for browsing. There is some audible sound short stop each time > I open a new tab in firefox and sometimes when in change tabs. > This it doesn't happen if

HP pavilion g6 | display port & suspend

2018-03-01 Thread Jeremy
I recently installed -current on an HP pavilion g6 (see pastebin link for hw specifics) It works better than I expected, but there are three small issues. One, I get a black screen. Since it has a screen, vga port & hdmi port, for some reason it defaults to the ports instead of the screen, even

Re: Route add - too many levels of symbolic links

2016-09-28 Thread Jeremy Evans
ts committed, but > it fixed OpenVPN for my use case at least. > > Your milage may vary. > Also, if you want a workaround without waiting for a patch, remove any route calls from your openvpn configuration, set script-security 2, and use an up script such as: #!/bin/sh /sbin/route add -net 123.45.67.0/24 $4 Thanks, Jeremy

Re: pf/routing config for two external interfaces

2016-07-07 Thread Jeremy
On 28/06/2016 4:38 a.m., Bobby Johnson wrote: I've setup a few OpenBSD machines to do failover with 2 internet interfaces. I didn't use multipath, pf will pass traffic without it. I did find it necessary to specify a reply-to for each of my pass in rules for services on the 2nd interface.

pf/routing config for two external interfaces

2016-06-22 Thread Jeremy
I have a SOHO firewall in production which has been connected to the net via an ADSL line. We have a new fibre connection which will replace the ADSL connection once I get the system switched over. I am having trouble with the pf configuration during the transition period. What I would like to

Re: OT: Any experience connecting OpenBSD via ONT ?

2016-04-27 Thread Jeremy
On Tue, 26 Apr 2016 17:53:32 -0500 Adam Thompson wrote: > If all else fails, run "ifconfig em2 up", and then "tcpdump -i em2 > - -l -n" and see what, if any, traffic is coming from the ONT on > the raw ethernet port (this will include the VLAN 10 packets, too). > If

Re: OT: Any experience connecting OpenBSD via ONT ?

2016-04-26 Thread Jeremy
ibre_if="{ em2 vlan10 }" ... pass in log on $fibre_if == Am I missing anything ? I've also run: tcpdump -n -e -ttt -r /var/log/pflog and there are no instances of em2 or vlan10 logged. Thanks Jeremy

Re: OT: Any experience connecting OpenBSD via ONT ?

2016-04-26 Thread Jeremy
priority: 0 vlan: 10 parent interface: em2 groups: vlan status: active Cheers Jeremy

Re: Ruby 1.9.3 package on OpenBSD 5.9 (snapshots) missing

2016-03-20 Thread Jeremy Evans
patches). Ruby 1.8.7 is still needed by other packages in the ports tree, which is why it is still in ports. Ruby 1.9.3 is not used by anything else in the ports tree, so it was removed after Ruby 2.0 was EOL. Thanks, Jeremy

Re: Industrial use of line printers, does/would your company/organization use them with our lpd?

2016-02-17 Thread Jeremy Evans
first using a PostScript HP 4050dn and now using a Samsung M2830DW (with a filter from cups-filters). Jeremy

Re: npppd and pf

2015-11-13 Thread Jeremy
ust an user of npppd i > run it already for some time and i think it works very well. Here are > my notes, see if there are some use for them, hope Google translates > it, > http://www.auul.pri.ee/wiki/L2TP/IPSec_serveri_kasutamine_operatsioonis%C3%BCsteemiga_OpenBSD#ARP_proxy > > &g

npppd and pf

2015-11-12 Thread Jeremy
;/etc/npppd/npppd-users" } bind tunnel from PPTP authenticated by LOCAL to pppx0 = # ifconfig pppx0 pppx0: flags=8051<UP,POINTOPOINT,RUNNING,MULTICAST> mtu 1400 description: jeremy priority: 0 groups: p

Re: dhcpd exiting with strange error message.

2015-11-08 Thread Jeremy
t; On Sun, Nov 8, 2015 at 3:35 PM, Jeremy <open...@smartpoint.co.nz> > wrote: > > No I only have one instance running. > > > > # ps aux | grep dhcp > > _dhcp 7784 0.0 0.1 756 1340 ?? Ss 9:00AM > > 0:00.00 /usr/sbin/dhcpd em0 > > In

Re: dhcpd exiting with strange error message.

2015-11-08 Thread Jeremy
m guessing is looking for something read from a config file but I could be off base. I've taken to restarting dhcpd every hour from crontab so that things continue to work in the meantime. Is there any additional debug I can enable or do I have to start with the dhcpd source code ? Cheers Jeremy On Fri,

dhcpd exiting with strange error message.

2015-11-05 Thread Jeremy
I'm having trouble with dhcpd on my firewall/server serving a mix of Windows and Linux clients. After running OK for several minutes/hours, it keeps crashing with the following error and I can't seem to find the problem. eg. Nov 6 08:25:34 janus dhcpd[11758]: DHCPREQUEST for 192.168.7.36 from

Re: problem building ruby on SPARC

2015-03-17 Thread Jeremy Evans
with the packages on your machine. If you don't want to fix that, you can set the PKG_CREATE_NO_CHECKS=Yes environment variable to work around this problem. Thanks, Jeremy

Re: Ruby 2.2.0 build fails on OpenBSD 5.5

2015-01-19 Thread Jeremy Evans
-2.2.0 (Makefile:684 'build-ext') !!! Compiling ruby 2.2.0 failed! Thanks! O.D. 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. Thanks, Jeremy

Re: missing packages for SPARC

2015-01-13 Thread Jeremy Evans
, Jeremy

Re: Contributing

2014-11-17 Thread Jeremy
not intend to sow discord among this mailing list, and hope I haven't asked an unhelpful question. But thank you everyone for all of the suggestions. I will read them all carefully. -Jeremy On Sun, Nov 16, 2014 at 8:52 AM, andrew fabbro and...@fabbro.org wrote: On Sat, Nov 15, 2014 at 9:50 PM

Re: new installed openbsd5.6 's sysctl.conf

2014-11-15 Thread Jeremy
I found it in /etc/examples , unless I misunderstand your question. On Sat, Nov 15, 2014 at 6:29 PM, Tuyosi Takesima nakajin.fu...@gmail.com wrote: hi ,all . the new 5.6 machine's /etc/sysctl.conf is only machdep.lidsuspend=1 # Try to suspend on lid close so i get etc55.tgz . when i do

Contributing

2014-11-14 Thread Jeremy
on the website now. Could someone kindly steer me in the correct direction. -Jeremy

NIC hotplugging

2014-07-23 Thread Jeremy Hanmer
It looks to me like most or all of the available NIC drivers (em, rtl8139 and vio, anyway) don't support hot plugging as recently as 5.4 and 5.5, is that correct? If that's true, can anyone give me a pointer to the related docs so that support could be added?

Re: debugging vio issue?

2014-05-28 Thread Jeremy Hanmer
We've seen this exact issue on 5.3 and 5.4 in the same scenario (KVM VM) and I was actually going to pose the same question you did after testing 5.5 later today. Our VMs are running as routers in an openstack cluster and it appeared to us that it was a lack of activity that caused the network

Re: sshd broken in today's snapshot?

2014-05-02 Thread Jeremy Evans
the server's point of view: # dmesg | head -1 OpenBSD 5.5-current (GENERIC.MP) #95: Fri May 2 06:31:18 MDT 2014 # /usr/sbin/sshd -d debug1: Enabling compression at level 6. [preauth] Try disabling compression and see if that fixes it. Jeremy

Re: Printing problem

2014-02-21 Thread Jeremy Evans
://www.openbsd.org/cgi-bin/cvsweb/src/usr.sbin/lpr/ that would break and fix this. Remote printing with lpd was broken from January 20 to February 7. usr.sbin/lpr/lpd/printjob.c (broken by r1.50, fixed by r1.52) Thanks, Jeremy

Re: Printing problem

2014-02-19 Thread Jeremy Evans
On Wed, Feb 19, 2014 at 11:20 AM, Chris Bennett chrisbenn...@bennettconstruction.us wrote: I don't print from my laptop often, but all was fine until recently. I am at latest snapshot: OpenBSD 5.5-beta (GENERIC) #247: Fri Feb 7 12:04:52 MST 2014

Re: Ruby and OpenBSD 5.3

2013-06-07 Thread Jeremy Evans
pkg_add -i ruby` Thanks, Jeremy

Use pax instead of cpio in FAQ 14.4 (Adding extra disks)

2013-01-11 Thread Jeremy Evans
and tried to use cpio to copy partitions, I noticed that it didn't work on bsd.rd. Thoughts/OKs? Jeremy Index: faq14.html === RCS file: /cvs/www/faq/faq14.html,v retrieving revision 1.202 diff -u -p -r1.202 faq14.html --- faq14.html

Re: undeadly

2012-04-25 Thread Jeremy O'Brien
First laptop looks like either wmii or i3 based on the dynamic tiling (tab layouts within tiled layout) and colorscheme, though xmonad could also be coaxed into providing a layout like that. Second laptop looks like fvwm to me based on the fact that the windows have titlebars. cwm doesn't have

Re: undeadly

2012-04-25 Thread Jeremy O'Brien
On Wed, Apr 25, 2012 at 12:04:27PM +0200, mxb wrote: On 04/25/2012 11:52 AM, Mihai Popescu wrote: Hi, Nice article about Paris. Can someone point out what text editors are open in that picture? I don't want to start the old war about editors, I'm just interested what other options

Re: undeadly

2012-04-25 Thread Jeremy O'Brien
On Wed, Apr 25, 2012 at 01:21:06PM +0200, Gilles Chehade wrote: On Wed, Apr 25, 2012 at 07:10:32AM -0400, Jeremy O'Brien wrote: On Wed, Apr 25, 2012 at 12:04:27PM +0200, mxb wrote: On 04/25/2012 11:52 AM, Mihai Popescu wrote: Hi, Nice article about Paris. Can someone point

Re: in line anchor syntax error

2012-04-12 Thread Jeremy Evans
the syntax error with pfctl -vnf /etc/pf.conf I tryed with and without anchor name. Here a config test file I trying the anchor on : achor test in on em3 to lserver { My first guess would be using achor instead of anchor. Jeremy

Re: Latest ThinkPad model fully compatible with OpenBSD out of the box?

2012-03-24 Thread Jeremy O'Brien
On Thu, Sep 22, 2011 at 09:12:11AM -0700, James Hozier wrote: What's the latest ThinkPad that OpenBSD can be installed on, and have everything functional without having to tweak any special settings within OpenBSD? I just bought an X60s for cheap, and it's the first laptop I've used

Re: locate weirdness

2012-01-11 Thread Jeremy O'Brien
On Wed, Jan 11, 2012 at 14:17, L. V. Lammert l...@omnitec.net wrote: At 01:04 PM 1/11/2012, Barry Grumbine wrote: Bite the bullet, upgrade, life is better at 5.0 Sorry, but *UPGRADING* isn't the question - the question is why locate is not working properly. If nobody has ever seen such a

Re: locate weirdness

2012-01-11 Thread Jeremy O'Brien
On Wed, Jan 11, 2012 at 14:47, L. V. Lammert l...@omnitec.net wrote: At 01:30 PM 1/11/2012, Jeremy O'Brien wrote: 4.3 was released May 1, 2008. That's almost 4 years old software. What are you expecting here? Someone to check out the code from that version and deeply inspect what may

Re: OpenBSD 4.9 pre-orders

2011-03-25 Thread Jeremy Chase
Yeah - this is a good question... Normally I get an American XL and that is fine. How do these compare? /me has CC out... -- Jeremy Chase http://twitter.com/jeremychase On Fri, Mar 18, 2011 at 3:55 AM, Henrik Engmark h...@tti.se wrote: I am kind of uncertain about Canadian clothes sizes. I

Re: ruby-thin: Errno::EPERM wtih QUIT Signal

2011-02-23 Thread Jeremy Evans
. I'll take care of it. Jeremy

Don't forget to plug the project

2011-02-02 Thread Jeremy Chase
:52 achin_ yes, the openssh project deserves a lot of love (both the tangible and untangible kind) 15:52 tobym donation sent -- Jeremy Chase http://twitter.com/jeremychase

Re: X41 resume trouble

2011-01-23 Thread Jeremy O'Brien
On Sat, Jan 22, 2011 at 09:48:33PM -0500, Jeremy O'Brien wrote: Hello misc! So I installed OpenBSD 4.8 on my thinkpad X41, and everything seems to work perfectly, except resume. If I suspend the laptop by closing the lid, and wake it up quickly after, it seems to resume every time. If I

Re: multicore processors gain

2011-01-07 Thread Jeremy Chase
/Symmetric_multiprocessing -- Jeremy Chase http://twitter.com/jeremychase On Fri, Jan 7, 2011 at 9:53 AM, Mihai Popescu B.S. mihai...@gmail.com wrote: Hi folks, I will reformulate the question. Sorry for this, but it sleeps off topic. So, I'm interested about Intel Core 2 Duo family and i3

Re: multicore processors gain

2011-01-06 Thread Jeremy Chase
will only use a single core, even though it is multi-threaded. Bottom line, SMP is very well supported. People blow the BKL thing out of proportion. -- Jeremy Chase http://twitter.com/jeremychase On Thu, Jan 6, 2011 at 6:45 AM, Mihai Popescu B.S. mihai...@gmail.com wrote: Hello, I got the idea

Re: set nano as deafult when editing crontab

2010-12-23 Thread Jeremy Huiskamp
On 2010/12/23 4:48 PM, Orestes Leal R. wrote: I want to edit the crontab with nano but by default vi it's invoked when I do 'crontab -e' Did you read crontab(1)?

Re: thinkpad sl500: iwn0: radio is disabled by hardware switch

2010-12-16 Thread Jeremy O'Brien
On Sat, May 22, 2010 at 12:29:28PM +0200, Peter N. M. Hansteen wrote: Gregory Edigarov g...@bestnet.kharkov.ua writes: Where is that 'hardware switch'? on my SL500 it's a little slider switch on the front, to the left and down from where you fumble your trackpad On my X31, radio is

Re: insecure scheduler in OpenBSD 4.7

2010-12-16 Thread Jeremy O'Brien
On Tue, Oct 12, 2010 at 01:57:20PM +0200, Alexandre Ratchov wrote: On Tue, Oct 12, 2010 at 12:41:04AM +0400, Dmitry-T wrote: Try to recover ballance: renice 20 -p 30996 renice -20 -p 21919 25914 754 ^ If you run any cpu bound process with priority -20, you will give all

Re: OpenBSD in Rock Band 3

2010-12-08 Thread Jeremy Chase
I'm sure they'll recall all the CD's and reprint them. -- Jeremy Chase http://twitter.com/jeremychase On Wed, Dec 8, 2010 at 4:46 AM, Marco Peereboom sl...@peereboom.us wrote: Yeah they took a shortcut. B No good. They have to list *every* individual copyright message from every file

Re: OpenBSD in Rock Band 3

2010-12-08 Thread Jeremy Chase
Exactly. MTV couldn't care less. -- Jeremy Chase http://twitter.com/jeremychase On Wed, Dec 8, 2010 at 1:00 PM, Marti Martinez ma...@ece.arizona.edu wrote: I'm fairly certain that he's suggesting that they *will* continue to break the law, not that they *should* do so. / It's like Wikileaks

Re: Campus internet connection

2010-11-22 Thread Jeremy O'Brien
donating some hardware would encourage some developers to jump into this. Im not so sure about whether its a priority or not atm, but it sure is something nice to have in the base system. As for the hw donation, maybe we can start a pot so other ppl chips in On 11/22/10, Jeremy O'Brien

Re: An OpenBSD smartphone

2010-11-21 Thread Jeremy O'Brien
I was just thinking today about how cool it would be to have an OpenBSD phone, and then I saw your post. How bizarre. Anyway, the closest thing I have found to a pocket computer phone is the android line of phones. I've had an original Droid, and now I have a Droid Incredible, and I absolutely

Re: Campus internet connection

2010-11-21 Thread Jeremy O'Brien
Do you know if there are any plans in the works for implementing 802.1X in the future? My campus also insists on using it, and it is very frustrating. On Nov 17, 2010 10:53 AM, David Coppa dco...@gmail.com wrote: On Wed, Nov 17, 2010 at 4:38 PM, Tomas Vavrys vav...@cleancode.cz wrote: Hello, I

Re: Number of static IP addresses needed for CARP

2010-11-18 Thread Jeremy Chase
On Thu, Nov 18, 2010 at 2:15 PM, Steven Surdock ssurd...@engineered-net.com wrote: -Original Message- From: owner-m...@openbsd.org [mailto:owner-m...@openbsd.org] On Behalf Of Stuart Henderson On 2010-11-18, Jan Johansson janj+open...@wenf.org wrote: Jeff Ross

Re: em(4) is just 10baseT

2010-11-16 Thread Jeremy Chase
I'm just spitballing here, but have you verified that it is really 10baseT? I would do an experiment to see what ball-park transfer rates you can get on your LAN. It is possible that the output of ifconfig is incorrect. -- Jeremy Chase http://twitter.com/jeremychase On Tue, Nov 16, 2010 at 5

Re: Building a Practical Penetration Test Lab

2010-11-11 Thread Jeremy Chase
2010/11/11 Hugo Osvaldo Barrera h...@osvaldobarrera.com.ar: On 10/05/10 12:47, Toma9 Vavys wrote: Hello, I would like to become helpful OpenBSD developer (pentester) one day, so I have a few questions. I am CompSci student at the moment. I consider myself as a white hat person and I really

Re: Architeture Choose

2010-11-09 Thread Jeremy Chase
I've looked into v20z's, but was turned off by the cost of a replacement power supply. A new one is roughly 200 USD. Or does the v20z accept a standard 1U power supply? -- Jeremy Chase http://twitter.com/jeremychase On Tue, Nov 9, 2010 at 6:01 PM, Stuart Henderson s...@spacehopper.org wrote

Re: Architeture Choose

2010-11-05 Thread Jeremy Chase
will be fine from a performance standpoint, but as Christopher said, the Athlon will be the snappiest. I'd still get the Sun box though, assuming the fan noise isn't a problem. -- Jeremy Chase http://twitter.com/jeremychase On Fri, Nov 5, 2010 at 9:14 AM, LeviaComm Networks n...@leviacomm.net wrote

Re: Architeture Choose

2010-11-05 Thread Jeremy Chase
I'm not fond of MacPPC machines for the very reason many people love them: the style. B The cute cases are a pain in the butt to deal with I second that. I had to replace the HD in my emac and I literally had to take the motherboard out to get access. -- Jeremy Chase http://twitter.com

Looks like my 4.8 CD is in the mail!

2010-10-13 Thread Jeremy Chase
I just got this in my inbox: USPS OpenBSD Order:2010/9/10-13:4:42-15337-- Very exciting! -- Jeremy Chase http://twitter.com/jeremychase

libc glob issue?

2010-10-07 Thread Jeremy Chase
I found this article that claims 4.7's ftpd and sftp are vulnerable to DoS: http://www.h-online.com/open/news/item/Flaw-in-libc-implementation-threatens-FTP-servers-1103319.html Which links to: http://ftp.netbsd.org/pub/NetBSD/security/advisories/NetBSD-SA2010-008.txt.asc I haven't seen any

  1   2   3   >