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
One thing that you have to keep in mind is that there is no way to fully cut out the telemetry. If that's your main concern and you have no other choice but to use Windows then keeping it offline, or at the very least putting it in an air-gapped network is what you want to do to minimize the impact. What you're looking with a modified Windows ISO or a Windows "debloater" is just a light touch-up to make it a bit more pleasant to use by removing and disabling unnecessary elements without messing with the OS too deep to ensure stable operation.
I mostly need it for running various graphic design and editing software that I can't get to run reliably on Linux. Looking at the options I think that 10 with WinUtil & airgapping is probably going to be the angle here. Telemetry stripping is certainly an important part of it though my #1 concern is minmaxing performance on somewhat dated hardware. Thank you for the detailed insight, I really appreciate it.
 
How long do you think before Windows tries this? I give it less than a decade.
For all intents and purposes it already does and has been doing for a long time, through SmartScreen, usually but not always triggered by the MotW that the average user won't even know about. There's exceptions for very popular binaries, because the licensing prices are exorbitant and it would affect users too much especially when you are not allowed to run them at all, but ask some independent windows developers how much of a pain in the ass it is. That'll change with time, and at some point you'll end up being unable to run any local application when some indian fucks something up, just like how it happens with the gay aids os. That's why nobody should ever allow them to take an inch in the name of false security promises, later down the line it'll be the whole arm.
 
The main issue with Linux phones is going to be banking and two factor authentication apps. They become less avoidable by the day, and are pretty much only available on iPhone and Android.
Either that, or instead of mobile Linux getting these features there could be some specially made device that's entirely separate for this use case that is not a cellphone. I might be wrong, but that does not really exist, at least where I live. I used to use both a separate physical device and a separate mobile device that I only had for banking. But now they have largely phased out separate physical devices for some retarded "app" that also has to be tied to you. Lets increasingly force everyone to have a single point of entry into their entire personal life and all of their files. It really is all so tiresome... Who asked for this? Oh right, the average user that uses one password for everything stored somewhere in plain text, the same type of user who hated being "forced" to do even a minimal amount of thinking in order to prevent getting butt fucked in the ass by a random jeet. - So, so tiresome...
 
I think I am giving up on Linux, I'm just not autistic enough.

I'm on a Lenovo Legion with dynamic graphics and the system will just not hibernate or suspend properly at all and hang on an unresponsive black screen. I've tried installing the proprietary drivers, disabling/outright deleting the nvidia suspend, hibernate, and resume service, adding random bullshit to the nvidia sleep shell file, and so on and so forth for the last few days and nothing has helped. It seems like nobody else on Bookworm has this problem either.

I'm tired of starting at reddit niggerbabble and the general consensus seems to be "yeah power management doesn't work at all on linux, maybe if you drop 3000 on a new laptop with amd it'll fix it idk." I guess desktop Linux really is a meme.
 
Last edited:
You're supposed to drop $300 on an old Thinkpad and use that. Then everything will work.*
*Terms and conditions may apply
 
AtlasOS seems to be somewhat inactive and also it's been known for going too far in it's debloating. Tiny11 you should only use if you use the Tiny11 Builder, downloading a random modified ISO from the Internet is generally a very bad idea. Also IIRC Tiny11 cuts out a good chunk of the OS as well so YMMV with how broken it may end up.
I mostly need it for running various graphic design and editing software that I can't get to run reliably on Linux. Looking at the options I think that 10 with WinUtil & airgapping is probably going to be the angle here.
Personally, I had a good experience with NTLite (paid) for customizing ISOs. Even Windows 10 IoT LTSC 2021 can be cut down further. Then just run WinUtil.
 
I've already been a graphene user. But with how things are going. I have actually been seriously considering going with a linux phone. I know it's not going to give the same convenience as having a normal android based device. But as long as I can actually still make calls and sms. I think I will do fine, and I would actually have some piece of mind about this shit. I think as a linux autist it could actually work well for me. I just think a normal person wouldn't be able to use it worth a shit.

What Linux phones are you looking at? Do not go with Purism. There are people who have been waiting 6 years for refunds to devices that weren't available to ship until they were obsolete.

The main issue with Linux phones is going to be banking and two factor authentication apps. They become less avoidable by the day, and are pretty much only available on iPhone and Android.
I'm sure there are some work arounds. I know 2fa isn't only a thing on those. It might take some setting up though. As far as I know, for what I use at least. I think I should be ok.
The problem is when you need to use some proprietary bullshit that does push notifications and additional prompts for codes and shit like Microsoft Authenticator or Okta Verify.

You can get past the Okta 2FA with a script like the following:


You can use a little Python script that holds your secret and bind it to a hotkey to generate your OTP. (Find some generic key.ico or remove that part). Be sure to keep this script on an encrypted drive since it has your TOTP secret in it!

Python:
#!/usr/bin/env python3
import pyotp
import pyperclip
from plyer import notification

totp = pyotp.TOTP("ABCDEFG12345")
code = totp.now()
pyperclip.copy(code)

notification.notify(title='OTP Code', message=code, app_icon='/home/<username>/bin/key.ico')
 
You can get past the Okta 2FA with a script like the following:

https://gist.github.com/kamilhism/9f6f26ce3e10b6685af8c43f33aca808
You can use a little Python script that holds your secret and bind it to a hotkey to generate your OTP. (Find some generic key.ico or remove that part). Be sure to keep this script on an encrypted drive since it has your TOTP secret in it!
I know that some companies setup Okta as app push only, so when I connect to the company VPN(for instance) on my laptop the only auth method is to tap "Accept" on my phone. There are also other similar apps where you can't extract TOTP. Luckily most of mine are Microsoft and allow me to use TOTP instead of the MS Push app, but I think that could be forced as well. These sorts of apps can also enforce Play Integrity or whatever the hell it's called.
 
You're supposed to drop $300 on an old Thinkpad and use that. Then everything will work.*
*Terms and conditions may apply
Speaking of, I have an unused playground T420 I installed Arch on. What should I try on it next? Debian 13? Devuan? Artix? EndeavorOS?

Also, T14 Gen 2's are becoming affordable nowadays as the 5 year corporate lease window keeps shifting forward, so you can get a pretty decent Zen 3 business machine for as much as a shitty cheap low end consumer laptop.
 
You can get past the Okta 2FA with a script like the following:

https://gist.github.com/kamilhism/9f6f26ce3e10b6685af8c43f33aca808
You can use a little Python script that holds your secret and bind it to a hotkey to generate your OTP. (Find some generic key.ico or remove that part). Be sure to keep this script on an encrypted drive since it has your TOTP secret in it!
Yeah, as @DavidS877 says, you will often see it implemented as push only. Same with Microsoft Authenticator, and I'm sure many other shitty security theatre apps I just haven't encountered yet. Extremely fucking irritating when you have a nice workflow of just storing the TOTP secrets in your KeePass vault.
 
Yeah, as @DavidS877 says, you will often see it implemented as push only. Same with Microsoft Authenticator, and I'm sure many other shitty security theatre apps I just haven't encountered yet. Extremely fucking irritating when you have a nice workflow of just storing the TOTP secrets in your KeePass vault.
The way around it might have been with Anbox, except development stopped on that last year in favour of Waybox. As you can probably guess from the name, it only works in Wayland.
 
Speaking of, I have an unused playground T420 I installed Arch on. What should I try on it next? Debian 13? Devuan? Artix? EndeavorOS?

Also, T14 Gen 2's are becoming affordable nowadays as the 5 year corporate lease window keeps shifting forward, so you can get a pretty decent Zen 3 business machine for as much as a shitty cheap low end consumer laptop.
Guix, or NixOS if you prefer the trannyd version. Declarative config operating systems are pure kino. Also, I'd recommend aiming for a P16 Gen 1 if you like bigger screens, they are really, really great. Strongly considering buying off my work one once the turnover hits.
I'm on a Lenovo Legion with dynamic graphics and the system will just not hibernate or suspend properly at all and hang on an unresponsive black screen. I've tried installing the proprietary drivers, disabling/outright deleting the nvidia suspend, hibernate, and resume service, adding random bullshit to the nvidia sleep shell file, and so on and so forth for the last few days and nothing has helped. It seems like nobody else on Bookworm has this problem either.
The only time this has happened to me was due to BIOS issues, check if yours is up to date, and double check to make sure something in your settings isn't fucky either.
What Linux phones are you looking at? Do not go with Purism. There are people who have been waiting 6 years for refunds to devices that weren't available to ship until they were obsolete.
Any experience with Ubuntu Touch? Fairphone 5 with it do be looking quite juicy, seems like 99% of stuff works OOTB, sans stuff like dual sim or wireless charging.
 
Last edited:
I'm just going to come out and say it, GIMP is perfectly usable, I've never understood why people hate it
 
Also, I'd recommend aiming for a P16 Gen 1 if you like bigger screens, they are a really, really great. Strongly considering buying off my work one once the turnover hits.
Huh, they go for about as much as I paid for a brand new L14 G5. I know, buying ChinkPads new, retarded, guess I didn't want to risk getting a worn battery. But I like it, and I prefer the smaller size since I want a laptop to actually be light and portable to be a stop-gap between my home PC and my smartphone rather than a replacement for my PC. Dropping in an LTE modem was also a worthwhile investment, feels really liberating to take it out whenever, open it up and be ready to do whatever.
 

I guess whoever has been behind these bot farms recently is a gooner. Also a tranny. Typical.
What Linux phones are you looking at? Do not go with Purism. There are people who have been waiting 6 years for refunds to devices that weren't available to ship until they were obsolete.
I haven't gotten far enough in to really look at them too seriously. It won't be until sometime next year if I do end up moving to a Linux phone. The pine phone is the one I know about. I've heard it does have its problems. But I've also heard Linux phones have been improving a bit.
I didn't want to risk getting a worn battery
When buying a used laptop, that doesn't worry me too much. Because usually you are getting them so much lower than brand new. Even buying a battery to replace the bad one is still a lot cheaper than the full price.


In this lunduke says "these are seeing success because people want non-woke software".

This is what I mean when I say people just do the same thing as the people on the other side. Its mixing up the ends with the means. And it's literally the same thing he claims to criticize ( it's obvious he really doesn't try hard to hide being a hypocrite)

If I look at the software I use. No I don't care about how woke or non-woke it is.

What I do care about:
Is the software good?
Does the software do what I need it to do?

I don't care if a chud wrote it or not. I just want good software. I might be slightly more likely to use something specified as non-woke. But if it's just not as good as something else, I'm going to use the better program. Simple as.
 
I know that some companies setup Okta as app push only, so when I connect to the company VPN(for instance) on my laptop the only auth method is to tap "Accept" on my phone.
The way around it might have been with Anbox, except development stopped on that last year in favour of Waybox. As you can probably guess from the name, it only works in Wayland.
Yea I ran into this at one of my old companies too. I was a devops admin and had a secret wireguard VPN running back then, but the security team was rolling out CrowdStrike and I knew I needed to kill that before it was discovered and get on the "official" VPN which didn't accept TOTP. I ended up running Okta in am emulator in Android studio. My phone doesn't have any GApps/Google services, so before we were on Duo and they just gave me a hardware device with a button to generate codes. I didn't feel like making a big deal out of it with Okta. If you push back, most companies get a box of hardware keys with their enterprise subscriptions and you can usually just request one, especially if you're a dev/admin.

I'm just going to come out and say it, GIMP is perfectly usable, I've never understood why people hate it
I really like Gimp 3. I've been using it a lot when I need a quick image to go up with something I've written. Fuck using AI gen. Going to Unsplash or some other CC image site and combining some stuff together with my own photos always produces something I'm fine with. I've also just been paying artists when I need something designed. EU artists are fairly cheap these days, and I'll even ask them to add another 30 euro or so to the invoice out of appreciation (they're totally not use to tipping culture).

The pine phone is the one I know about. I've heard it does have its problems.
I still have a PinePhone in a box. I only played around with it a little. I need to charge it up again. If I can get it into decent shape software wise, it'd probably be worth getting the Pro. Most of my stuff is on my own services (Radicale for cal/contacts, my own e-mail, XMPP for VoIP/SMS, etc), so it shouldn't be too difficult. But a de-googled Android is good enough it just hasn't been a priority. Plus de-Googled Androids generally have better cameras too (Pixel/Samsung/Sony/etc.) and I'd hate to give that up.
 

Last one I'm going to do for now on lunduke. But I was just watching over his coverage of the intifadah thing at Microsoft.

Right in the middle is the particularly interesting part.

He talks about what he thinks should be done to these people, that hate Jews. One is being fired which yeah as a Microsoft employee it's deserved, no question. But he doesn't think that should be it. He thinks Microsoft should dox them and shame them to the entire Internet. Because they don't like Jews.

It's just another moment of him letting the mask slip more. It's something I feel like I would have overlooked if I didn't know he was, against online anonymity well into the past. And keeps trying to push the idea to his audience in new ways. And gives different justifications to it. None of which really are the reason.

He wants people to do the EXACT same thing that happened in 2016 up until recently with cancel culture bullshit. But for people that hate Jews. Or say bad things about Jews, or troll him online and bring up that he's a Jew

I don't even agree with the intifadah people. They seem like retards, and I honestly don't give a fuck about Palestine, or Israel. That normally McDonald meme comes to mind, when I think about the situation.

Screenshot_20250827_171618_DuckDuckGo.webp

But I do hate someone trying to push shit like this under fake justifications. And I do want to point it out every time he shows his hand.

TL;DR : lunduke is a Jew, he lies, he wants people that don't like Jews to be named and shamed.
 
I was going to a website that was using the Anubis AI anti scraping tool, and it actually blocked me.
View attachment 7836729
Clearly, I'm an AI. :)
One of the settings of this piece of shit prevents the actual reason behind denying the request being shown to the user. To combat abuse and slow down the arms race of bypassing checks, supposedly. If you can't get in even after enabling JS, run your IP against DroneBL. It's the default IP blacklist on a lot of websites that jumped on the PoW bandwagon.

Speaking of, here's a nice article (A). Relevant to this discussion is the following:
Article said:
If every single github star on the anubis project represents a website that has deployed Anubis, how much would the cloud services bill be to mine enough tokens to crawl every single website?

[...]

At the time of writing, Anubis has 11,508 github stars.

The default configuration means mining one token gets you access for 7 days (although I think this expiration check is broken, see below), so we need 11,508 * 2^16 SHA-256 operations per week, how expensive is that?

To get some numbers, I started an e2-micro vm on Google Compute Engine ...[snip]

[...]

It looks like we can test about 2^21 every second, perhaps a bit more if we used both SMT sibling cores. This amount of compute is simply too cheap to even be worth billing for.

So (11508 websites * 2^16 sha256 operations) / 2^21, that’s about 6 minutes to mine enough tokens for every single Anubis deployment in the world. That means the cost of unrestricted crawler access to the internet for a week is approximately $0.

In fact, I don’t think we reach a single cent per month in compute costs until several million sites have deployed Anubis.
Crawlers can spin up free boxes to solve challenges, users suffer. Give it up for tranny welfare project #73.
 
Back
Top Bottom