• 19 Posts
  • 3.48K Comments
Joined 3 years ago
cake
Cake day: June 13th, 2023

help-circle

  • Your Freudian slip is right, LOL.

    Tap for spoiler

    it’s a sold OS

    Anyway, sure, Gentoo is a good choice to build on, but picking an evil thing as the example doesn’t exactly endear one to your POV, emotionally speaking. Besides, SteamOS is based on Arch, so the notion that Gentoo is strictly “better” (not equal) to Arch on the basis of being used to make distros for commercial products isn’t very persuasive.

    I’m not saying you’re wrong about Gentoo being good. I’m just saying the supporting argument is a weak one, and doubling down by saying that sort of thing is “only possible” with Gentoo is even weaker.









  • Again, who said anything about “civilization?” Even just on Earth, life has existed for 4 billion years. That’s 4 billion of the 14 billion years the universe as a whole has existed, or 28% of the time, which I wouldn’t call “rare” at all!

    Life on Earth started damn near immediately (in geologic terms) as soon as the crust cooled enough to not set it on fire cook its proteins (it wouldn’t have caught fire because the atmosphere didn’t have oxygen yet). Does that sound “rare” to you?



  • Who said anything about multicellularity, intelligence, or space travel?

    Point is, Obama’s answer was vacuously true, and the only answer a non-idiot could reasonably could have given.

    …Okay, I admit he could have quoted Contact for extra style points:

    “The universe is a pretty big place. If it’s just us, seems like an awful waste of space.”

    But aside from that, the answer he gave was the only one he could reasonably have given.







  • They would also be .deb files. If you wanted to install package A.deb that depended on B.deb and C.deb, with C.deb itself depending on D.deb and E.deb, you would work down the dependency tree to figure that out, obtaining the .deb file for each package as you went (presumably manually downloading from each project website itself, since we’re doing this in hard mode), then run dpkg install E.deb, dpkg install D.deb, dpkg install C.deb, dpkg install B.deb, and finally dpkg install A.deb in that order. You also have to make sure each of those packages is the correct version compatible with the others, BTW.

    This is what apt is designed to do for you, automatically. This is why you use it instead of dpkg.

    (Side note: I sure would love to find out how to control syntax highlighting in Lemmy inline code markup.)


  • “I didn’t use the main standard way of installing software, and am complaining because all the weird alternative ways I did try didn’t work.”

    I understand that you claim apt has never worked for you, but, frankly, I don’t believe you.

    Just FYI, the entire point of using apt instead of working with dpkg (the utility used to install .deb files) directly is that apt handles the dependency resolution. You deliberately used the lower-level tool instead of the higher-level one and then complained that it didn’t do the higher-level things.