Re: style(9) question - declarations in for(;;) statements

2025-06-21 Thread Crystal Kolipe
On Sat, Jun 21, 2025 at 02:26:12PM -0400, Geoff Steckel wrote: > Recent C standards allow (a) >     for (int i = 0; i < 10; i++) > which limits the scope of i to the loop > instead of (b) >     int i; >     for (i = 0; > which leaves i in scope > > Is it permissible to use (a) in kernel code

style(9) question - declarations in for(;;) statements

2025-06-21 Thread Geoff Steckel
Recent C standards allow (a)     for (int i = 0; i < 10; i++) which limits the scope of i to the loop instead of (b)     int i;     for (i = 0; which leaves i in scope Is it permissible to use (a) in kernel code when the value of i is not used outside the loop?

Re: hibernate question

2025-05-11 Thread patrick keshishian
On Sun, May 11, 2025 at 11:32 PM patrick keshishian wrote: > > Hi Mike, > > On Wed, May 7, 2025 at 8:44 PM Mike Larkin wrote: > > > > On Wed, May 07, 2025 at 12:18:53AM -0700, patrick keshishian wrote: > > > This is potentially a very dumb question; please be

Re: hibernate question

2025-05-11 Thread patrick keshishian
Hi Mike, On Wed, May 7, 2025 at 8:44 PM Mike Larkin wrote: > > On Wed, May 07, 2025 at 12:18:53AM -0700, patrick keshishian wrote: > > This is potentially a very dumb question; please bear with me. > > > > I have an older thinkpad currently running OpenBSD 7.6. I have >

Re: hibernate question

2025-05-07 Thread Mike Larkin
On Wed, May 07, 2025 at 12:18:53AM -0700, patrick keshishian wrote: > This is potentially a very dumb question; please bear with me. > > I have an older thinkpad currently running OpenBSD 7.6. I have > recently added more RAM to the thinkpad, so the swap partition is > smaller tha

hibernate question

2025-05-07 Thread patrick keshishian
This is potentially a very dumb question; please bear with me. I have an older thinkpad currently running OpenBSD 7.6. I have recently added more RAM to the thinkpad, so the swap partition is smaller than available RAM. Is there a way I can prevent OBSD from entering hibernation state? Reading

Re: stupid question about smtpd

2025-05-02 Thread 4
> X-Yandex-FolderName: Inbox > Received: from postback4b.mail.yandex.net (postback4b.mail.yandex.net > [2a02:6b8:c02:900:1:45:d181:da04]) > by s2aesvjp6okmqy6k.sas.yp-c.yandex.net (notsolitesrv/Yandex) with > LMTPS id XC5rmRsrAb1Z-PHFe1YVW > for ; Fri, 02 May 2025 18:28:20 +0300 >

Re: stupid question about smtpd

2025-05-02 Thread Janne Johansson
Den fre 2 maj 2025 kl 17:16 skrev 4 : > > when smtpd starts, but there are some problems with dns(i fixed it, so i > don’t know what exactly the problem was), then a complete stop of the os > loading is another brilliant find or is daemon_timeout still needed there by > default? If the daemon n

stupid question about smtpd

2025-05-02 Thread 4
when smtpd starts, but there are some problems with dns(i fixed it, so i don’t know what exactly the problem was), then a complete stop of the os loading is another brilliant find or is daemon_timeout still needed there by default? ps: i take this opportunity to congratulate everyone on the new

Re: Quick question - resizing/shrinking UFS to resize root?

2025-04-18 Thread Ian Darwin
On 4/17/25 3:36 PM, Gwen Nelson wrote: growfs can only extend not reduce, right? If I can reduce, that's awesome - I'll do that. That's why it's called growfs not resizefs. Sorry. There are some caveats in the man page, btw.

Re: Quick question - resizing/shrinking UFS to resize root?

2025-04-17 Thread Gwen Nelson
growfs can only extend not reduce, right? If I can reduce, that's awesome - I'll do that. On Thu, 17 Apr 2025, 20:09 Chris Bennett, wrote: > On Wed, Apr 16, 2025 at 08:56:02PM GMT, Gwen Nelson wrote: > > Hey all > > > > Just wondering if this is possible without having to do a full > dump/resto

Re: Quick question - resizing/shrinking UFS to resize root?

2025-04-17 Thread Chris Bennett
On Wed, Apr 16, 2025 at 08:56:02PM GMT, Gwen Nelson wrote: > Hey all > > Just wondering if this is possible without having to do a full dump/restore. > > I'd like to setup a dual boot on one of my machines, currently the whole > disk is devoted to OpenBSD, the disk label is setup with everything

Re: Quick question - resizing/shrinking UFS to resize root?

2025-04-16 Thread Ian Darwin
On 4/16/25 3:56 PM, Gwen Nelson wrote: I'd like to setup a dual boot on one of my machines, currently the whole disk is devoted to OpenBSD, the disk label is setup with everything at / for simplicity reasons as until now I had no need for dual-boot. Is this possible? On a Linux box I'd obviou

Quick question - resizing/shrinking UFS to resize root?

2025-04-16 Thread Gwen Nelson
Hey all Just wondering if this is possible without having to do a full dump/restore. I'd like to setup a dual boot on one of my machines, currently the whole disk is devoted to OpenBSD, the disk label is setup with everything at / for simplicity reasons as until now I had no need for dual-boot.

Re: pair(4) question

2025-04-05 Thread deich...@placebonol.com
I have a/24 from ARDC 44 net. I put that/24 into a different rdomain, makes it easier for me to move it off to a different router in the future. I have ipsec tunnels from various amateur radio remote stations which terminate in the rdomain, this system is used as a hub for these sites. diana

Re: pair(4) question

2025-03-31 Thread deich...@placebonol.com
Thanks for the detailed information, I'll take a look at rport(4) after I update this system to 7.6. 73 diana

Re: pair(4) question

2025-03-30 Thread Philipp Buehler
Am 31.03.2025 03:49 schrieb David Gwynne: you can also try rport(4) to replace pair(4) for p2p links between rdomains. Has been some years since i dug through all this - and rport is pretty brand new , thanks for the hint. Unsure why no .Xr .. PS: i would debate if I want a failed IP-config l

Re: pair(4) question

2025-03-30 Thread Andrew Lemin
I had a similar issue years ago which I solved by putting 'up' as the first line in the hostname.pairX files, so the pair interfaces come up without any config first. But that was probably even before the ordering improvements mentioned by David above, and is probably not ideal anymore. I used on

Re: pair(4) question

2025-03-30 Thread David Gwynne
On Mon, Mar 24, 2025 at 09:03:49AM -0600, Diana Eichert wrote: > inline > > On Sun, Mar 23, 2025 at 10:30???PM Philipp Buehler > wrote: > > > > Am 24.03.2025 00:24 schrieb Diana Eichert: > > > Am I missing something or is this the only way to automatically bring > > > up a pair(4) patch? > > > >

Re: pair(4) question

2025-03-24 Thread Diana Eichert
inline On Sun, Mar 23, 2025 at 10:30 PM Philipp Buehler wrote: > > Am 24.03.2025 00:24 schrieb Diana Eichert: > > Am I missing something or is this the only way to automatically bring > > up a pair(4) patch? > > > > find /etc -name '*.pair*' -print -exec cat {} \; > > /etc/hostname.pair0 > > rdom

Re: pair(4) question

2025-03-23 Thread Philipp Buehler
Am 24.03.2025 00:24 schrieb Diana Eichert: Am I missing something or is this the only way to automatically bring up a pair(4) patch? find /etc -name '*.pair*' -print -exec cat {} \; /etc/hostname.pair0 rdomain 0 group pair lladdr 00:00:C0:44:44:00 group and lladdr is optional inet 10.1.1.

pair(4) question

2025-03-23 Thread Diana Eichert
Another question. I used pair(4) to create a point to point connection into a different rdomain from rdomain 0. I followed the man page and everything worked as expected. ( That is it worked once I discovered the typo that kept it from working for 6 days of banging my head on the wall ;-) ) The

Re: usb audio DAC question

2025-03-12 Thread Geoff Steckel
On 3/12/25 3:59 AM, Jan Stary wrote: On Mar 11 18:07:25,g...@oat.com wrote: On 3/11/25 4:38 PM, Jan Stary wrote: On Mar 11 14:41:32,g...@oat.com wrote: Attaching: uaudio0 at uhub3 port 3 configuration 1 interface 1   "Schiit Audio Schiit Modi 3+" rev 2.00/1.00 addr 5 uaudio0: class v2,

Re: usb audio DAC question

2025-03-12 Thread Jan Stary
On Mar 11 18:20:27, g...@oat.com wrote: > On 3/11/25 3:59 PM, Alexandre Ratchov wrote: > > On Tue, Mar 11, 2025 at 02:41:32PM -0400, Geoff Steckel wrote: > > > I have 2 USB DACs. One uses a Burr-Brown chip and the other > > > one is a Modi 3+ (custom circuit) from Schiit Audio. > > > Both work unde

Re: usb audio DAC question

2025-03-12 Thread Alexandre Ratchov
On Tue, Mar 11, 2025 at 06:20:27PM -0400, Geoff Steckel wrote: > > I didn't see any obvious code in uaudio.c that checked that class #. > I found a place where some device capabilities are decoded but > didn't see where a volume/mixer control would show up. The class version is detected in uaudio

Re: usb audio DAC question

2025-03-12 Thread Jan Stary
On Mar 11 18:07:25, g...@oat.com wrote: > On 3/11/25 4:38 PM, Jan Stary wrote: > > On Mar 11 14:41:32,g...@oat.com wrote: > > > I have 2 USB DACs. One uses a Burr-Brown chip and the other > > > one is a Modi 3+ (custom circuit) from Schiit Audio. > > > Both work under Linux. > > > The Schiit seems

Re: usb audio DAC question

2025-03-11 Thread Geoff Steckel
On 3/11/25 3:59 PM, Alexandre Ratchov wrote: On Tue, Mar 11, 2025 at 02:41:32PM -0400, Geoff Steckel wrote: I have 2 USB DACs. One uses a Burr-Brown chip and the other one is a Modi 3+ (custom circuit) from Schiit Audio. Both work under Linux. The Schiit seems to accept playback data but no anal

Re: usb audio DAC question

2025-03-11 Thread Geoff Steckel
On 3/11/25 4:38 PM, Jan Stary wrote: On Mar 11 14:41:32,g...@oat.com wrote: I have 2 USB DACs. One uses a Burr-Brown chip and the other one is a Modi 3+ (custom circuit) from Schiit Audio. Both work under Linux. The Schiit seems to accept playback data but no analog output appears. Both are clai

Re: usb audio DAC question

2025-03-11 Thread Jan Stary
On Mar 11 14:41:32, g...@oat.com wrote: > I have 2 USB DACs. One uses a Burr-Brown chip and the other > one is a Modi 3+ (custom circuit) from Schiit Audio. > Both work under Linux. > The Schiit seems to accept playback data but no analog output appears. > Both are claimed by uaudio(4). > > Note t

Re: usb audio DAC question

2025-03-11 Thread Alexandre Ratchov
On Tue, Mar 11, 2025 at 02:41:32PM -0400, Geoff Steckel wrote: > I have 2 USB DACs. One uses a Burr-Brown chip and the other > one is a Modi 3+ (custom circuit) from Schiit Audio. > Both work under Linux. > The Schiit seems to accept playback data but no analog output appears. > Both are claimed by

usb audio DAC question

2025-03-11 Thread Geoff Steckel
I have 2 USB DACs. One uses a Burr-Brown chip and the other one is a Modi 3+ (custom circuit) from Schiit Audio. Both work under Linux. The Schiit seems to accept playback data but no analog output appears. Both are claimed by uaudio(4). Note the lack of a outputs.dac= line for the unhappy unit.

Re: softraid, bioctl -c 1C failed array question

2025-02-24 Thread Stefan Sperling
On Sat, Feb 22, 2025 at 10:03:58PM -0500, James Boyle wrote: > Hi again, > > I attempted to get the debug messages to print by doing: > cd /usr/src/sys/arch/amd64/conf, copying GENERIC.MP to > GENERIC.MP.BIODEBUG, and making this change: > --- GENERIC.MP Wed Feb 5 23:54:35 2025 > +++ GENERIC.MP

Re: softraid, bioctl -c 1C failed array question

2025-02-22 Thread James Boyle
stead of bioctl -c 1C)? Thank you, --James On Sat, 25 Jan 2025, Stefan Sperling wrote: > Date: Sat, 25 Jan 2025 23:12:01 +0100 > From: Stefan Sperling > To: James Boyle > Cc: misc@openbsd.org > Subject: Re: softraid, bioctl -c 1C failed array question > > On Fri, Jan 24

Re: softraid, bioctl -c 1C failed array question

2025-01-25 Thread Stefan Sperling
On Fri, Jan 24, 2025 at 02:53:06PM -0500, James Boyle wrote: > Hello, > > I was hoping to get a little help with bioctl and the 1C raid mode after a > drive failure. The most recent error message I'm getting when trying to > start the array in a degraded mode is: > # bioctl -c 1C -l /dev/sd0a s

softraid, bioctl -c 1C failed array question

2025-01-24 Thread James Boyle
Hello, I was hoping to get a little help with bioctl and the 1C raid mode after a drive failure. The most recent error message I'm getting when trying to start the array in a degraded mode is: # bioctl -c 1C -l /dev/sd0a softraid0 softraid0: RAID 1C requires two or more chunks Previously, the

Re: Quick question regarding puffy

2025-01-11 Thread Stuart Henderson
On 2025-01-10, Gwen Nelson wrote: > --fe4768062b5781e3 > Content-Type: text/plain; charset="UTF-8" > > Bumping this because it just spiralled into a pointless "discussion" and I > never got any actual answer. > > So, who do I need to speak to about permission to use a modified puffy?

Re: Quick question regarding puffy

2025-01-10 Thread Gwen Nelson
Bumping this because it just spiralled into a pointless "discussion" and I never got any actual answer. So, who do I need to speak to about permission to use a modified puffy? On Tue, 3 Dec 2024, 01:06 Gwen Nelson, wrote: > Hi > > I'm setting up a pubnix server for LGBT people running the best

Re: PF Question/Help

2024-12-29 Thread Ricky Cintron
On 2024-12-29 10:14, Jon Fineman wrote: On Tue, Dec 24, 2024 at 06:42:49PM -0400, Ricky Cintron wrote: On 2024-12-24 08:27, Jon Fineman wrote: third sub net ($wired3) (10.0.3.x) I would like to restrict traffic between it and the ISP. Clients on 10.0.3.x should not be able to access the othe

Re: PF Question/Help

2024-12-29 Thread Jon Fineman
On Tue, Dec 24, 2024 at 06:42:49PM -0400, Ricky Cintron wrote: On 2024-12-24 08:27, Jon Fineman wrote: third sub net ($wired3) (10.0.3.x) I would like to restrict traffic between it and the ISP. Clients on 10.0.3.x should not be able to access the other sub nets. Some notes: - You wrote t

Re: PF Question/Help

2024-12-24 Thread Ricky Cintron
On 2024-12-24 08:27, Jon Fineman wrote: On Tue, Dec 24, 2024 at 02:26:18AM +0100, Markus Wernig wrote: On 12/23/24 19:31, Jon Fineman wrote: third sub net ($wired3) (10.0.3.x) I would like to restrict traffic between it and the ISP. Clients on 10.0.3.x should not be able to access the other s

Re: PF Question/Help

2024-12-24 Thread Jon Fineman
On Tue, Dec 24, 2024 at 02:26:18AM +0100, Markus Wernig wrote: On 12/23/24 19:31, Jon Fineman wrote: third sub net ($wired3) (10.0.3.x) I would like to restrict traffic between it and the ISP. Clients on 10.0.3.x should not be able to access the other sub nets. Take a look at the rules from y

Re: PF Question/Help

2024-12-23 Thread Markus Wernig
On 12/23/24 19:31, Jon Fineman wrote: third sub net ($wired3) (10.0.3.x) I would like to restrict traffic between it and the ISP. Clients on 10.0.3.x should not be able to access the other sub nets. Take a look at the rules from your pf.conf: > block out quick from $wired3 to { $wired1 $wire

PF Question/Help

2024-12-23 Thread Jon Fineman
So new to PF, first time config. I have my gateway with a connection to my ISP and three sub nets. The third sub net ($wired3) (10.0.3.x) I would like to restrict traffic between it and the ISP. Clients on 10.0.3.x should not be able to access the other sub nets. But I can't keep the requests

Re: Quick question regarding puffy

2024-12-04 Thread Jesse Lawton
I use Posteo and can comfirm its great. On Tue, Dec 03, 2024 at 08:37:07PM GMT, Polarian wrote: > Hello, > > Although this is offtopic I will respond to it quickly. > > I wouldn't say protonmail is a good idea, in my opinion everything they > stand for is a lie. Firstly, email is not secure, som

Re: Quick question regarding puffy

2024-12-04 Thread Stuart Henderson
On 2024-12-03, Peter N. M. Hansteen wrote: > I am not an admin of any of the openbsd.org lists, so would not have > access to measures such as removing subscribers. The somewhat obscure > sentence is more of a pointer to the various local filtering features > we have at the client end. exactly.

Re: Quick question regarding puffy

2024-12-04 Thread MIZSEI Zoltán
Polarian írta 2024. dec.. 3, K-n 21:37 órakor: > As for self hosting (like I do), it is rather painful. Setup is > annoying enough, but the worst part is being filtered into spam by > every major email provider despite having spf, dkim, dmarc and rDNS with > good IP reputation, simply because you

Re: Quick question regarding puffy

2024-12-03 Thread Polarian
Hello, Although this is offtopic I will respond to it quickly. I wouldn't say protonmail is a good idea, in my opinion everything they stand for is a lie. Firstly, email is not secure, some email servers still do not use TLS, so a "privacy focused" mail server isn't always beneficial. Secondly, i

Re: Quick question regarding puffy

2024-12-03 Thread Anon Loli
On Tue, Dec 03, 2024 at 05:37:00PM +, Rubén Llorente wrote: > John wrote: > Honestly I am a bit pissed off because we are discussing this subject which > does not mean anything for the project and meanwhile we have unattended port > submissions timing out in ports@. True that.. Qbittorrent is

Re: Quick question regarding puffy

2024-12-03 Thread Lars Schotte
OK, this is a good point, I was thinking lately about getting a protonmail, but they do not offer IMAP for free and now I know that they encode everything in base64 my decision not to pursue this is final. On 03/12/2024 18:07, Stuart Henderson wrote: On 2024-12-03, Peter N. M. Hansteen wrote:

Re: Quick question regarding puffy

2024-12-03 Thread Peter N. M. Hansteen
On Tue, Dec 03, 2024 at 07:03:23PM +, Polarian wrote: > Hansteen: > > > some frequent posters here also have a habit of activating > > auto-ignore mechanisms > > There is an auto-ignore mechanism? How do you trigger said mechanism? > Is there any documentation on said mechanism? > > I haven'

Re: Quick question regarding puffy

2024-12-03 Thread Polarian
Hello, Firstly, sorry for breaking the threads, I see multiple different threads coming off the original email but I would like to respond to all of them at once so I am replying to the most recent email. Secondly, I was originally not going to respond to this, as I am unable to provide any advic

Re: Quick question regarding puffy

2024-12-03 Thread Rubén Llorente
John wrote: On the wider 'it could be considered political' point - it's time everyone in or near tech understand that pretty much everything is political, including technology. If the OpenBSD Foundation want to avoid 'party political' - sure, understandable. But 'anything' political? Impossi

Re: Quick question regarding puffy

2024-12-03 Thread Stuart Henderson
On 2024-12-03, Peter N. M. Hansteen wrote: > It is worth keeping in mind, though, for the archives if nothing else, that > some frequent posters here also have a habit of activating auto-ignore > mechanisms > in order to avoid seeing posts by users with high off-topic content. Fortunately a lot

Re: Quick question regarding puffy

2024-12-03 Thread John
On the wider 'it could be considered political' point - it's time everyone in or near tech understand that pretty much everything is political, including technology. If the OpenBSD Foundation want to avoid 'party political' - sure, understandable. But 'anything' political? Impossible. Good l

Re: Quick question regarding puffy

2024-12-03 Thread Gwen Nelson
That would be why I'm asking for permission of course. On Tue, 3 Dec 2024, 17:09 Stuart Henderson, wrote: > On 2024-12-03, izzy Meyer wrote: > > Also- all this image appears to be intended to do is have puffy holding > a = > > progress flag=2E This would be a rather simple GIMP job, especially

Re: Quick question regarding puffy

2024-12-03 Thread Gwen Nelson
Hi I actually had a good friend of mine do the edit, he rescaled it a bit and edited the border. He did not use any AI to achieve this. Obviously I don't consider the pride flag a political statement, because being LGBT isn't political - it's just how some of us "are". If I was asking to use it f

Re: Quick question regarding puffy

2024-12-03 Thread Stuart Henderson
On 2024-12-03, izzy Meyer wrote: > Also- all this image appears to be intended to do is have puffy holding a = > progress flag=2E This would be a rather simple GIMP job, especially cos bot= > h of these pieces of art are fairly easy to come by online=2E (could be as = most of the actual artwork o

Re: Quick question regarding puffy

2024-12-03 Thread izzy Meyer
Hi Gwen Like others have mentioned- this could technically be considered "political". However, thats the least of my concerns as social science is not political science. I would only consider this "politicised" in recent times, rather than "political". I say you should be fine, although I carr

Re: Quick question regarding puffy

2024-12-03 Thread Peter N. M. Hansteen
On Tue, Dec 03, 2024 at 10:50:57AM +0100, Janne Johansson wrote: > > Hi Gwen > > I don't represent OpenBSD at all. > > Your logo is well done. > > You should have left it there. The rest is offtopic and not > interesting to this list at all. Thanks! You beat me to it, my just-abandoned response

Re: Quick question regarding puffy

2024-12-03 Thread Jon Fineman
On Tue, Dec 03, 2024 at 07:40:35AM +, tux2bsd wrote: Hi Gwen Kind of related. The guy called "Solene", another they/them, was quite a fan of OpenBSD but felt it necessary to broadcast why he moved on: https://www.osnews.com/story/141170/ First Solene is a woman.

Re: Quick question regarding puffy

2024-12-03 Thread Katherine Mcmillan
kef> From: owner-m...@openbsd.org on behalf of tux2bsd Sent: Tuesday, December 3, 2024 2:40:35 AM To: Gwen Nelson Cc: OpenBSD general usage list Subject: Re: Quick question regarding puffy Attention : courriel externe | external email Hi Gwen I don't represent OpenBSD at all. M

Re: Quick question regarding puffy

2024-12-03 Thread Bodie
On 3.12.2024 02:06, Gwen Nelson wrote: Hi I'm setting up a pubnix server for LGBT people running the best OS (OpenBSD of course) and was wondering if it'd be acceptable to display puffy holding a pride flag on the project's website as a logo. Apart from below info you are hitting trigger

Re: Quick question regarding puffy

2024-12-03 Thread Janne Johansson
> Hi Gwen > I don't represent OpenBSD at all. > Your logo is well done. You should have left it there. The rest is offtopic and not interesting to this list at all. -- May the most significant bit of your life be positive.

Re: Quick question regarding puffy

2024-12-03 Thread Greg Thomas
On Mon, Dec 2, 2024 at 11:44 PM tux2bsd wrote: > > I hope you make it out of that train-wreck of a cult one day. > > tux2bsd > As many hope you make it out of whatever oppressive cult you're in some day.

Re: Quick question regarding puffy

2024-12-02 Thread tux2bsd
Hi Gwen I don't represent OpenBSD at all. Most BSD/GNU people are hard-line leftists, my response won't be typical. The ideology that has a hold over you demands the denial of reality. It strongly encourages the chemical and physical mutilation of children, young adults, and adults. Your logo is

Re: Console hints and question

2024-10-11 Thread Dan
Thanks for the time and idea. Played with it but unfortunately I'm not skilled with sed and I should need further help or reference to solve the quiz. Drilling into details the content of text.txt appears to be processed as list of commands although I firstly produced the file on the fly. -D

Re: Console hints and question

2024-10-10 Thread Manuel Solis
Hello Dan, Perhaps one simple solution would be using sed(1), Suppose you have a file named 'test.txt' and the list you provided is there, you could run in shell: sed 's/celere.com/elettronica.lol/p' test.txt > results.txt Hope this helps you Manuel El vie, 4 oct 2024 a las 10:39, Dan () e

Re: Console hints and question

2024-10-09 Thread Dan
Want to thank, interactive shell script attached (supplied AS-IS) :)) -Dan Carsten Reith wrote: > Something like: > > for i in xml*/email/*; do mv $i `dirname $i`/po...@elletronica.lol; > done > > ? > > Cheers, > > Carsten > > Dan writes: > > > Hello, > > > > About *shelling*, I found

Re: Question regarding removal of dhclient

2024-10-09 Thread Stuart Henderson
On 2024-10-08, Mark wrote: > --f1de180623fe126e > Content-Type: text/plain; charset="UTF-8" > > Under OpenBSD 7.5, having unwind enabled, I had in my dhclient.conf the > following line; > > supersede domain-name-servers 127.0.0.1, 185.12.64.1, 185.12.64.2; > > And in my dhcpleased.conf

Re: Question regarding removal of dhclient

2024-10-09 Thread Manuel Giraud
Mark writes: [...] > Few minutes ago I upgraded to 7.6 (many thanks to the OpenBSD team > for great efforts!) and after removal of dhclient, where can I define both > external nameservers from my server provider? I think that now that you're using unwind it is also its job to manage any additio

Question regarding removal of dhclient

2024-10-08 Thread Mark
Under OpenBSD 7.5, having unwind enabled, I had in my dhclient.conf the following line; supersede domain-name-servers 127.0.0.1, 185.12.64.1, 185.12.64.2; And in my dhcpleased.conf file: interface vio0 { ignore dns } Thus, I've in my resolv.conf; nameserver 127.0.0.1 # resolvd: u

Re: Console hints and question

2024-10-04 Thread Carsten Reith
Something like: or i in xml*/email/*; do mv $i `dirname $i`/po...@elletronica.lol; done ? Cheers, Carsten Dan writes: > Hello, > > About *shelling*, I found two useful tricks to edit the filesystem. > > To speed up editing on folder file list: > nano *.xml (CTRL+S, CTRL+X) > > Recursively in

Re: Console hints and question

2024-10-04 Thread dan
Thank you, the solution could be fine but a little difficult to test and launch from 3 o'clock ahead in the night, I was searching for an easier trick. However for a shell script yours is a good approach, thinking. -Dan Carsten Reith : > Something like: > > for i in xml*/email/*; do mv $i `dirn

Console hints and question

2024-10-04 Thread Dan
Hello, About *shelling*, I found two useful tricks to edit the filesystem. To speed up editing on folder file list: nano *.xml (CTRL+S, CTRL+X) Recursively into subdirs: nano `find . -name *.xml` (CTRL+S, CTRL+X) The problem comes when given a filesystem structure like: xml1/email/po...@celere

Re: sbcl question

2024-09-03 Thread Robert Palm
Quoting Sebastien Marie : Robert Palm writes: Any idea what's wrong here ? tron$ doas pkg_add sbcl quirks-7.48 signed on 2024-09-01T21:44:41Z .libs-sbcl-2.4.4+.libs-sbcl-2.4.6+.libs1-sbcl-2.4.5->sbcl-2.4.7: ok tron$ sbcl --version SBCL 2.4.7.openbsd.sbcl-2.4.7 tron$ pkg_info | grep sbcl

Re: sbcl question

2024-09-03 Thread Sebastien Marie
Robert Palm writes: > Any idea what's wrong here ? > > tron$ doas pkg_add sbcl > quirks-7.48 signed on 2024-09-01T21:44:41Z > .libs-sbcl-2.4.4+.libs-sbcl-2.4.6+.libs1-sbcl-2.4.5->sbcl-2.4.7: ok > > tron$ sbcl --version > SBCL 2.4.7.openbsd.sbcl-2.4.7 > > tron$ pkg_info | grep sbcl > sbcl-2.4.7

sbcl question

2024-09-03 Thread Robert Palm
Any idea what's wrong here ? tron$ doas pkg_add sbcl quirks-7.48 signed on 2024-09-01T21:44:41Z .libs-sbcl-2.4.4+.libs-sbcl-2.4.6+.libs1-sbcl-2.4.5->sbcl-2.4.7: ok tron$ sbcl --version SBCL 2.4.7.openbsd.sbcl-2.4.7 tron$ pkg_info | grep sbcl sbcl-2.4.7 high performance Common Lisp co

Re: Question about iked logging

2024-07-07 Thread J Doe
On 2024-07-05 17:14, J Doe wrote: Hi list, I have a basic VPN setup with iked with certificate authentication. Periodically, something will attempt to authenticate against it that is not me and I see the following in the logs:     Jul  5 10:55:47 server iked[15172]: spi=0x7680ddead2051f3c:  

Question about iked logging

2024-07-05 Thread J Doe
Hi list, I have a basic VPN setup with iked with certificate authentication. Periodically, something will attempt to authenticate against it that is not me and I see the following in the logs: Jul 5 10:55:47 server iked[15172]: spi=0x7680ddead2051f3c: ikev2_send_auth_failed: authent

7.5 stable wsmoused question

2024-05-11 Thread mindfsck
working mouse cursor now on the console. - Going back to X (ctrl-alt-F5) - Here the mouse seems to still be in console mode, the framebuffer is getting riddled when moving the mouse and the black background of the console comes to light. Ok, this is the issue, but more importantly is my question

Re: httpd location question

2024-03-11 Thread Alexis
Michael Hekeler writes: Is there any directive or regex for the 'location' directive, httpd doesn't support regular expressions. httpd includes lua pattern support. see patterns(7) (Though to use patterns(7) syntax, one needs to use the 'match' keyword, e.g. "location match" rather than ju

Re: httpd location question

2024-03-11 Thread Michael Hekeler
> Is there any directive or regex for the 'location' directive, httpd doesn't support regular expressions. httpd includes lua pattern support. see patterns(7)

httpd location question

2024-03-08 Thread Mark
Hi, In httpd, my web portal gives an HTTP 404 error when 'mysite.com/create' is typed, however 'mysite.com/create/' works. In order to *solve* this issue, I added 2 different locations pointing to the same cgi script, as: location "/create" { fastcgi socket "/var/www/run/slowcgi.sock" root "/usr

Re: Stopped at smu7_powergate_uvd+0x23 Question

2024-03-06 Thread Avon Robertson
l would be > 83k bytes. > > An 83k email which includes the information necessary to tell what's going on > is more useful than a shorter one which doesn't. > > > My question is: should I send everything to b...@openbsd.org? > > That's probably the best

Re: Stopped at smu7_powergate_uvd+0x23 Question

2024-03-06 Thread Stuart Henderson
t; > The captured information plus the 7.4 snapshot are deliberately not > included in this post as this email would be > 83k bytes. An 83k email which includes the information necessary to tell what's going on is more useful than a shorter one which doesn't. > My question is: sh

Stopped at smu7_powergate_uvd+0x23 Question

2024-03-05 Thread Avon Robertson
captured information plus the 7.4 snapshot are deliberately not included in this post as this email would be > 83k bytes. My question is: should I send everything to b...@openbsd.org? -- aer

Java question

2024-02-08 Thread Robert Palm
Morning, compiling with maven / java I get something like java(25567) in free(): bogus pointer (double free?) 0x64e3b86c000 c.f.: https://github.com/eclipse-store/bookstore-demo/issues/1 or java(97509) in free(): bogus pointer (double free?) 0xe1c89941000 Abort trap (core dumped) c.f.: https

回复: a couple question about my fde setup

2023-11-28 Thread Nathan Carruth
发件人: owner-m...@openbsd.org 代表 Shadrock Uhuru 发送时间: 2023年11月28日 09:23 收件人: openbsd 主题: Re: a couple question about my fde setup >>From: Nick Holland >>To: misc@openbsd.org >>Date: Mon, 20 Nov 2023 07:47:40 -0500 >>Subjec

Re: a couple question about my fde setup

2023-11-27 Thread Shadrock Uhuru
From: Nick Holland To: misc@openbsd.org Date: Mon, 20 Nov 2023 07:47:40 -0500 Subject: Re: a couple question about my fde setup On 11/19/23 18:09, Shadrock Uhuru wrote: hi all a couple question about my fde first, i have fde setup using a keydisk on my laptop, encryption and decryption

Re: question about xenocara's xterm build process

2023-11-26 Thread Stuart Henderson
de xterm's configure.in, sixel support is enabled by default > and regis support is not, however sixel screen dump/print_graphics > actually inherits its default from the state of regis, despite > being required for both sixel and regis to work fully. > > so i have the qu

question about xenocara's xterm build process

2023-11-25 Thread coolbean
efault and regis support is not, however sixel screen dump/print_graphics actually inherits its default from the state of regis, despite being required for both sixel and regis to work fully. so i have the question for anyone that might know, was this intentional to avoid some sort of bug that occurs

Relayd routers question for 2 ISPs

2023-11-24 Thread bryanlharris
Hi folks, I found the routers section in the man page, and then also found this email. https://marc.info/?l=openbsd-misc&m=125232531402942&w=2 I *think* I got it to work but I want to double check. Here is a summarization of what I did in Vmware. Client -> gateway(NAT) -> ISP1 Client -> gatewa

Re: a couple question about my fde setup

2023-11-20 Thread Nick Holland
On 11/19/23 18:09, Shadrock Uhuru wrote: hi all a couple question about my fde first, i have fde setup using a keydisk on my laptop, encryption and decryption works fine when i reboot with the key inserted it doesn't find the key, i have to shut the machine down and restart it then the k

a couple question about my fde setup

2023-11-19 Thread Shadrock Uhuru
hi all a couple question about my fde first, i have fde setup using a keydisk on my laptop, encryption and decryption works fine when i reboot with the key inserted it doesn't find the key, i have to shut the machine down and restart it then the key is detected, is this normally how a r

Re: Question about rdomains/rtables

2023-10-24 Thread tetrosalame
Il 24/10/2023 11:55, Marcus MERIGHI ha scritto: I'm playing with rdomain/rtable on OpenBSD 7.4 and I'm a bit confused about the relation between rdomains and rtables. you do not mention reading rtable(4)/rdomain(4), online here: https://man.openbsd.org/rtable [...] I'm sorry, I sh

Re: Question about rdomains/rtables

2023-10-24 Thread tetrosalame
Il 24/10/2023 12:22, Claudio Jeker ha scritto: On Mon, Oct 23, 2023 at 06:08:37PM +0200, tetrosalame wrote: Hello misc, I'm playing with rdomain/rtable on OpenBSD 7.4 and I'm a bit confused about the relation between rdomains and rtables. If I got rdomain(4) right, the two facilities are desig

Re: Question about rdomains/rtables

2023-10-24 Thread Claudio Jeker
On Mon, Oct 23, 2023 at 06:08:37PM +0200, tetrosalame wrote: > Hello misc, > > I'm playing with rdomain/rtable on OpenBSD 7.4 and I'm a bit confused about > the relation between rdomains and rtables. > > If I got rdomain(4) right, the two facilities are designed so that a rdomain > can hold 0-255

Re: Question about rdomains/rtables

2023-10-24 Thread Marcus MERIGHI
Hello f., t...@seiruote.it (tetrosalame), 2023.10.23 (Mon) 18:08 (CEST): > I'm playing with rdomain/rtable on OpenBSD 7.4 and I'm a bit confused about > the relation between rdomains and rtables. you do not mention reading rtable(4)/rdomain(4), online here: https://man.openbsd.org/rtabl

Question about rdomains/rtables

2023-10-23 Thread tetrosalame
Hello misc, I'm playing with rdomain/rtable on OpenBSD 7.4 and I'm a bit confused about the relation between rdomains and rtables. If I got rdomain(4) right, the two facilities are designed so that a rdomain can hold 0-255 rtables. Even rdomain 0 -no rdomain configured- can hold several rtab

Re: Newbie question

2023-10-05 Thread Ronny Machado
On Thu, Oct 05, 2023 at 10:44:06AM -0600, Todd C. Miller wrote: > On Thu, 05 Oct 2023 13:07:02 -0300, Ronny Machado wrote: > > > Every mail I post, Majordomo asks for a confirmation...Is this normal? > > Am I doing something wrong??? > > Non-subscribers must confirm their posts. This has almost

  1   2   3   4   5   6   7   8   9   10   >