• 1 Post
  • 59 Comments
Joined 6 months ago
cake
Cake day: December 13th, 2024

help-circle

  • It’s simpler, there is a client for everything even mobile phones, it has a move command, it has props that can be edited without a copy command, pagination is however you set it up to be rather than a one size fits all approach, it can be just as scalable as S3 if you build it to be, it has much simpler locks that make them easier to use so you might actually use them, keys can be longer than 1024 characters, actual directories exist.

    That’s just the protocol level. The biggest benefit for me isn’t really at the protocol level, but part of the design of my own WebDAV server: deduplication. I can throw the same file into my server with 50 different keys, and it will only take up the space of one copy on disk. This basically moved the logic of deduplication from my application to the blob store. Mountains easier from an application design perspective.

    There are use cases where S3 is better, but they are few and far between. And, WebDAV is extensible. You can build whatever functionality you need into it, rather than using some proprietary protocol.



  • A hosting provider is a business. If your dad is a business and you are buying hosting services from him, then yes, he is a hosting provider and you are not self hosting. But that’s not what you’re doing. You’re hosting on your own hardware on your family’s internet. That’s self hosting.

    When you host on Hetzner, you’re hosting on their hardware using their internet. That’s not self hosting. It’s similar, cause like you said, you have to do a lot of the same administration work, but it’s not self hosting.

    Where it gets a little murky is rack space providers. Then you’re hosting on your own hardware, but it’s not your own internet, and there’s staff there to help you… kinda iffy whether you’re self hosting, but I’d say yeah, since you own the hardware.















  • So yeah, even though I specifically said you’d probably accuse me of saying something and specifically told you I wasn’t saying that, you still accused me of it. You should work on your reading comprehension.

    Now, you said that a desktop edition is virtually the same as a server edition + a prepackaged GUI. I gave you plenty of reasons they’re not.

    As an IT professional, you absolutely should know this. So far, the only skill you’ve shown any true mastery of is misguided condescension. So instead of arguing against a point I didn’t make, if you’d like to argue against my actual point, feel free. Otherwise, maybe realize you’re not as educated as you thought, and learn.


  • I mean if that’s what you think, I can tell you don’t work in the industry. Desktop editions generally have more than just a “prepackaged GUI” on top of a server edition.

    • Server editions generally have text based installers. This might not seem like a big deal, until you’re installing on a system that doesn’t have any graphics, just a serial console.
    • They almost always have an easy way to do headless and network installations.
    • They sometimes have additional security modules, like SELinux, different kernel boot parameters, or even different kernel versions. (Although this is less common nowadays.)
    • They’re also missing an audio server (different than a GUI), and usually a print server.
    • They can often be GBs lighter, which makes a difference when you’re installing on virtual machines with limited disk space.
    • They sometimes use different file systems by default (like Fedora used to).
    • They might create different swap setups.
    • They usually have very different network defaults. Like, desktop editions usually have a firewall, whereas server editions usually don’t (or it’s not enabled by default).
    • Server editions often include terminal tools that desktop editions don’t.
    • They’ll sometimes have a different network manager (Ubuntu Server uses systemd-networkd while Ubuntu Desktop uses Network-Manager).
    • Server editions almost never come with userland file mounting tools like gvfs.
    • Sometimes (like in Fedora) a server edition will come with remote management solutions like Cockpit.
    • The home directory skeletons will be vastly different on a server vs a desktop.

    That’s just off the top of my head. I’m sure there are plenty more I could find.

    Now, since you seem like you might accuse me of it, note that I did not say that a server edition and a desktop edition can’t be swapped back and forth by installing and removing packages and changing a bunch of config. They can. But, it’s not “just” some GUI stuff that makes a desktop edition, and it’s not “just” the lack of a GUI that makes a server edition. They are usually quite different.

    Source: I’ve been a professional Linux server administrator for 16 years. But don’t take my word for it. Try it yourself. Install Ubuntu server, then run sudo apt install ubuntu-desktop and see if it’s exactly the same as installing Ubuntu Desktop.