The Linux Thread - The Autist's OS of Choice

  • Want to keep track of this thread?
    Accounts can bookmark posts, watch threads for updates, and jump back to where you stopped reading.
    Create account
The bigger issue is the second point, the noncuck > cuck license pipeline. Rewrite-it-in-rust projects are cancerous because they take GPLed code and convert it to corporate-friendly cuck licenses. I can't really see it as being anything other than subversive corporate EEE jewry.
You can use whatever license you want, it's just that nobody is picking GPLv3.

Which is odd, and I never really understood why the Rust troons would use permissive licenses considering they seem to hate corpo big tech in general. Why are you doing free labor for companies that make billions of dollars?
 
Permissive licenses are Open Source working exactly as intended, not sure why anyone would be surprised at their constant use. The point of Open Source in the first place was to make free software appear as palatable as possible to corporations and making concessions to not shy corporate minded people away from partnerships and coverage, nothing gets more palatable than fucking the wife while the husband gets to watch (for free)
 
You can use whatever license you want, it's just that nobody is picking GPLv3.

Which is odd, and I never really understood why the Rust troons would use permissive licenses considering they seem to hate corpo big tech in general. Why are you doing free labor for companies that make billions of dollars?
Trannies are useful idiots for corporate powers.
 
Which is odd, and I never really understood why the Rust troons would use permissive licenses considering they seem to hate corpo big tech in general. Why are you doing free labor for companies that make billions of dollars?
Idk about that. It seems like plenty of them worked at google, and other big tech companies. It's part of why they were all so gay, before they started to pretend to "care about free speech"
 
Which is odd, and I never really understood why the Rust troons would use permissive licenses considering they seem to hate corpo big tech in general. Why are you doing free labor for companies that make billions of dollars?
What is the role of 'reee RMS bad' here?
 
Windows 12 Users when Microjew rips out there organs for AI organ harvesting while there still alive and eats them(This is OK because at least they don't have to use a terminal like on li*ux)
1767204053606.png
1768402730920.png


There comes a point to where its just like... Insane. 16 Years ago literal PARODYS meant to MOCK windows had higher expectations than Modern Windows 11....
I love how se searches for "ACT" and it brings up Device Manager. Not even fucking CLOSE to what he wanted lmao. He had to put in activate for it to FINALLY give him what he wanted.
 
Last edited:
View attachment 8417920

View attachment 8417919
There comes a point to where its just like... Insane. 16 Years ago literal PARODYS meant to MOCK windows had higher expectations than Modern Windows 11....
I love how se searches for "ACT" and it brings up Device Manager. Not even fucking CLOSE to what he wanted lmao. He had to put in activate for it to FINALLY give him what he wanted.

"But at least I can double click games without prior steps and they just work!"
 
View attachment 8417920

View attachment 8417919
There comes a point to where its just like... Insane. 16 Years ago literal PARODYS meant to MOCK windows had higher expectations than Modern Windows 11....
I love how se searches for "ACT" and it brings up Device Manager. Not even fucking CLOSE to what he wanted lmao. He had to put in activate for it to FINALLY give him what he wanted.
“Waaah windows bad!!!” do u have anything to add with this or are you just gonna nigger up the thread with an off topic post?
 
EDIT I GOT IT FARTHER. it seems SOME parts of it are NOT polymorphic...
You may think I have gotten lazy or have forgotten about this.

No, Truth is that ive been working on it everyday for so long more than I can count.
All trying to get past that error.

Let me tell you everything IVE done to try and debug that "Searching for Bootloader.TDF" error
  1. My old system was stupid. I would have the bootloader load as a seperate CUT image that would be loaded with the -kernel option and then the NAND would be loaded in separately as a pflash with nand handling code. the bootloader is IN the nand and the first executing instruction. So im copying the SAME information. I rewrote the thing to make it be able to use NO kernel and JUST take the RAW NAND image and Load it into ram. To remove duplicate OOB bytes or ERROR correcting bytes that mess with the assembly instructions the PRE-PRE bootloader REMOVES all the OOB bytes from RAM before jumping to it for execution. Sure enough im pretty sure this is how its done on real hardware. Then after that the NAND with OOB bytes that is stored at the NAND base address separately.
  2. Ive tried using a TRICK in qemu called a MEMORY backend. In qemu you can make ram a FILE that is stored on your computer that changes LIVE. I used a QEMU plugin to trace EVERY SINGLE instruction executed, and then filter by MEMORY addresses reads and jump to each one when its at the scanning part. LOG all the important reads with a text editor and the opened RAM file in a hex editor. See what its doing.
  3. Ive read entire DOCS trying to find some hidden bullet. There is no easy road in life kids. I wihs there was some MAGIC answer that would solve ALL my problems. But theres not.
  4. Ive opened GDB more times I can count and had GHIRDA on the side, use GHIRDA to see where important code that I think is causing the failure HAPPENS and then copy its address and set a breakpoint in GDB. we don't have symboles but we can add a * to gdb to make it work. Then MANUALLY step, View the registers and log em. Ive been doing this more times than I can count.
  5. Ive done more google seraches than you can know. Ive scoured everywhere. Ive tried Yandex duckduckgo ive tried it all.
  6. Ive tried SO many different ideas that I could honestly make a entire list. Ive compiled QEMU and sat on that screen so many times its absurd
Im not at the point to where im reverse engineering and renaming EVERY single function and variable name
1768409257408.png
1768409273344.png

EVERY single function is being RENAMED by looking and examining the psudocode. And let me tell you ITS not as fun as it sounds
1768409430887.png
See this? Thats loading a WORD into a register. How do I know this? Because ive scoured the entire internet to find user manuals for a similar enough chipset. Told you ive been busy.
Now because its a REGISTER value and not a memory address in the program its in red. Well lets see what the psuedocode version of the instruction is
1768409537855.png
1768409564231.png
Code:
(s_@#_Boot0_batch_file_:#_Boot0_bat_80013feb._21_4_ + -0x5ff9cafc
s_@#_Boot0_batch_file_:#_Boot0_bat_80013feb._21_4_ is a completely UNREALTED variable but its close enough to that register thats not in the programs memory. SO it gets that value and adds -0x5ff9cafc because that would equal something that would BE that register. This line is completely FUCKED and while the operation is the same the LOGIC behind it is completely wrong. YES this is why its been almost 10 days.
See this. That BOOT BATCH variable is COMPLETELY UNRELATED

1768409888336.png

In reality its
"0xbbe63508 = Nand_cached_start_address"
or
"0xbbe63508 = 0xa0010000"

Im manually going in. Interpeting and then renaming values to get a better context
1768410119108.png
These DATs.. They need to be decoded and named properly if I want the context behind them.
Problem is that I cant just JUMP to them and see what they are BECAUSE they can be MORE than just a one trick variable or in alot of cases meant to be initilized WHILE the programs running NOT when its pre-executed. Which means I CAN get out gdb. Set a breakpoint and then view the address. Or in some cases stack or even register.

But im not giving up or have gone LAZY. part of it is just because I wanted to return with something cool for you guys since you deserve it for being so awesome.
 
Last edited:
But im not giving up or have gone LAZY. part of it is just because I wanted to return with something cool for you guys since you deserve it for being so awesome.
Autism should never be obligated. That's how some burn out. But it sounds like you're learning a ton. This reversing work you're doing is something I don't really do except around the edges. I'll look at binary data sometimes but debugging assembly? It's faster for me to write debug code in the other language I'm using, so it's not a skill I acquire. I do love reading the continuing saga here.
 
Idk about that. It seems like plenty of them worked at google, and other big tech companies. It's part of why they were all so gay, before they started to pretend to "care about free speech"
Pretty sure the vast majority of tech troons are funemployed and on that tugboat. That's why they sit on Mastodon and Discord all day looking for microaggressions.
 

VoidLink – a Cloud-First Malware Framework​

In December 2025, Check Point Research identified a small cluster of previously unseen Linux malware samples that appear to originate from a Chinese-affiliated development environment. Many of the binaries included debug symbols and other development artifacts, suggesting we were looking at in-progress builds rather than a finished, widely deployed tool. The speed and variety of changes across the samples indicate a framework that is being iterated upon quickly to achieve broader, real-world use.

The framework, internally referred to by its original developers as VoidLink, is a cloud-first implant written in Zig and designed to operate in modern infrastructure. It can recognize major cloud environments and detect when it is running inside Kubernetes or Docker, then tailor its behavior accordingly. VoidLink also harvests credentials associated with cloud environments and standard source code version control systems, such as Git, indicating that software engineers may be a potential target, either for espionage activities or possible future supply-chain-based attacks.

VoidLink’s feature set is unusually broad. It includes rootkit-style capabilities (LD_PRELOAD, LKM, and eBPF), an in-memory plugin system for extending functionality, and adaptive stealth that adjusts runtime evasion based on the security products it detects, favoring operational security over performance in monitored environments. It also supports multiple command-and-control channels, including HTTP/HTTPS, ICMP, and DNS tunneling, and can form P2P/mesh-style communication between compromised hosts. In the latest samples, most components appear to be close to completion, alongside a functional C2 server and a dashboard front end integrated into a single ecosystem.

The framework’s intended use remains unclear, and as of this writing, no evidence of real-world infections has been observed. The way it is built suggests it may ultimately be positioned for commercial use, either as a product offering or as a framework developed for a customer.
 
From this article about the new GOG owner, he hates Windows and wants to make Linux more of their target strategies this year:
1768426176786.png
The first, from Gołębiewski, was straightforward: "Yes, we are." In fact, GOG has made Linux "one of the things that we've put in our strategy for this year to look closer at." Alas, that's pretty much all the detail he's willing to give. "I don't want to commit to any specifics, but certainly you will see this trend, and we also see that Linux is close to the hearts of our users, so we probably could do better on that front, and that's something that we'll be looking at."
link
full article attached as image
 

Attachments

  • 1768425738720.png.webp
    1768425738720.png.webp
    315.9 KB · Views: 41
It makes sense that they would start targeting cloud environments. Obviously they are a nation state actor. Or in some level funded by them. So it makes sense that those would be their targets.

I wouldn't be surprised if they go after microsofts cloud at some point soon. But I'm not sure how much that would be in the interest of something like the chinese government. I would think it would be smaller criminal groups that would want to hit that.

It just seems like a good target, now that its enabled by default on many peoples machines, if they are using windows. If someone finds an exploit in that to take advantage of it could be devastating.
From this article about the new GOG owner, he hates Windows and wants to make Linux more of their target strategies this year:
People doubt me when I say this is looking like the actual year of the linux desktop.

Thank Microsoft for making their own platform so unappealing. As much as I would love to give anything in linux credit, Microsoft is the one doing the heavy lifting for the cause.
 
If Windows came out tomorrow with something like Windows 7 and the features it had back in 2010, the autism types would still be crying MS is evil and linux is the savior of the world.

It's almost becoming a mental illness with all the linux spammers now. It's a fine system for the right people but it's gotten to a whole new level of autism lately. Then of course, all the linux vs linux infighting like Ubuntu is evil and Arch is the savior of the world... You get the pattern.
 
If I install Xlibre right now on my main laptop that runs Debian Testing + Cinnamon, what do I gain? Refresh rate features and HDR if I buy a new monitor, I guess...?

Seems like a lot to lose with driver ABI mismatches, dependency bullshit and all, for very little gain.. X works and has always worked. I've been using Debian for 10+ years now, don't want to switch to some newfangled Archfag distro just to run a more maintained X.

But I might consider moving to Arch for xlibre if HDR really makes a difference on my monitor.
 
Back
Top Bottom