this post was submitted on 18 Oct 2023
361 points (96.4% liked)

Technology

58133 readers
4485 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each another!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


founded 1 year ago
MODERATORS
 

Top Apple analyst says MacBook demand has fallen 'significantly'::A top Apple analyst said Wednesday that shipments for MacBook computers will decline around 30% year over year.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 11 months ago* (last edited 11 months ago) (1 children)

As much as I love making fun of Apple, isn't it all Apple silicone made in house? If they're not coming with Nvidia cards and Apple is not open to the idea of people modifying their computers it shouldn't matter how easy it is to install Nvidia graphics (not to mention Nvidia Drivers are a pain on Linux sometimes too).

POSIX is just a set of Unix-like standards for software. Mac is based on BSD if I recall correctly, they had Xorg and stuff as an option to install and things aren't 1 to 1 compatible but closely related.

robust networking

Dude you just gave me flashbacks to traumatic times trying to get Wifi to work on Linux

[–] [email protected] 3 points 11 months ago* (last edited 11 months ago)

The Nvidia thing was a subtle way to point out that you can't "brew install" your way out of every bit of missing OS functionality. The subtly was sadly too subtle.

"Posix" is such a trivial set of APIs that until recently Windows claimed to be Posix compatible (and basically still is???). Darwin, the MacOS kernel, lacks pretty much everything above that slim foundation. No user or network namespaces. No capabilities. Even if you switch to GNU coreutils (ls, ps, netstat, etc), you get a reduced featureset because Darwin lacks /proc, /sys, ioctls, and other knobs&levers to make stuff work the way it does on Linux. Xorg works because X11 was common across all Unixen back then. And on the built in BSD utils, stuff gets weird like ls ~/Downloads -l doesn't work and case insensitivity leads to weird bugs in things like shell wildcards (like ls ~/downlo*/*).

The Linux network stack is complicated because it can do absolutely everything, at insane speeds and scales. MacOS' network features are geared towards being a laptop and not much else. I won't defend Linux as user friendly but it's been my daily desktop for 25 years, I guess I've figured it out. I use and appreciate stuff like VLANs, bridging, nftables, ebtables, etc. If you need to change behavior, there's probably a /proc/net flag that will do it. It's stuff that MacOS hides or simply doesn't have.