gmake compile of python3.12 crashes on openBSD 7.5 but not on openBSD 7.4

2024-05-11 Thread Sandeep Gupta
I was able to compile Python 3.12 from source code on openBSD 7.4. However, after upgrade to 7.5 the compile process crashes with core dump: cc -pthread -g -Wl,--export-dynamic -o Programs/_testembed Programs/_testembed.o -L. -lpython3.12 -lpthread -lutil -lm _testembed.c:1848

Re: https://twitter.com/openbsd

2024-05-11 Thread tux2bsd
Stuart L, your rant is unhinged. > The OpenBSD team owe us (you included), nothing. No shit. I only asked, in my own way, why there was an inconsistency in release posts on Twitter. They've been somewhat regular. By blocking me the little tyrant T.J. Townsend demonstrated just how trivially

Re: https://twitter.com/openbsd

2024-05-11 Thread Stuart Longland
On 12/5/24 10:02, tux2bsd wrote: The rest of what you blathered about is in your head, I only ever mentioned the lack of an (singular) announcement via Twitter. You want announcements on Twitter, you make it happen. As it happens, Twitter is DEAD. Ask that idiot @elonmusk -- he'll confirm

Re: Kernel debugging

2024-05-11 Thread Alexis
Daniel Hejduk writes: Is there any way to build the kernel on Linux preferably Arch Linux? In a VM, sure. Otherwise, no. Here's a comment from a thread about this topic, from a couple of years ago: https://www.reddit.com/r/openbsd/comments/r6wj3c/comment/hmwhk4a/ Alexis.

Re: https://twitter.com/openbsd

2024-05-11 Thread tux2bsd
On Sunday, May 12th, 2024 at 12:34 PM, Chris Petrik wrote: > Still amusing regardless Thanks for the inspiration. I made the following they-speak so that it's in the left's lobotomy language. One wonders why T.J. Townsend doesn't simply sell OpenBSD's Twitter credentials to some porn site,

Re: https://twitter.com/openbsd

2024-05-11 Thread Chris Petrik
Yeap a reason why ML suck Sent from Proton Mail Android Original Message On 5/11/24 7:02 PM, tux2bsd wrote: > On Sunday, May 12th, 2024 at 11:25 AM, Stuart Longland > > since you seem to want evidence that it was announced… > > Learn to read: > > > No post about the

Re: https://twitter.com/openbsd

2024-05-11 Thread tux2bsd
On Sunday, May 12th, 2024 at 11:25 AM, Stuart Longland > since you seem to want evidence that it was announced… Learn to read: > No post about the 7.5 release on https://twitter.com/openbsd The rest of what you blathered about is in your head, I only ever mentioned the lack of an (singular)

Re: https://twitter.com/openbsd

2024-05-11 Thread tux2bsd
On Sunday, May 12th, 2024 at 11:04 AM, T.J. Townsend wrote: > On Sat, May 11, 2024 at 10:26:49PM +, tux2bsd wrote: > > > Seemed strange, if deliberate then exceptionally petty. > Wasting everyone's time by complaining on a mailing list that > we didn't post a tweet seems a little petty

Re: https://twitter.com/openbsd

2024-05-11 Thread Stuart Longland
On 12/5/24 09:12, tux2bsd wrote: On 12/5/24 08:26, tux2bsd wrote: No post about the 7.5 release on https://twitter.com/openbsd Seemed strange, if deliberate then exceptionally petty. Twitter is dead. You forgot CC. Here, I'll add Reply-To so you don't get confused next time. That's

Re: https://twitter.com/openbsd

2024-05-11 Thread tux2bsd
> On 12/5/24 08:26, tux2bsd wrote: > > No post about the 7.5 release on https://twitter.com/openbsd > > > > Seemed strange, if deliberate then exceptionally petty. > > > Twitter is dead. That's your leftism talking, not reality.

Re: https://twitter.com/openbsd

2024-05-11 Thread T.J. Townsend
On Sat, May 11, 2024 at 10:26:49PM +, tux2bsd wrote: > I'm a bit late remembering to follow this up. > > No post about the 7.5 release on https://twitter.com/openbsd > > Seemed strange, if deliberate then exceptionally petty. > > IIRC I saw it on OSNews on the day. Wasting everyone's time

Re: https://twitter.com/openbsd

2024-05-11 Thread Stuart Longland
On 12/5/24 08:26, tux2bsd wrote: I'm a bit late remembering to follow this up. No post about the 7.5 release on https://twitter.com/openbsd Seemed strange, if deliberate then exceptionally petty. IIRC I saw it on OSNews on the day. Twitter is dead. OpenBSD has a website you can check,

https://twitter.com/openbsd

2024-05-11 Thread tux2bsd
I'm a bit late remembering to follow this up. No post about the 7.5 release on https://twitter.com/openbsd Seemed strange, if deliberate then exceptionally petty. IIRC I saw it on OSNews on the day.

Re: Kernel debugging

2024-05-11 Thread Kirill A . Korinsky
On Sat, 11 May 2024 21:49:42 +0100, Daniel Hejduk wrote: > > Is there any way to build the kernel on Linux preferably Arch Linux? > It is theoretically possible, but you need to change Makefiles a lot, and probably to hack your toolchain. -- wbr, Kirill

Re: Favorite configuration and system replication tools?

2024-05-11 Thread Страхиња Радић
Дана 24/05/11 10:36PM, Страхиња Радић написа: > cd "$target" && > find "$dirs" | sort | uniq > "$target_list" Lapsus: the variable dirs should not be quoted here if it contains more than one directory to be passed to find. It is vulnerable to directory names containing spaces and weird

Re: Kernel debugging

2024-05-11 Thread Daniel Hejduk
Hello again, Is there any way to build the kernel on Linux preferably Arch Linux? Best regards, Daniel Hejduk 11. května 2024 22:05:50 SELČ, "Kirill A. Korinsky" napsal: >On Sat, 11 May 2024 20:28:08 +0100, >Daniel Hejduk wrote: >> >> I want to enable kernel debugging how can I do it? >> >

Re: Favorite configuration and system replication tools?

2024-05-11 Thread Страхиња Радић
Дана 24/05/11 07:41PM, Walter Alejandro Iglesias написа: > Today I realized that the loop above is not necesary: > > --- > dirs=$(echo "$files" | grep '/$') > > cd && find $dirs | sort | uniq > $source_list > cd $target && find $dirs | sort

Re: Kernel debugging

2024-05-11 Thread Vitaliy Makkoveev
> On 11 May 2024, at 22:28, Daniel Hejduk wrote: > > Hello, > I want to enable kernel debugging how can I do it? > See ddb(4) man page. > Best regards, > Daniel Hejduk

Re: Kernel debugging

2024-05-11 Thread Kirill A . Korinsky
On Sat, 11 May 2024 20:28:08 +0100, Daniel Hejduk wrote: > > I want to enable kernel debugging how can I do it? > See: https://man.openbsd.org/options -- wbr, Kirill

Kernel debugging

2024-05-11 Thread Daniel Hejduk
Hello, I want to enable kernel debugging how can I do it? Best regards, Daniel Hejduk

Re: Favorite configuration and system replication tools?

2024-05-11 Thread Walter Alejandro Iglesias
On Sat May 11 20:20:04 2024 "Robert B. Carleton" wrote: > Another tool you might want to take a look at is rdist(1). It's limited > in some ways, but is a native capability to OpenBSD. It has a long > history. > I've never used rdist(1) either, I will learn about it. Thanks Robert for mention it

Re: Favorite configuration and system replication tools?

2024-05-11 Thread Robert B. Carleton
Walter Alejandro Iglesias writes: > On Fri May 10 08:36:50 2024 Walter Alejandro Iglesias wrote >> Then I do something like this (simplified for clartiy): >> >> [...] >> >> dirs=$(echo "$files" | grep '/$') >> >> for i in $dirs ; do >> find $source/$i | sed 's#'$source'##' | sort | uniq >

Re: Localnet Hacking

2024-05-11 Thread Peter J. Philipp
On Sat, May 11, 2024 at 05:55:11PM +, Lucretia wrote: > I would love some used books but don't have 1000???. I will have $750 around > beginning of June if you want to send me a Paypal invoice to my Apple email: > openbsd.g...@icloud.com I was going to buy my second laptop but books are >

Re: Localnet Hacking

2024-05-11 Thread Lucretia
I would love some used books but don't have 1000€. I will have $750 around beginning of June if you want to send me a Paypal invoice to my Apple email: openbsd.g...@icloud.com I was going to buy my second laptop but books are probably better for me at this point in time. Your other message was

Re: Favorite configuration and system replication tools?

2024-05-11 Thread Walter Alejandro Iglesias
On Fri May 10 08:36:50 2024 Walter Alejandro Iglesias wrote > Then I do something like this (simplified for clartiy): > > [...] > > dirs=$(echo "$files" | grep '/$') > > for i in $dirs ; do > find $source/$i | sed 's#'$source'##' | sort | uniq > $source_list > find $target/$i | sed

7.5 stable wsmoused question

2024-05-11 Thread mindfsck
Hello, I am trying to narrow down an issue (and learn along the way) with wsmoused. The issue is: - X (wsfb) is running with xfce4 and xenodm, the mouse works fine in X. - I go to a console and execute wsmoused (as root) with no parameters, so as per sources, /dev/wsmouse is opened. - I have a

Re: Localnet Hacking

2024-05-11 Thread Peter J. Philipp
On Sat, May 11, 2024 at 08:45:45AM +0200, Peter J. Philipp wrote: > If you want some used books, I'm moving across the Atlantic soon and I can't > take my books along. In total the new value of them was 8000 odd EUR. If > I send three books to kyrgystan and it's under 2 kg, I checked with DHL >

Re: Localnet Hacking

2024-05-11 Thread Kirill A . Korinsky
On Sat, 11 May 2024 03:52:32 +0100, Lucretia wrote: > > I have a laptop and am looking to purchase a second computer. Neither of them > will be connected to The Internet, but will be networked together. > > My goal is to study networking, starting with some of the most basic commands > and

Re: Localnet Hacking

2024-05-11 Thread Peter J. Philipp
On Sat, May 11, 2024 at 08:45:45AM +0200, Peter J. Philipp wrote: > Contact me privately if you would like a batch with what you like. I'll > make note on that webpage of what's given away. Offer ends July 1st of this > year. Three books have already been given away. They went to Finland.

Re: Localnet Hacking

2024-05-11 Thread zeloff
Familiarise yourself with IPv4: addreses, network segments, netmasks, and private IP ranges. Even a careful reading of wikipedia might be enough to get you started. By the end you shouls have a basic understanding of how packets are routed. You won't be building a router, so no need for complex

Re: Localnet Hacking

2024-05-11 Thread Peter J. Philipp
On Sat, May 11, 2024 at 02:52:32AM +, Lucretia wrote: > Book recommendations are most welcome! > > Lux of the Agony > 720077 Bishkek > Altyn Kazyk 31A > KYRGYZSTAN > l...@openbsdgirl.com If you want some used books, I'm moving across the Atlantic soon and I can't take my books along. In