… as explained here.

Basically Microsoft presents this “incredible” product, and then says in the same breath: “Oops, not for your current setup. Maybe you should consider buying a new PC?”

Really!? 😠

If only Linux were ready for mainstream use…

75 points

I bought Microsoft Office Home & Student 2021 … a one-time non-subscription purchase. Today I found this:

I was able to figure out how to “re-activate” without signing up to 365. But damn sure seems like a dark pattern to me

permalink
report
reply
26 points
6 points

i saw that on a new install of the ‘non-sub’ office last month. stupid af, just another way of scamming for subscriptions.

permalink
report
parent
reply
4 points

Was this screenshot taken with Recall? 😂…😭

permalink
report
parent
reply
5 points

This is peak humor idk why anyone’s downvoting this 😂

permalink
report
parent
reply
-1 points
*
Deleted by creator
permalink
report
parent
reply
49 points

What is it specifically about Linux that doesn’t work for you?

I’m asking because I’ve been using it for almost a quarter of a century as my main desktop.

permalink
report
reply
46 points
*

Not OP, but just to serve as another data point: mostly just exhaustion. I am a full-time software developer, so I just really don’t want to deal with configurations and set up complex systems at home. That’s why I haven’t gotten into any smart-home stuff, either - I just don’t have the bandwidth to deal with the issues that come along with the space.

permalink
report
parent
reply
31 points

Not sure how long ago you tried installing linux, but it has come a long way such that there are distros out there that are basically plug-and-play installable now. I installed Linux Mint on an old laptop and just went through the gui installer like you would on a Windows installation, and it was up and running. Didn’t need to open the terminal even once.

permalink
report
parent
reply
4 points

How is Linux Mint for gaming? Does it still have input delay?

permalink
report
parent
reply
6 points

Wild, I’m not a developer but I do some very basic coding. Linux out of the box has it all pretty much lol. If it doesn’t, the package manager has it easily. Windows is such a hassle with environment variables and downloading different tools like compilers and IDEs and shit.

permalink
report
parent
reply
0 points

In 2024 using linux is far less cognitively demanding than using windows

permalink
report
parent
reply
16 points

I answered a bit further down a bit lengthier. Hope that’s OK. 🙂

To be clear, I enjoy my Linux environment. But could I leave Linux on my parents’ devices who recently bought a new printer and use a facial recognition camera? I’d be worried…

permalink
report
parent
reply
4 points
*

It’s funny how well linux works with printers, no stupid hp app, no configuration. Just hit print and done.

permalink
report
parent
reply
8 points

To be fair, depending on the printer

permalink
report
parent
reply
11 points

15 years for me. It’s pretty great.

permalink
report
parent
reply
9 points

Not OP, but it’s still lack of hardware support for me. I tried to daily Linux on my laptop and gave up in frustration after several months because a few key pieces of hardware are not supported and seemingly never will be.

permalink
report
parent
reply
4 points

What year, what distro, which laptop?

permalink
report
parent
reply
3 points

Going to guess his pain points are the fingerprint reader and possibly wifi/blutooth chipset. There are some of those supported but that’s still the spottiest in terms of driver support under Linux. Maybe also webcam but generally those work fine these days.

permalink
report
parent
reply

Not OP but personally, I’ve always had an impossible time trying to get drivers to work for my GPU to do more than just render 2D stuff like the desktop and basic web browsing.

permalink
report
parent
reply
6 points
*

UI/UX mostly. Yeah you can do a lot of things, but the experience doing it isn’t as easy. Ex: gimp. Which has gotten a lot of hate here recently (and deservedly so)

permalink
report
parent
reply
5 points

The only reason I don’t use Linux all the time are video games - which are getting better, and streaming because DRM doesn’t support it and I can tell the difference between 720p and 4k. Otherwise it’s my main OS.

permalink
report
parent
reply
3 points

Video games are nearly perfect today. The only ones that don’t work are the ones where the publishers have gone out of their way to exclude it by enforcing their anticheat nonsense.

permalink
report
parent
reply
2 points

Tried setting it up once on an old pc to have it as a kinda streaming thingy behind the tv. Never finished the project. First I was overloaded with options. Which Linux version, picked Ubuntu because why not? Did the download and could not find a USB stick at home that’s bigger than 2gb. Tried installing on a hard drive in my pc didn’t work. Gave up after that.

permalink
report
parent
reply
1 point
*

Okay i been this with a lot Linux does not work if you are trying to use it at even likely advance stage

  1. I can’t find where exe is
  2. I can’t put that exe in start-up of system (tried it on zorin and pop os )
  3. Wine won’t open lot of programs
  4. Libre office has came long way but make a doc in libre office and tried to open in word later it’s a mess and can’t work that for CV
  5. Excel is THE tool to be used in many cases, can’t be used powerfully in Linux.
  6. There is need to use terminal multiple times for lot of things Linux is NOT useful, windows might be forcing but it’s a ripe operating system. Across all Linux distors even the shell is not same.
permalink
report
parent
reply
0 points

I’m going to answer your points below. Not because I want to tell you to move to Linux, but because the information you state is incorrect. Linux is not for everybody. It works for millions of people and it works for me, but that doesn’t mean it will be what you’re looking for.

In order:

  1. There are no .exe files. Neither are there any on MacOS, iOS, Android, or anything else that isn’t Windows/DOS. To start software requires that it’s on the search path in exactly the same way that Windows requires. You can see what that is with the command: echo $PATH. Most Linux distributions have a graphical user interface which features icons and menus, but if you don’t want that, you don’t need to install it.

  2. You absolutely can, but it doesn’t work the same way as Windows, because it’s not Windows. You can for example login to Linux because the login manager started at system startup. You see a desktop after logging in because there’s a startup system for your account. The printer works because the software driving the print queue is started.

  3. Wine is a tool. It’s not a replacement for Windows. It’s not intended to be. It’s intended to help users and developers make Windows software work better on Linux.

  4. LibreOffice is one of many office suites. I have been using it as my productivity software for 25 years in my company and I’m not at all disappointed to have escaped the Microsoft Clippy, Ribbons, Office365 abominations.

  5. I have used Libre Calc for most of my numerical analysis processes. I used real tools like R and gnuplot when I was analyzing terabytes of data.

  6. The terminal is a tool. I use it daily. At any time there’s a dozen of them open. Not everyone needs a terminal, but there are plenty of things that you can only do in a terminal. A random example, list all the files in your account, group them by extension, then add up how much space each extension takes. In case you’re wondering:

find ~ -type f | egrep -o "\.[a-zA-Z0-9]+$" | sort -u | LC_ALL=C xargs -I '%' find . -type f -name "*%" -exec du -ch {} + -exec echo % \; | egrep "^\.[a-zA-Z0-9]+$|total$" | uniq | paste - -

Source: https://unix.stackexchange.com/a/457241

Linux is not Windows. It never was and it never will be, neither is any other operating system. The community around Linux is helpful, the ecosystem is vibrant and it’s free. If you want to pay for support, you can. If you don’t, there’s plenty of opportunity to do your own thing.

If you want it to be like Windows, you’re going to be very disappointed.

permalink
report
parent
reply
0 points

You answered all of them , but they are tangent to what point ibam trying to make.

As a SIMPLE TON OR A NEWBIE YSING LINUX ,this is all I can’t and won’t be doing , using windows is not disappointing because SIMPLY it works , like number 6 first part is easy no . The second part WHY WOULD I DO IT ? FOR 5th you have to use R and gnu plot because libre office is well SHIT at at those , where as excel can do it natively. Wine does not make it better except for few program to be used in Linux, the tool intended to it’s work is HALF baked. Please try to do 1 and 2 in zorin and Pop is and see how far it takes to complete the process , If you want I can put I stopwatche and tell you time it took to do it in windows. Not to mention use of HDD , in windows i attach it and VOILA! Its the one I use it ACROSS ANY AND ALL APPS not a single mount -a-B–ë stuff I have to do .

permalink
report
parent
reply
1 point

Programs are working better on Linux these days, but I use both the Adobe Suite as well as AutoCAD regularly, neither of which are supported by Linux. Otherwise I’d switch.

permalink
report
parent
reply
48 points

I’m kinda tired of hearing bs like “if only linux was good enough”.

It is. You just have to install and use it.

permalink
report
reply
12 points

We’re close. We just need a couple of vendors to step up and take some responsibility.

Steam already picked up all the hard stuff.

Adobe products, Outlook, and of all fucking things Roblox.

I probably also really wouldn’t hurt if somebody could manage to make Nvidia background removal working OBS Linux.

permalink
report
parent
reply
6 points

Yeah the Roblox thing is hard to swallow, it used to work better on Linux than on any other platform for me. Everything else there’s alternatives - my local PC shop sells machines at a significant discount “without windows installed”, maybe if more did that the market would take care of things and the software vendors would have to support Linux.

permalink
report
parent
reply
2 points

Outlook is turning to shit with the new update, Microsoft is nerfing it hard that it is borderline unusable, it is basically just the web app.

permalink
report
parent
reply
2 points

Roblox runs great on Linux, they just explicitly blocked it right?

permalink
report
parent
reply
4 points

They added in some anti-cheat stuff that doesn’t play well.

permalink
report
parent
reply
8 points

I used Linux daily for 20 years.

Linux may be ready, the mainstream software isn’t.

Are you working with Adobe? Good luck.

Want to play some multiplayer game? Good luck, again.

Oh yes, chrome and Firefox run fine. Just disregard LibreOffice, it’s disappointing.

permalink
report
parent
reply
4 points

I’ve been using it for around 30 years on my desktop and haven’t really had issues with it.

permalink
report
parent
reply
7 points

That makes you extremely unquallified to determine weather or not Linux is ready for the desktop of the mainstream computer user.

After 30 years you are very familiar with the workings of Linux, meaning you fic issues before the become a problem.

What is way more telling is having a Windows user/gamer just grabing a Linux ISO, burning it to a USB drive, booting the drive, installing the OS, installing Steam, installing games and gaming with zero issues on the first try.

permalink
report
parent
reply
2 points

When I started using it, not only was I not familiar with it, but linux was arguably far less ready for the desktop than it is now.

permalink
report
parent
reply
-7 points

Narrator: it wasn’t

permalink
report
parent
reply
40 points

Linux Mint is ready for mainstream.

permalink
report
reply
3 points

Already switched my laptop to mint. It’s great, except dealing with ALSA has been a nightmare.

permalink
report
parent
reply
4 points

So depending on your hardware, Linux Mint is not ready for the mainstream.

permalink
report
parent
reply
1 point

I have a more specific use case than most ppl. I would still say mint is ready for mainstream ppl that mainly need it for all the basic needs.

permalink
report
parent
reply
36 points

I hate how hard they try to force you to use a Microsoft account with it. And yes, the hardware requirements are too stringent. Microsoft works hard at taking away agency from users and empowering the users’ corporate bosses and data miners instead.

On top of all that, it’s 2024, Microsoft…a lot of people are struggling to buy groceries or pay rent/mortgage. They don’t want to be forced to buy a new PC.

As for “just use Linux” crowd…you know what? I agree! And some people will migrate. But it’s going to be sort of like the reddit > Lemmy migration. Don’t get overly excited about it.

permalink
report
reply
16 points

We don’t need everyone to migrate, just enough that companies and developers feel obligated to support Linux. We’re slowly getting there. Valve throwing their weight behind Linux for gaming was a massive win for Linux. Another important factor is the rise of the mobile first generations and the fact that at its core Android is Linux based. It’s not completely trivial to port an Android app to Linux but it’s at least no worse than porting it to Windows.

Microsoft may still have a stranglehold on corporate desktops, but they’ve long since lost the battle for servers and their hold on the home desktop is slipping a little more each day. Losing a significant chunk of gamers to Linux would be a massive blow to MS because it has been one of the few really unassailable markets for them historically.

permalink
report
parent
reply
2 points

I really do hope to see more and more people migrate away from Windows to Linux. I truly despise Microsoft these days. But it’s not easy for everyone, or even possible in all cases, and for multiple reasons. (And, real talk, a lot of home users won’t care enough to bother).

This gentleman in the video link I’m pasting explains 3 reasons why he’s stuck with Windows. Some of these apply to me as well. And there are other reasons I’m still stuck, too. At least for now. So it’s frustrating when I see some of the knee jerk “just migrate, bro!” comments because 1. I agree with them and 2. some of us can’t. Not yet, anyway.

https://youtu.be/c6YDQobJbLc?si=rwoH3wHanzyf_E0U

permalink
report
parent
reply
2 points

Yep and that’s fair, but it’s still really critical that those of us that can migrate do so. It’s a chicken and egg problem. Developers won’t feel pressured to support Linux if there’s no sizable user base, but the user base won’t grow until developers provide support for Linux. He even mentions that in that video. There’s a reason I’m only this year planning on switching my primary desktop from Windows to Linux and it’s because of how good Proton has gotten. I’ve already checked every game in my Steam library and while it’s not 100% of the library that runs, everything that doesn’t is something I don’t care about.

permalink
report
parent
reply

Here is an alternative Piped link(s):

https://piped.video/c6YDQobJbLc?si=rwoH3wHanzyf_E0U

Piped is a privacy-respecting open-source alternative frontend to YouTube.

I’m open-source; check me out at GitHub.

permalink
report
parent
reply
1 point

You are so optimistic

permalink
report
parent
reply
3 points

Nah, Linux still only accounts for about 2% of all users on Steam (active per month) so it has a long way to go still, but at least it’s heading in the right direction. If you count only English speaking Steam users that number climbs to over 5%. If Linux can get to and reliably maintain 10% that’s probably good enough to make it a first class target for even AAA releases, but it’s not there yet. The fact that so many games run fine under Linux these days is almost entirely down to the effort Valve has sunk into Proton making it relatively easy for devs to check Steamdeck support off without needing to really put much work in at all.

permalink
report
parent
reply
2 points

Lemmy > reddit

😁

permalink
report
parent
reply

Mildly Infuriating

!mildlyinfuriating@lemmy.world

Create post

Home to all things “Mildly Infuriating” Not infuriating, not enraging. Mildly Infuriating. All posts should reflect that.

I want my day mildly ruined, not completely ruined. Please remember to refrain from reposting old content. If you post a post from reddit it is good practice to include a link and credit the OP. I’m not about stealing content!

It’s just good to get something in this website for casual viewing whilst refreshing original content is added overtime.


Rules:

1. Be Respectful

Refrain from using harmful language pertaining to a protected characteristic: e.g. race, gender, sexuality, disability or religion.

Refrain from being argumentative when responding or commenting to posts/replies. Personal attacks are not welcome here.


2. No Illegal Content

Content that violates the law. Any post/comment found to be in breach of common law will be removed and given to the authorities if required.

That means: -No promoting violence/threats against any individuals

-No CSA content or Revenge Porn

-No sharing private/personal information (Doxxing)


3. No Spam

Posting the same post, no matter the intent is against the rules.

-If you have posted content, please refrain from re-posting said content within this community.

-Do not spam posts with intent to harass, annoy, bully, advertise, scam or harm this community.

-No posting Scams/Advertisements/Phishing Links/IP Grabbers

-No Bots, Bots will be banned from the community.


4. No Porn/Explicit

Content


-Do not post explicit content. Lemmy.World is not the instance for NSFW content.

-Do not post Gore or Shock Content.


5. No Enciting Harassment,

Brigading, Doxxing or Witch Hunts


-Do not Brigade other Communities

-No calls to action against other communities/users within Lemmy or outside of Lemmy.

-No Witch Hunts against users/communities.

-No content that harasses members within or outside of the community.


6. NSFW should be behind NSFW tags.

-Content that is NSFW should be behind NSFW tags.

-Content that might be distressing should be kept behind NSFW tags.


7. Content should match the theme of this community.

-Content should be Mildly infuriating.

-At this time we permit content that is infuriating until an infuriating community is made available.


8. Reposting of Reddit content is permitted, try to credit the OC.

-Please consider crediting the OC when reposting content. A name of the user or a link to the original post is sufficient.


Also check out:

Partnered Communities:

1.Lemmy Review

2.Lemmy Be Wholesome

3.Lemmy Shitpost

4.No Stupid Questions

5.You Should Know

6.Credible Defense


Reach out to LillianVS for inclusion on the sidebar.

All communities included on the sidebar are to be made in compliance with the instance rules.

Community stats

  • 6.1K

    Monthly active users

  • 838

    Posts

  • 54K

    Comments