this post was submitted on 30 Nov 2024
191 points (96.1% liked)

Linux

48435 readers
630 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

For me, it's Shared GPU memory.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 37 points 2 days ago (2 children)

I moved to Linux over 25 years ago and I miss absolutely nothing.

The joy of not having to update your OS when Microsoft forces it, even whilst you're working, or the way Apple still cannot do window tiling despite decades of examples on how to achieve this, or installing applications and finding files splattered all over the file system with no way to remove them except manually, or the endless user agreements, licence fees, expiring licensees, or the notion that you cannot run a new OS on an old machine that's in perfect working order.

So, no, it was the best decision I've made.

I wish that I'd made the same good decision when it comes to my accounting software.

[–] [email protected] 7 points 2 days ago (1 children)

I think Mac just added window tiling by default now. There were extensions you could install otherwise.

[–] [email protected] 16 points 2 days ago (1 children)

It has. I use it everyday. It's shit. Apple keeps moving windows to different desktops without user interaction, I can't snap windows to each other, full screen takes over a whole desktop and ESC inside such a window puts it back to some random state.

Better Touch Tool did a better job a decade or so ago.

[–] [email protected] 6 points 2 days ago (1 children)

full screen takes over a whole desktop

and creates it. It's a whole new workspace just for putting an app in fullscreen and none of the shortcuts to jump to workspace x work with it of course.

The rest of the WM can be made bearable but there's no way around that stupid design choice.

[–] [email protected] 1 points 2 days ago (1 children)

Can you use a different extension/plugin?

[–] [email protected] 2 points 1 day ago (1 children)

I'm not sure what you mean? It's a basic feature of the macOS window manager. Pressing the fullscreen button on a window does all of this.

[–] [email protected] 1 points 1 day ago (1 children)

There is a program in the Mac App Store called Magnet, could try that. I think there are some others.

[–] [email protected] 1 points 1 day ago

Magnet seems to be a window management shortcut thingy like rectangle but probably worse, costs money and likely to enshittify.

It cannot influence how the macOS window manager works internally, it can only ask it to e.g. place a window in a certain location.

[–] [email protected] 2 points 2 days ago (1 children)

Can you please “installing applications and finding files splattered all over the file system”, please kind person?

How does Linux do it better?

[–] [email protected] 16 points 2 days ago (3 children)

Central package management.

When you install a package, it keeps track of all the files so when you uninstall it, it removes them all. There's various ways to scan and remove untracked files, but on a Linux system you can basically be ask it "where does this file comes from?" and it'll just tell you "oh, that's from mpg123, and you have it installed because VLC and Firefox need it to decode some AVIs". And if you really don't want it for some reason, it can also go uninstall everything that needs it too.

It makes it pretty hard to corrupt a system or uninstall important stuff. In the reverse, it also knows what is needed, so if you install VLC, it will also install all the codecs with it, and those are also automatically available to other apps too usually.

[–] [email protected] 1 points 17 hours ago

Thanks for the explanation!

[–] [email protected] 1 points 22 hours ago

When you install a package, it keeps track of all the files so when you uninstall it, it removes them all.

lmao, do a ls -aR ~

[–] [email protected] 3 points 2 days ago

While that is true for the files that make up the programs themselves and their dependencies, it's not true for any state files or caches that programs creates at runtime. You need to clean those up manually.