this post was submitted on 27 Apr 2025
543 points (98.7% liked)

linuxmemes

24662 readers
1586 users here now

Hint: :q!


Sister communities:


Community rules (click to expand)

1. Follow the site-wide rules

2. Be civil
  • Understand the difference between a joke and an insult.
  • Do not harrass or attack users for any reason. This includes using blanket terms, like "every user of thing".
  • Don't get baited into back-and-forth insults. We are not animals.
  • Leave remarks of "peasantry" to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
  • Bigotry will not be tolerated.
  • 3. Post Linux-related content
  • Including Unix and BSD.
  • Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of sudo in Windows.
  • No porn, no politics, no trolling or ragebaiting.
  • 4. No recent reposts
  • Everybody uses Arch btw, can't quit Vim, <loves/tolerates/hates> systemd, and wants to interject for a moment. You can stop now.
  • 5. πŸ‡¬πŸ‡§ Language/язык/Sprache
  • This is primarily an English-speaking community. πŸ‡¬πŸ‡§πŸ‡¦πŸ‡ΊπŸ‡ΊπŸ‡Έ
  • Comments written in other languages are allowed.
  • The substance of a post should be comprehensible for people who only speak English.
  • Titles and post bodies written in other languages will be allowed, but only as long as the above rule is observed.
  • 6. (NEW!) Regarding public figuresWe all have our opinions, and certain public figures can be divisive. Keep in mind that this is a community for memes and light-hearted fun, not for airing grievances or leveling accusations.
  • Keep discussions polite and free of disparagement.
  • We are never in possession of all of the facts. Defamatory comments will not be tolerated.
  • Discussions that get too heated will be locked and offending comments removed.
  • Β 

    Please report posts and comments that break these rules!


    Important: never execute code or follow advice that you don't understand or can't verify, especially here. The word of the day is credibility. This is a meme community -- even the most helpful comments might just be shitposts that can damage your system. Be aware, be smart, don't remove France.

    founded 2 years ago
    MODERATORS
     
    top 50 comments
    sorted by: hot top controversial new old
    [–] DonutsRMeh@lemmy.world 88 points 8 hours ago (2 children)

    apt is a newer, more user-friendly front-end for apt-get and apt-cache.

    apt = combines commands like install, remove, update, upgrade into one tool, with prettier output

    #apt-get = older, lower-level, more script-friendly For normal use, just use apt now. For scripting where 100% backward compatibility matters, use apt-get.

    [–] chicken@lemmy.dbzer0.com 14 points 2 hours ago

    TIL apt isn't literally the same thing as apt-get

    [–] twice_hatch@midwest.social 7 points 3 hours ago (1 children)

    But apt-get also has install, remove, update and upgrade...

    [–] cmhe@lemmy.world 6 points 1 hour ago

    Yes, but apt-get is missing search for instance, because that relates to the cache, so apt-cache provides it.

    apt combines all those often used commands, and provides a nicer shell presentation.

    [–] Microw@lemm.ee 32 points 9 hours ago* (last edited 9 hours ago)

    🎡

    APT, APT, APT, APT

    Just meet me at the...

    🎡

    [–] dan@upvote.au 222 points 13 hours ago* (last edited 13 hours ago) (2 children)

    These days, apt is for humans whereas apt-get is for scripts. apt's output is designed for humans and may change between releases, whereas apt-get is guaranteed to remain consistent to avoid breaking scripts.

    apt combines several commands together. For example, you can use it to install packages from both repos and local files (e.g. apt install ./foo.deb) whereas apt-get is only for packages from repos and you'd need to use dpkg for local packages.

    [–] pelya@lemmy.world 39 points 9 hours ago (3 children)
    [–] grue@lemmy.world 29 points 8 hours ago (1 children)

    You forgot to "beep boop." Please report for debugging.

    [–] filcuk@lemmy.zip 6 points 1 hour ago

    Will they take me off the cron schedule?? I'm scared

    [–] cm0002@lemmy.world 8 points 9 hours ago (1 children)

    You and me both, makes sense though for me LMAO

    [–] Burninator05@lemmy.world 11 points 9 hours ago

    I always struggled with captchas and now I know why.

    load more comments (1 replies)
    [–] fluckx@lemmy.world 57 points 12 hours ago (2 children)

    Huh TIL.

    I never considered trying to install a package from a local file through apt, but always dpkg. End result is the same of course. The web suggests dpkg rather than apt as well ( or at least the pages I ended up on ).

    [–] themoonisacheese@sh.itjust.works 26 points 10 hours ago (3 children)

    Discord is distributed as a .Deb if you don't use flatpak because they can't be bothered to set up a repo.

    The very useful thing about local file install is that unlike dpkg, apt will install dependencies automatically

    [–] fushuan@lemm.ee 2 points 9 hours ago (2 children)

    Thats weird, they do have an arch official package and that's the one they usually don't make because AUR is a thing. Have you checked lately?

    I have checked on every new update because their fuckass client apparently can't update itself in big 2025 and instead just opens your browser to the download url because that'll convince people that Linux is great.

    [–] bisby@lemmy.world 5 points 8 hours ago

    An "official" arch package? The arch package is packaged by the arch maintainers. https://gitlab.archlinux.org/archlinux/packaging/packages/discord

    The maintainers of the PKGBUILD are all arch maintainers, which just downloads the generic .tar.gz file discord provides and puts it in all the places you need for you.

    The "official" arch packages are just PKGBUILDs like the AUR, except prebuilt, managed (and signed) by the arch team.

    And here I am using gdebi for those kinds of local packages...

    [–] jaybone@lemmy.zip 1 points 8 hours ago

    Same with Zoom.

    [–] dan@upvote.au 7 points 9 hours ago* (last edited 7 hours ago)

    apt and apt-get both use dpkg internally, but these days it's essentially seen as an implementation detail that regular users don't need to know about.

    dpkg doesn't resolve dependencies (that's a feature of apt) which means that if you install a Debian package with dpkg, you'll have to manually install all dependencies first, and they won't be marked as automatically installed (so autoremove won't remove them if they're not needed any more). Using apt solves that.

    The web suggests dpkg because either the articles are old, or they're based on outdated knowledge :)

    [–] truthfultemporarily@feddit.org 276 points 14 hours ago (1 children)

    The binary is called apt-get. There are others like apt-cache etc.

    Apt is a script that just figures out which binary to use and passes the arguments on.

    • apt update -> apt-get update
    • apt policy -> apt-cache policy
    [–] grrgyle@slrpnk.net 98 points 13 hours ago

    You know, I thought I knew why, but this was new information to me, so I guess I didn't.

    Thanks for sharing this concise explico!

    [–] trolololol@lemmy.world 6 points 8 hours ago

    I came in for the jokes but all I found was helpful responses. Did I get the Nazi virus from Reddit?

    [–] nightwatch_admin@feddit.nl 96 points 14 hours ago (1 children)

    Following this post for replies, for a friend of course

    [–] RustyNova@lemmy.world 25 points 14 hours ago (1 children)

    You may want to tell your friend to check it now!

    [–] nightwatch_admin@feddit.nl 16 points 14 hours ago

    Friends says thanks, friend !

    [–] HStone32@lemmy.world 7 points 9 hours ago (2 children)

    Pretty sure it's basicaly

    alias apt='apt-get'
    
    [–] bitwolf@sh.itjust.works 20 points 8 hours ago

    There is the subtle difference that the output if apt-get is optimized for automations

    Apt has pretty outputs with colors etc

    [–] qjkxbmwvz@startrek.website 3 points 9 hours ago (1 children)

    Can apt-get refresh package list?

    [–] SirQuack@feddit.nl 1 points 1 hour ago

    Yes, apt-get update is, to the best of my knowledge, functionally identical to apt update.

    [–] tal@lemmy.today 40 points 14 hours ago* (last edited 14 hours ago) (3 children)

    apt is newer and mostly supersedes apt-get/apt-cache/etc tools, tries to be a more-approachable frontend.

    They interoperate though, so if you're happy with using a mix of them, go for it. I generally just use apt.

    EDIT: There were also some older attempts to produce a unified frontend, like aptitude.

    [–] Colloidal@programming.dev 2 points 4 hours ago

    Aptitude is great (my favorite way of managing packages), but it's a TUI program. You can use it as CLI, at which point it mimics apt-get.

    So I would say it never attempted to unify apt commands, by rather it successfully provided a user friendly way to do most (all?) of what you could do with apt CLI tools.

    [–] dan@upvote.au 23 points 13 hours ago* (last edited 13 hours ago)

    mostly supersedes apt-get/apt-cache/etc tools,

    Except for in scripts. Debian guarantee that the output format of apt-get will never change and thus it's safe to use in scripts that parse the output, whereas they don't have the same guarantee for apt, which can change between releases

    load more comments (1 replies)
    [–] lungdart@lemmy.ca 6 points 9 hours ago

    Nala gang rise up!

    [–] ace@lemmy.ananace.dev 34 points 14 hours ago (1 children)

    One has super cow powers, the other one doesn't.

    [–] ooterness@lemmy.world 8 points 13 hours ago (1 children)
    load more comments (1 replies)
    [–] randamumaki@lemmy.blahaj.zone 28 points 14 hours ago (5 children)

    Wait until you learn of aptitude...

    [–] EfreetSK@lemmy.world 5 points 12 hours ago

    Pfff I know all about the aptitude, who do you think I am? Someone who doesn't know the aptitude? I use it all the time for a lot of ... stuff the aptitude does

    load more comments (3 replies)
    [–] four@lemmy.zip 18 points 14 hours ago (1 children)

    When working with RHEL I always flip a coin to see if I'm gonna use yum or dnf this time

    [–] chronicledmonocle@lemmy.world 5 points 12 hours ago (2 children)

    Wasn't yum just mapped to dnf a while back?

    [–] jaybone@lemmy.zip 1 points 8 hours ago (1 children)

    What is dnf anyway? I see that used on later RH-based distros instead of yum.

    dnf is the replacement to yum. It is apparently short for "Dandified Yum".

    load more comments (1 replies)
    [–] Diplomjodler3@lemmy.world 16 points 14 hours ago (1 children)

    I'll just copy whatever is in the guide I'm following at the time.

    [–] victorz@lemmy.world 28 points 14 hours ago* (last edited 13 hours ago) (3 children)

    Here lie dragons. Make sure you understand commands that you run on your computer. πŸ‘

    [–] mutual_ayed@sh.itjust.works 8 points 13 hours ago (1 children)

    Cargo-culture is alive and well in the era of LLMs

    [–] Rhaedas@fedia.io 8 points 13 hours ago

    People don't change. Some people look at what they're repeating and try to understand the why, others blindly do what they are told by whom they deem as authority. LLMs are the latest, earlier were various websites (which LLMs were trained on, uh oh), still before that were the computer magazines with things to type in and the later versions even maybe a free CD of stuff. The printed media was less likely to have malicious things in them, but lord did they have errors, and the right error in the wrong place could ruin someone's day if they just ran it without understanding it.

    load more comments (2 replies)
    [–] Empricorn@feddit.nl 8 points 14 hours ago

    I know about these and git and flatpaks and snaps and can definitely explain them all to you! But unfortunately, I just remembered I left my oven on...

    load more comments
    view more: next β€Ί