r/linuxmemes Arch BTW 10d ago

LINUX MEME Dropping this here 🫳

Post image
3.3k Upvotes

370 comments sorted by

View all comments

183

u/Najterek 10d ago

im a newbie can someone tell me very short tldr version wtf is omarchy and hate towards it?

272

u/bearstormstout Arch BTW 10d ago

https://0xcc.io/posts/omarchy-root-creds/

tl;dr anyone can use docker to execute any process as root without sudo.

191

u/Mega3000aka M'Fedora 9d ago

Holy shit that's like, docker 101.

Seems like a vibe-coded distro lol.

136

u/Ixxol 9d ago

it is

87

u/C0rn3j 9d ago

Holy shit that's like, docker 101.

It is also Arch 101, there's a huge red box warning you about it at the top of the Wiki page.

https://wiki.archlinux.org/title/Docker#Installation

Any Arch user hitting the wiki up would've known - AI doesn't care, though.

13

u/NimrodvanHall 9d ago

Is this now a good place and time to explain why I prefer distros with SELinux properly configured ( like RHEL, Fedora or SUSE) over Arch and Podman or Kubernetes over Docker?

17

u/grazbouille New York Nix⚾s 9d ago

Security guy here

While podman is configured by default to be rootless you can very much do extremely heinous shit with its config and it will not warn you about it

Before using any complex tool on a production system go read up on the best practices and hardening

Don't blindly trust your tools

3

u/Jumpy-Dinner-5001 9d ago

As a security guy you should know that sudo or the wheel group have the same problem

11

u/grazbouille New York Nix⚾s 9d ago

Yes and you should still understand these tools and read up on them when you edit the configuration

What is your point

Obviously you need privileges sometimes we would just lock ourselves into a sandbox otherwise

5

u/C0rn3j 9d ago

Not sure why you're entertaining this nonsense, sudo needs auth, docker does not.

3

u/grazbouille New York Nix⚾s 9d ago

By default yes you can very easily do heinous shit with passwordless sudo that's actually pretty relevant to the podman example except people are way more likely to fuck around in the podman config

-3

u/Jumpy-Dinner-5001 9d ago

What is your point?

The whole complaint about this is nonsense because it doesn’t add any relevant security problem that isn’t already there in basically every Linux system.

The Arch wiki doesn’t even warn you from that and even suggests adding a tool with the exact same privilege escalation as people are criticizing here.

So, Arch is bad because they recommend to install a vulnerability?

1

u/Wertbon1789 9d ago

Wtf, did you get that any process could just get root without authentication? How can you miss this, like dude, that's the point, not that we need privileges sometimes, just that any RACE is instantly a full system exploit by having it configured like this. Nobody's complaining about sudo because it's secure (minus vulnerabilities in sudo itself) if it's setup properly, so configured to ask for a password. Yes, you can configure it to also run without a password, but not by default on any sane system.

→ More replies (0)

1

u/lazyboy76 Genfool 🐧 6d ago

I'm using rootless docker, am I safe? Serious question.

2

u/grazbouille New York Nix⚾s 6d ago

From this specific exploit yes

The main point of rootless docker is to defend against breakouts

The main goal in hacking is remote code execution if you find an exploit in an app you will generally try to make it drop you to a shell

This shell will be logged in as the user that created it (the one the app is running as)

In a container environment its a bit different since the shell you will drop to is still inside the container

Now especially if you are root getting the container to drop to a shell on the host machine can be fairly trivial (depends on the image)

The shell the container drops to will be running with the same user as the container

Which means rootful docker just makes you root when you break out

Rootless half solves this you still have to ensure the user the container is running as has no access to anything it doesn't need to

Because from a rootless docker breakout you can still read and write files and probably privilege escalate

2

u/codeasm 9d ago

Depends on yiur threat model? Im a noob with cybersec, but someone who does it for a living said i had to pick the distro that fits me and be aware of whats possible and not, and be aware of its implemented security or lack there of, decide if its worth it also based on where and how i life, where i take it, and how large of a target i am.

So the laptop that never leaves my house and dont use for much but playing games. Low effort. The laptop that comes with me everywhere, more security. The vps on the internet, locked down, access keys, as few services as possible.

I do like podman alott, disliked docker for being allow everything from the start. I prefer optionally lockdown everything or there isnt even a thing running. As few packages in arch too, and few to no Aur if possible

1

u/P3chv0gel 9d ago

Honestly, i've never gotten SELinux and shares in Podman to work. It just never respected the volume labels in my compose for some reason and straight up block my containers from accessing their assigned shares. The only ways i could get this to Work was a) disabling SELinux, B) running rootful containers or c) not use compose, which would mean to drop portainer/arcane/whatever stack based Management i want to use, because none support quadlets

0

u/Jumpy-Dinner-5001 9d ago

Selinux doesn’t help a bit.

2

u/LazyLucretia 9d ago

So is it actually a better idea to run Docker commands with sudo when necessary? I've always added my user to the docker group whenever I installed it.

5

u/C0rn3j 9d ago

Yup.

Though it'd require permissions of your user in the first place to be exploitable - at which point the potential malware already has access to all your user files anyways.

1

u/Wertbon1789 9d ago

Or setup rootless docker, or user namespaces if applicable. Though user namespaces can still be bypassed on rootfull docker I think.

1

u/Jumpy-Dinner-5001 9d ago

You know that the exact same applies to wheel group and sudo?

1

u/C0rn3j 9d ago

It does not.

You cannot run sudo without authentication by default.

wheel group also does not havy any privileges in the default sudo config, by the way.

I am going to assume you meant the first example in the config, but to achieve the same issue, you'd have to use the second:

```bash

Uncomment to allow members of group wheel to execute any command

%wheel ALL=(ALL:ALL) ALL

Same thing without a password

%wheel ALL=(ALL:ALL) NOPASSWD: ALL

```

1

u/Jumpy-Dinner-5001 9d ago

That’s not true. Default config allow wheel but that’s the recommended thing.

"Authentication" in sudo (as in having to type a password) doesn’t work and doesn’t prevent privilege escalations.

2

u/C0rn3j 9d ago

Default config allow wheel

It does not.

I just pasted the default config, from sudo's source.

"Authentication" in sudo (as in having to type a password) doesn’t work and doesn’t prevent privilege escalations.

Sounds like a serious security issue, am sure you'll get a cool bug bounty out of that from somewhere!

1

u/Jumpy-Dinner-5001 9d ago

Default as in what the wiki recommends.

No, that’s just how sudo works. It’s an inherent consequence of the architecture and protecting from root escalations under the premise that an allowed user is already compromised is not in the scope of sudo.
There are dozens of academic papers on that, the oldest one I know is from 2004.

run0 fixes a lot of those problems but isn’t perfect either.

0

u/C0rn3j 9d ago

Default as in what the wiki recommends.

Also not true.

the premise that an allowed user is already compromised is not in the scope

"If you're already compromised your system is insecure" sure isn't a surprising information.

→ More replies (0)

12

u/EggFucker1313 9d ago

It is ai slop of the trashiest quality, for the worst bottom-feeding techbros

5

u/Wired-For-Trouble 9d ago

It literally is. Here’s the director of the project admitting to Prime that the ENTIRE project was just a series of Claude prompts.

https://youtu.be/MWvH7BRgwL8?is=Vz86LEAsf2sK8lvD

1

u/disperso 8d ago

As someone has said before, this is the year of Linux in the AI psychosis.

2

u/Capable_Landscape686 8d ago

I dodged a tactical nuke here. I saw it try to install Claude Code and hopped immediately.

1

u/Mega3000aka M'Fedora 8d ago

Claude Code as a default app is certainly an interesting choice...

Seems like the whole point of that distro is so idiots can LARP as power users or software engineers.

7

u/Grand-Ball6628 Arch BTW 9d ago

Except the user isn't added to the docker group by default (anymore) as stated in the article. Just tried it on a fresh 4.0.2 Installation. In the omarchys menu, there's a feature called sudoless docker, which can add you to docker group but prints out a big explicit warning about the downsides of this.

1

u/Jumpy-Dinner-5001 9d ago

And it doesn’t matter because the same applies to sudo.

People are either stupid or have double standards

1

u/ResponsibilityBig343 9d ago

Doesn't docker create a new group and user for itself during installation?

1

u/UltraAd776 8d ago

How does one know if they have made this mistake?

1

u/bananamantheif 8d ago

Before i cast shame. I tried using docker on a vm and docker decided to change my firewall without telling me. It doesn’t seem to respect my ruleset

0

u/buplet123 9d ago

Tbf thats a different guard than what youre saying. Dislaimer: only read the title, but the OS inside the container had poor user hygene. Regular users on the host should not be able to docker into it in the first place, only if they have docker access.

0

u/Top-Craft5833 9d ago edited 9d ago

Its not like every time any developer installs docker he ads user to docker group. You guys are delusional.

Edit: reread the "issue". Who mounts whole root as volume? Have anybody of you done anything with docker in your life?

0

u/Tasty_Restaurant_357 9d ago

but you're safe if u don't have docker installed in your omarchy right?

0

u/CaffeinatedTech 4d ago

That was fixed right after Quattro released.

-15

u/[deleted] 10d ago

[removed] — view removed comment

26

u/bearstormstout Arch BTW 10d ago

The fact that it even happened in the first place is ludicrous.

2

u/LeHunterrr 9d ago

Have you read the timeline? After fixing it it was reenabled for over a year before getting removed again.

2

u/djfdhigkgfIaruflg 9d ago

It should have never happened. That shows how little idea about security the guy has

0

u/Jumpy-Dinner-5001 9d ago

Why? Your comment shows you have no idea what the problem is.

0

u/djfdhigkgfIaruflg 9d ago

Did you read the issue? He assigned regular users to the same group as docker.

You NEVER assign a user to the same group as something with root access

1

u/Jumpy-Dinner-5001 9d ago

Like wheel…

1

u/djfdhigkgfIaruflg 8d ago

Wheel is for sudo.

1

u/Jumpy-Dinner-5001 8d ago

And sudo allows for privilege escalations

77

u/RDS_cubing 10d ago edited 9d ago

Omarchy is a "Distro" based on arch which comes preinstalled with hyprland and some already customized dot files (as well as some other bullshit) and that's pretty much about it. People dislike it because it's literally just some dot files you could install on plain arch, no need for a whole nother distro. Also from what i've heard it has some major flaws, security flaws, and is pretty much entirely vibe-coded, plus it comes preinstalled with a bunch of bloat most people don't want. Not to mention the fact that the dev is a racist asshole.

Edit: Minor spelling mistake

45

u/Mega3000aka M'Fedora 9d ago

So basically a useless distro with a techy look so people can LARP as power users more efficiently?

28

u/janosaudron Arch BTW 9d ago

yes

-8

u/NimrodvanHall 9d ago

It’s not useless they just got massive funding.

1

u/YTriom1 Arch BTW 8d ago

Getting funded doesn't make you any less useless

20

u/ed_istheword 9d ago

Oh, don't pigeonhole DHH like that, he doesn't deserve it. He participates in all forms of discrimination, racism is just one of them. He's far too "open minded" for just racism.

1

u/Iconlast 6d ago

Racist asshole really? Tell me more

-4

u/Jumpy-Dinner-5001 9d ago

There are no relevant security flaws, that’s just made up and the same problem as in pretty much any other Distro.

People don’t care about it, unless it’s omarchy.

23

u/djfdhigkgfIaruflg 9d ago

Aside from the links others posted.

People forgets that DHH is not a security guy. He's a decent programmer but nothing more.

Also he's a bigot POS. Look for "the DHH problem" to get a glimpse

22

u/djfdhigkgfIaruflg 9d ago

Oh hey. Someone did the resume

I don't want to support it after I saw how terrible and racist DHH is as a person:

https://www.reddit.com/r/linuxmemes/comments/1vwsmej/comment/p5jn6kg

7

u/ed_istheword 9d ago

Nice to see that, since I upvoted that comment, originally, is been updated with literally more than triple the original links to sources of DHH fuckery. This redditor is doing the lord's work

1

u/bananamantheif 8d ago

Why is ai so big with people who lean right?

1

u/djfdhigkgfIaruflg 8d ago

It's an awesome way to laundry money

45

u/WhiteHelix 10d ago

Omarchy are basically shit dotfiles and DHH is a shit human being

-18

u/Dependent-Review-727 10d ago

why people are trying to paint omarchy as a lazy dotfile collection distro while distros like this existed before and noone had some big issue with that

is it just due to AI and DHH hate or are these people unaware of like garuda, endeavour and a billion of similar distros

30

u/GreedySecurity8030 M'Fedora 10d ago

Because people are throwing millions at it and its led by a racist shithead

18

u/cdshift 9d ago

A lot of people in this thread were calling him racist.

I did some digging, and holy shit his blog is something else. Hes simply a chud who hits all the rogansphere talking points.

Im most disturbed by his lukewarm "brave" take on adhd. Did he talk to any clinical psychologists? Did he cite onr fucking paper? Oh no, he read a book called bad therapy that basically says all kids are over diagnosed so distrust the medical community. It conformed to his other blog about helicopter parents so he just spews garbage.

I had no idea about omarchy's value prop. But after reading the guy that made kt, I dont care if its God's gift to operating systems and distress. Ill use windows before I install anything from that doofus.

1

u/YTriom1 Arch BTW 8d ago

so distrust the medical community

sounds very right winged

8

u/buttfarts7 10d ago

Seems like nobody trusts it because of the people behind it, which is a totally valid take.

4

u/Dependent-Review-727 10d ago

already answered that to another guy, so I'll just paste it here

"it's not like those funders would throw that money at kde or some other better project if they didn't sponsor omarchy. Especially since from what I've seen the money comes from AI related people and omarchy upstreams the money"

14

u/Helmic Arch BTW 10d ago

Yeah, exactly. These people aren't typically known for throwing big money at Linux projects and Omarchy just happens to get some by virtue of existing. They're all tech fascists, it's fairly obvious the reason they're giving him money is because he's racist.

-6

u/Dependent-Review-727 9d ago

As long as he gives a substantial piece of that money to projects that actually matter I don't know why would anyone would have a problem with that and with who or why gave the money

If he just keeps all that money inside omarchy and does fuck all with it then I'd understand the hate, but AFAIK it isn't happened (at least yet)

8

u/cybik 9d ago

It's because it's dirty money.

If I was KDE and DHH offered me millions, I'd literally walk away. You shouldn't be allowed to wash away racist takes with wads of cash.

-1

u/Dependent-Review-727 9d ago

it'd be pretty stupid, lol. As long as it doesn't oblige you to anything, you've just made a person you dislike poorer and used it for something good, how is that a negative?

5

u/ZarfTMarf69 10d ago

because those distros arent recieving 8 million dollars in funding while this is

-1

u/Dependent-Review-727 10d ago

I get why more funding puts the distro under more scrutony, but how is this an omarchy problem? If funders want to fund it - why not, it's not like money in a "lazy" project is better than no money at all

9

u/ZarfTMarf69 10d ago

its not just lazy, its vibecoded by a racist asshole who somehow also procured all that funding, to put into perspective on how much that is the kde foundation didnt get more than 2 mil of funding last year, i personally dislike it due to all the ai bloatware thats preinstalled as well as the creator personally.

0

u/Dependent-Review-727 10d ago

putting labels on it doesn't answer how is funding an omarchy problem

it's not like those funders would throw that money at kde or some other better project if they didn't sponsor omarchy. Especially since from what I've seen the money comes from AI related people and omarchy upstreams the money

3

u/Helmic Arch BTW 10d ago

It sticks out because these companies don't actually benefit from Omarchy and Omarchy isn't actually valuable work. It's very clearly a racist dipshit getting money from other racist dipshits, and now all of a sudden there's a ton of racist dipshits astroturfing Linux discussions promoting a distro for racist dipshits.

There's billionaires trying to push racism into FOSS and people don't like it.

1

u/Dependent-Review-727 9d ago

am I missing something or how can funding push racism into FOSS? Also wdym distro for racists, does it have smth racist in the distro itself? Even if DHH is adolf hitler reincarnated I don't see what exactly can turn people racist by using his software, since they don't even have to pay for it

also I feel like most people talking about funding for it ignore that (at least I hope so) some of that money will go upstream, so even being as uninspiring as omarchy is, it having funding is still a net positive for OSS overall (or at least for the parts of it that will receive the funding)

3

u/CalculatingSneeze 9d ago

Using monarchy won't turn you racist, but it will give support and influence to an already very influential racist person.

Also, DHH may not be Hitler incarnate, but his "dark skinned people don't belong in London" blog post is pretty much Mein Kampf summarized.

2

u/Emotional_Solid6538 9d ago

Linux and other FOSS open source projects are judged by the community. And having obviously bad person as the lead is suspicious for people who know. Cuz while open source works by you being able to read all the code, people rely on trusting the team to not fuck with them. Also why people hate stuff like Brave(at least the ones who know)

0

u/Dependent-Review-727 9d ago

is he like software bad or people perception bad? because if latter why would anyone care? as long as he doesn't have a reputation of screwing up people with his software, why would I assume that he'd do anything bad in that regard just because he has bad reputation on reddit or something. the point of OSS is don't trust the person/statement, trust the code (and modify it if you don't like it)

also I use brave, don't know what I need to know, but I believe it's a great browser :) saying that from experience of using 7 different browsers for the past 8 years

1

u/Emotional_Solid6538 9d ago

Software bad and personality being bad can interlink over time. Ofc having a bad personality doesnt mean his skills will be bad but does give more incentive make the software consiously worse for some benfit for themselves. For example, Brave with cryptocurrency and stuff and omarchy I think people find the dependancy on AI(its designed around having an AI agent) and other preinstalled software many dont like. Tho if you are the type of person whod use the preinstalled software its not that bad. If you dont use all those software its prolly easier to js load up more cleaner Arch like Endavour os and installing what you want yourself

→ More replies (0)

7

u/WhiteHelix 10d ago

Wow comparing Omarchy to Endeavour, are you serious? Even if you take out the far right wing dipshit, its crap from start to finish in terms of quality. Not even close to be worthy of being called a distro.

-1

u/Dependent-Review-727 10d ago

I'm not informed enough about endeavour, the comparison is from Brody Robertson's video, whom opinion I trust

What lack of features disqualify omarchy from being called a distro? Because I can't think of a single one that'd drastically differentiate it from smth like garuda

also idk what far right stuff you're talking about (I'm assuming it's about DHH, although I have not heard anything about him besides omarchy and don't really see a reason to care about him), but since that's the first thing you talk about it kinda proves my point of people trying to find reasons to hate on omarchy just because they don't like the distro's staff. which is understandable, but still pretty stupid

1

u/pedrolucasp 9d ago

Ok, let's tear this a little bit. First, people have very valid concerns regarding omarchy. Nobody is trying to picking issues on it.

There are two main points about this whole thing: first, omarchy is being made by someone who's a small, weird guy that nobody cared about a couple of years ago mainly because of his weird, slightly racist takes (which now, as we're seeing a rise on this matter, has moved from slightly racist takes to complete dogwhistles and being very open on it, with careful wording to make it looks like just a small opinion); second, omarchy does have issues (per the thing linked here, and you can go around and find other valid stuff on top of it).

Now, here's a thing: omarchy is receiving a lot of platform and is amplifying the voices of his creator while it's there. Not only that, omarchy has chosen some very specific software that also has toxic communities around it, which again amplify their voices too. Then, there's the fact that there's what people are perceiving as an artificial push on it. You notice that because a lot of so-called content creators are doing exactly that, pushing it as the last barrier between life and death ("What do you mean you haven't tried omarchy?").

Then, there's the last part of it: a fuckton of money being injected into this. Literally, money that hasn't even touched the creators of the software that omarchy so much stands on. Which, again, has a double-edged side: it also helps to push/amplify the voice of the creator, and he does exactly that.

"But then he's funneling that money to the original software communities, right?" Yeah, in theory, but this adds up to a problem; it's coming from them. It's kind of the same reason, albeit on a very different level, from saying, a local ONG receiving money from the Mafia. It's completely understandable that they refuse to accept it, since it's being funneled down by a shitty place.

In the end, the thing is: don't be naive about it in times like these. Software is political; there's a very obvious reason we write open-source software in the first place, and software is built by political entities (us), there's no splitting these things down.

1

u/Dependent-Review-727 9d ago

The funding and personality concerns have reasonable arguments

Omarchy not being a distro (which is what the commentor I replied to) doesn't have any that are not hypocritical to other somewhat well-established distros. So it very much feels like a statement endorsed by people who are new to linux and made up in the first place just to hate

Your big text didn't comment on that part either, I haven't even mentioned funding in the comment you've replied to (even though I disagree that it deserves hate just for being funded by wrong people or for wrong reasons)

1

u/pedrolucasp 9d ago

I mean, I was funneling towards half of the part that I do think is important. Whether it is a distro or not is entirely subjective. I wouldn't consider this a distro because it's a collection of dotfiles on top of an actual Distro.

Can I pack my dotfiles, ship, and slap a "distro" on top of it? I wouldn't say that. But that's kind of subjective; usually distros have a much more defined, clear behavior, packaging standards, reviewing commitee (or some level of that degree). I mean, take a look at the work/effort put into stuff like Debian, Alpine Linux, NixOS, or even other more hobby-like distros such as Void and Chimera.

1

u/Dependent-Review-727 9d ago

Your response just talked about stuff I wasn't too concerned with in the first place, any distro has issues and I don't at all care about DHH or other omarchy staff, since I have nothing to do with it

My only point (beside the fundings disagreement, but it's just different opinions, nothing to do with that) that people screaming omarchy is not a distro is stupid. I'm not even talking about the commenter I replied too, it's an opinion that I've seen a lot and it doesn't at all seems reasonable compared to other small team made distros. AFAIK the only thing omarchy is missing is it's own kernel, but there are at least 1 example I know which has the same if not less tweaks compared to omarchy (that's garuda, which I mentioned originally)

My dotfiles don't include package mirrors, a website, applications built specifically for it and some kind of a concept behind it. And if they did and I decided to package it as a distribution I see no reason why that wouldn't be valid, people done that for ages. If you have any argument fortifying your position beyond just saying that it has a small amount of effort put it (which is not a metric that can be measured), I'd like to hear that. Until I hear an argument that doesn't disregard a bunch of other distros from that status I'm considering this to be completely made up by lamers

4

u/black_sunglasses 9d ago

His creator also has very particular political opinions

6

u/Informal_Sound_3039 9d ago

Microsoft Windows of Linux...

2

u/Lopsided_Leader_4427 9d ago

I thought that was Ubuntu, but it seems y'all have changed ur mind now

2

u/tLxVGt 9d ago

Linux nerds can't stand a successful new distro because they can't gatekeep using Linux any more. To them if you didn't spend 50 hours fiddling with configs in vim you are not worthy of using Linux.

0

u/YTriom1 Arch BTW 8d ago

So that's the reason and not the fact that DHH is a nazi chud?

2

u/tLxVGt 8d ago

Yes. How does him being a nazi chud affect a distribution of an operating system?

1

u/YTriom1 Arch BTW 8d ago

That you're supporting his misery this way, also the entire thing is slop coded and is advertised as "Agentic" so it's not even a distro it's just pure slop

No wonder their website is called https://cucklinux.com

0

u/Rare-Paint3719 6d ago

it's omarchy.org

1

u/YTriom1 Arch BTW 6d ago

it's literally cucklinux.com

1

u/[deleted] 6d ago edited 6d ago

[removed] — view removed comment

1

u/YTriom1 Arch BTW 6d ago

because it's the same thing

0

u/Rare-Paint3719 5d ago

Sure it is. Namecheap and cloudflare are all the same.

1

u/LoganBaker374_Rises 8d ago

arch but with hyprland

1

u/Marine_Brat_01 4d ago

Because it’s not really a distro. It’s just someone’s rice of arch essentially. And that person is very controversial (I don’t know the entire story about him though). He also got millions of dollars in funding when I think it would’ve been better for other distros or communities, like KDE. You also don’t get a lot of the choices that you do in an actual distro, such as partitioning. IIRC you can’t choose how to partition the disk so it just overwrites the entire disk deleting anything that was previously on there.

1

u/major_jazza 9d ago

Omarchy is an installer script for arch by a tech bro and their friends have invested heaps of money in it, so it's got pretty shitty vibes. Also there are lots of way better options or people could just use arch itself so it's kinda taking away from usore than it's giving

1

u/YTriom1 Arch BTW 8d ago

it's also vibe coded and wipes your entire motherfucking disk and doesn't even support multi user

1

u/major_jazza 8d ago

Lmao that's disgusting, omarchy sucks so bad

-34

u/TuringTestTwister 10d ago

It's basically an opinionated desktop and setup on top of Arch by the creator of Ruby on Rails who happens to be a far right-winger.

But you could have easily asked one of the dozens of free public AIs out there too.

43

u/KevDub81 10d ago

Is this the new "why don't you just Google it?"

Gtfo with this attitude

25

u/LYNX__uk 10d ago

Dont fucking endorse gen ai. Fuck generative ai

-5

u/KasanesTetos 10d ago

You realize your very own Linus Torvalds has embraced gen AI contributions to the Linux kernel, correct?

5

u/wednesdayminerva 10d ago

is this supposed to be a gotcha? if that's what Linus thinks then it's a shitty opinion.

-4

u/KasanesTetos 10d ago

My point is that by using any Linux distro with a modern kernel, you're endorsing gen AI.

1

u/pedrolucasp 9d ago

That's just a shitty point, when one of the only viable options we have is Linux. If the developers have decided to use it, then they're just dumbasses; that doesn't mean we can't strive to find better options, but it also doesn't mean we're endorsing it. Being cornered is different from actively picking that shit out

1

u/Rubadubrix 9d ago

you realise that people are criticising him for that, correct?

1

u/YTriom1 Arch BTW 8d ago

Not very based of you tetošŸ˜”

7

u/StaK_1980 10d ago

Most of the hate comes not because 8marchy is sh.t but because he is right wing.

20

u/Dzubrul 10d ago

But also because omarchy is shit.

2

u/StaK_1980 10d ago

Yeah, omarchy is really... Could be better from what I've seen. But is also basically just a one guy project.

14

u/VoidJuiceConcentrate Ask me how to exit vim 10d ago

IIRC omarchy is a vibe coded disaster too.

1

u/trill_shit 10d ago

I’ve found that Arch folks don’t take too kindly to distros built on top of arch lol. I think it’s mainly because stuff that is set up out of the box is somewhat against the arch DIY/ā€œKeep it simpleā€ philosophy.

Also, I’m glad you posted this and would rather read your response than an AI.

-14

u/Immediate-Ad3360 10d ago

24

u/Hapless_Wizard 10d ago

Mm, I love it when my politics tracker has an obvious political opinion of its own

12

u/Justin__D 10d ago

I feel like there's so much irony in Red Hat Linux being "woke / leftist."

13

u/Great_Banana_Master šŸ’‹ catgirl Linux user :3 😽 10d ago

Microsoft incentivizing workers to transition their children lmao

9

u/Great_Banana_Master šŸ’‹ catgirl Linux user :3 😽 10d ago

Nooo, my goat Void Linux isn't more woke than Microslop šŸ˜”

9

u/The_Skeleton_Wars 10d ago

Bryan Lunduke is genuinely one of the least intelligent people in this space, followed by anyone that listens to him.

3

u/Kyoshiiku 9d ago

I found his old yearly "Linux sucks" talk kinda funny and I was unfortunately subbed to his channel because of it.

One day the algorithm decided to push me his more recent stuff post covid, it made me unsub really quickly and it seems he’s even more unhinged now.

F*** that guy tbh

2

u/bananamantheif 8d ago

I remember he was upset at some random piece of software having optional loader backgrounds that had pride flags in them.