this post was submitted on 26 Jun 2023
105 points (97.3% liked)
Linux
48951 readers
692 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
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
But that is also what I'm talking about. I don't know of a single modern SaaS company that deploys straight on Linux anymore. It's always going to be some form of container nowadays, making it irrelevant which OS you use. Sure docker might be replaced one day by something else, but you're still unlikely to run anything straight on Linux.
What are you talking about here? MacOS and Windows support for the actual backend you're developing? It's highly irrelevant, because you'd be using Docker so it only needs to support Linux. And for most popular runtimes nowadays, it's actually easy to do cross-platform if you were so inclined. JVM doesn't care what it runs on, Python doesn't care much either, and Rust compiles for multiple platforms. My jars and Rust binaries still go inside docker if they're supposed to be backend services, rather than client applications.
Or if you were talking about MacOS and Windows support for desktop applications... I don't think NOT supporting Windows is wise, MacOS is pretty optional.
Why do you need to have CI working on your local machine rather than your CI servers (which should be running Linux)?
Actually, I'm saying Windows is used more, not that people prefer it more. 47% of people reported using Windows for work, 33% MacOS, 26% Ubuntu and so on.
My dev environment is actually closer to the prod environment than it would be if I was running everything without these abstraction layers. The abstraction layers are precisely what guarantee sameness. Prod is a Linux container running on Linux. Dev is a Linux container running on MacOS. Since they're both pulling from the same base images, it guarantees that I have the same version of each system library, etc. No chance of something like prod being Ubuntu 20.04 and dev being 22.04, or prod having Eclipse Temurin while I use Azul, or prod being OpenJDK 17.0.7 and dev being OpenJDK 17.0.8.
And that's why most companies I know about, give their devs Macbooks nowadays. Much harder to fuck up and regardless of whether you give your employee a Macbook or a boring Ubuntu LTS laptop, they're going to be running nearly everything in containers anyway.
I know one company near me that does give out Linux laptops - they created their own distro for better control of what updates get installed from the repos. The rest of us use containers to abstract away the host operating system of the dev machine.