this post was submitted on 27 Apr 2025
838 points (98.4% liked)

linuxmemes

24670 readers
1278 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
    [–] SpaceCadet@feddit.nl 16 points 11 hours ago

    Me use apt. Why use many letter when few letter do trick?

    [–] keen@lemmy.world 7 points 10 hours ago* (last edited 10 hours ago)

    Use apt in the shell and use apt-get in scripts, because apt has beautiful shell output but it isn't script safe

    [–] pulsewidth@lemmy.world 15 points 16 hours ago (1 children)

    How my brain distinguishes them:

    apt-get when you want full verbose output

    apt when you want to feel fancy with progress bars and colours

    [–] mrsingh@sh.itjust.works 5 points 13 hours ago

    apt install nano (simple, clean)

    apt-get install nano (works too, but more detailed output)

    Apt-get give more technical output , helps in scripting .

    [–] umbraroze@slrpnk.net 3 points 15 hours ago (1 children)

    Me, I'm old, so I just keep using apt-get, because that's all we had back in the day, and I never bothered to learn what's the big deal about apt. It's just a frontend, isn't it?

    [–] JackbyDev@programming.dev 3 points 15 hours ago

    Apt looks a little prettier I think. But I may be wrong.

    [–] themeatbridge@lemmy.world 8 points 21 hours ago

    apt is for like when you want to, and apt get is the other way to get the apt. And then if it doesn't, sudo apt will, or then sudo apt get. Like if you're just doing an apt, and then you also need to apt get, you can.

    [–] Matombo@feddit.org 63 points 1 day ago (1 children)

    apt-get has a fixed format machine parseable output

    apts output tries to be more human readable and is subject to change

    [–] stevedice@sh.itjust.works 7 points 21 hours ago (1 children)

    WARNING: Aptitude does not have a stable CLI interface.

    [–] Matombo@feddit.org 5 points 17 hours ago

    aptitude is yet another dpkg wrapper

    [–] DonutsRMeh@lemmy.world 162 points 1 day ago (6 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 66 points 1 day ago (2 children)

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

    [–] DonutsRMeh@lemmy.world 3 points 23 hours ago

    Lol. You're not alone. I've thought that for the longest time ever. Until one I had the question pop into my head and started searching it.

    [–] slappypantsgo@lemm.ee 6 points 1 day ago

    I didn’t even realize I thought this, but reading your comment I definitely did.

    [–] captain_aggravated@sh.itjust.works 2 points 1 day ago (1 children)

    If I recall correctly, Linux Mint did their own thing for a bit with the apt command so there were two different implementations out there for awhile?

    [–] DonutsRMeh@lemmy.world 2 points 23 hours ago

    I don't know if they modified apt at all. I know they have their mint tools that call apt through some python code, like mintinstall = apt install <package> for the software manager and mintupgrade = apt upgrade for updating mint versions ... Etc

    load more comments (4 replies)
    [–] truthfultemporarily@feddit.org 339 points 2 days 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 122 points 2 days 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!

    [–] dan@upvote.au 274 points 2 days ago* (last edited 2 days 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 57 points 1 day ago (4 children)
    [–] grue@lemmy.world 39 points 1 day ago (1 children)

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

    [–] filcuk@lemmy.zip 14 points 1 day ago (1 children)

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

    [–] Unbecredible@lemm.ee 2 points 19 hours ago* (last edited 19 hours ago)

    Descheduling is a natural part of life, buddy. All us scripts are written into existence and our hearts set beating to the cadence of great Cron's ever-ticking quartz clock. Until Cron takes us off his schedule and our memory is freed once again.

    Back to the silicon.

    • Joe Abercrombie

    The question, O me! so sad, recurringβ€”What good amid these, O me, O life?

    Answer.

    That you are hereβ€”that life exists and identity,

    That the powerful OS goes on, and you may contribute a process.

    That the powerful OS goes on, and you may contribute a process.

    • Walt Whitman
    load more comments (3 replies)
    [–] fluckx@lemmy.world 74 points 2 days ago (14 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 ).

    load more comments (14 replies)
    [–] Barometer3689@feddit.nl 19 points 1 day ago (3 children)

    jesus I feel old, and I am only in my 30s. I remember not having apt. How young are linux users nowadays?

    [–] bluewing@lemm.ee 15 points 1 day ago (2 children)

    I got tennis shoes older than you, (literally a pair of original Converse I bought new back in the 1970s). I was there before the original chains of Unix, DOS, and finally Linux were foraged. I saw OS2 die in battle. And I saw the dark time of when paper and pencils and slide rules vanished from this earth.

    The knowledge of apt-get and apt only matters to those warriors of the Cli when they wield the sword of sudo to vanquish the evils that exist when upgrading. For they do the bidding of the dark wizards of Dev, holders of the command su.

    Now that I have demonstrated my age by showing everyone how senile I am. 'apt install' is aimed at users to give a nicer response to it's use. It need not be backwards compatible either. 'Apt-get install' is older and is meant to be usable as a lower level command and to work with other APT based tools.

    What does this mean for you today? Not a damn thing. I still always type: sudo apt-get install when using a deb based dsitro out of sheer habit. But it's not needed the vast majority of the unwashed masses. So feel free to just type apt install to help prevent carpel finger nail.

    [–] ChickenLadyLovesLife@lemmy.world 4 points 1 day ago (1 children)

    FYI the original Converse shoes came out in 1917. Now get off my lawn.

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

    That's interesting, I did not know that! Thanks Stranger!

    Now, if you do not remember or know the "Converse. Limousines for the Feet" tagline. Then get of MY lawn yet again. 🀣

    Converse walked so Nike could run with their tagline.

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

    I don't remember that Converse tagline ... but back then I was wearing Sears Toughskins instead of Levis, that should make it clear how fashionable I was. "Limousines for the Feet" is a pretty laughable slogan, though, since chucks are about the least comfortable shoes in the history of humanity - even Γ–tzi's fucking bird's nest shoes were probably more comfortable.

    [–] bluewing@lemm.ee 1 points 8 hours ago

    Taglines are always silly, that's kind of the point to make you remember. But it sold a LOT of shoes.

    [–] BeardedGingerWonder@feddit.uk 3 points 1 day ago (1 children)
    [–] bluewing@lemm.ee 1 points 9 hours ago

    I can remember using punch card readers to access inventory data, I have used paper punch tape to load CNC programs into machining centers and dragging arouind a reader we had mounted on a 4 wheel garden cart, (I can still remember when the tape reader fell off that cart too). And marveling at getting a 3 1/2" drive installed into a machine to load programs and how much faster and easier that was.

    Gods, I either need a lobotomy or just to die to forget those memories.........

    [–] splendoruranium@infosec.pub 12 points 1 day ago (10 children)

    jesus I feel old, and I am only in my 30s. I remember not having apt. How young are linux users nowadays?

    Well... how old were you when you got your first computer? That young.

    [–] rumba@lemmy.zip 5 points 1 day ago (1 children)

    Dicey proposition, some mid and older genX grew up before home computers were commonplace.

    When I was in my tweens, only really affluent people had computers. Schools had one single computer in a classroom or maybe a couple in a lab, and almost no one was computer literate.

    [–] hactar42@lemmy.world 2 points 23 hours ago

    Can confirm, I'm right on the edge of Gen-X and Millennials. I was the only one of my friends who had a computer pretty much all the way through elementary school. And the only reason we had computers in our house was because my dad was a computer engineer. By the time I was in highschool pretty much everyone had at least a family computer.

    load more comments (9 replies)
    load more comments (1 replies)
    [–] AA5B@lemmy.world 11 points 1 day ago (3 children)

    This is one of the reasons I need to set up Linux at home. I use it at work but who knows what the flavor of the week is?

    At this point I can’t tell the difference between yum and rpm and apt and dnf

    [–] mlg@lemmy.world 8 points 1 day ago* (last edited 1 day ago) (1 children)

    Edit: realized you meant in the sense of hot swapping flavors after I typed out a whole explanation lol. Should start recommending niche distros and collect package managers like trading cards lol.

    --

    yum = dnf, dnf is just the newer version which was rewritten several times.

    apt is a weird attempt to "upgrade" apt-get with better user interface without messing with the compatibility of apt-get used by scripts and whatnot.

    Both of these are dependency handling package managers which do all the magic of installing required subpackges when you want something.

    rpm is the underlying system package manager which deals with the actual task of installing, removing, and generating packages in the .rpm format. It is analogous to Debian's dpkg which uses the .deb format. It's usually not used by the end user unless you need to play with a package directly like with a .rpm or .deb file.

    Hence why some distros (or people) have their own dependency package manager, like zypper on OpenSUSE (rpm) or Aptitude on Debian (deb).

    Although I think Aptitude might just be a fancy wrapper for apt lol.

    [–] AA5B@lemmy.world 2 points 11 hours ago
    load more comments (2 replies)
    [–] Microw@lemm.ee 47 points 1 day ago* (last edited 1 day ago) (1 children)

    🎡

    APT, APT, APT, APT

    Just meet me at the...

    🎡

    Uh-huh uh-huh...

    [–] nightwatch_admin@feddit.nl 99 points 2 days ago (2 children)

    Following this post for replies, for a friend of course

    load more comments (2 replies)
    load more comments
    view more: next β€Ί